]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 31 Jan 2016 04:05:26 +0000 (20:05 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 31 Jan 2016 04:05:47 +0000 (20:05 -0800)
lisp/progmodes/prolog.el
lisp/ses.el

index 3767dbaa1e8c4fb46cde4356fadada56bf9dbcba..4f23f87dd5911a70ead36928f6045a4b770baeef 100644 (file)
@@ -1036,7 +1036,7 @@ VERSION is of the format (Major . Minor)"
 
 (define-abbrev-table 'prolog-mode-abbrev-table ())
 
-;; Becauses this can `eval' its arguments, any variable that gets
+;; Because this can `eval' its arguments, any variable that gets
 ;; processed by it should be marked as :risky.
 (defun prolog-find-value-by-system (alist)
   "Get value from ALIST according to `prolog-system'."
index 858833e9e5ebaf596524a36f2305395c75df9628..50101945f34ca258dae3bfa404f298552dedef6d 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))