summaryrefslogtreecommitdiff
path: root/lisp/ses.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-01-30 20:05:26 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2016-01-30 20:05:47 -0800
commitb920a0ee6b31e0b89771e8a986ef9e11e8ae4aa1 (patch)
tree128c68323e88260c7cf71e5b0fac284b110bc610 /lisp/ses.el
parent93b144bbaa4bcef356655613cf2fc4fa14e09df6 (diff)
downloademacs-b920a0ee6b31e0b89771e8a986ef9e11e8ae4aa1.tar.gz
Spelling fixes
Diffstat (limited to 'lisp/ses.el')
-rw-r--r--lisp/ses.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/ses.el b/lisp/ses.el
index 858833e9e5e..50101945f34 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -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))