]> code.delx.au - gnu-emacs/blobdiff - lisp/ses.el
Merge from origin/emacs-25
[gnu-emacs] / lisp / ses.el
index 7647a5519ad9190d1496216d12d90ab8fbebaae2..a87386e17307b5543c7fb7445c9acf3436303ad4 100644 (file)
@@ -446,10 +446,8 @@ is nil if SYM is not a symbol that names a cell."
                       (ses-get-cell (car rowcol) (cdr rowcol)))))))
 
 (defun ses-plist-delq (plist prop)
-  "Return PLIST after deletion of proprerty/value pair.
-
-PROP is the symbol identifying the property/value pair. PLIST may
-be modified by border effect."
+  "Return PLIST after deleting the first pair (if any) with symbol PROP.
+This can alter PLIST."
   (cond
    ((null plist) nil)
    ((eq (car plist) prop) (cddr plist))