diff options
| author | Paul Eggert | 2016-01-30 20:05:26 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-30 20:05:47 -0800 |
| commit | b920a0ee6b31e0b89771e8a986ef9e11e8ae4aa1 (patch) | |
| tree | 128c68323e88260c7cf71e5b0fac284b110bc610 | |
| parent | 93b144bbaa4bcef356655613cf2fc4fa14e09df6 (diff) | |
| download | emacs-b920a0ee6b31e0b89771e8a986ef9e11e8ae4aa1.tar.gz emacs-b920a0ee6b31e0b89771e8a986ef9e11e8ae4aa1.zip | |
Spelling fixes
| -rw-r--r-- | lisp/progmodes/prolog.el | 2 | ||||
| -rw-r--r-- | lisp/ses.el | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/lisp/progmodes/prolog.el b/lisp/progmodes/prolog.el index 3767dbaa1e8..4f23f87dd59 100644 --- a/lisp/progmodes/prolog.el +++ b/lisp/progmodes/prolog.el | |||
| @@ -1036,7 +1036,7 @@ VERSION is of the format (Major . Minor)" | |||
| 1036 | 1036 | ||
| 1037 | (define-abbrev-table 'prolog-mode-abbrev-table ()) | 1037 | (define-abbrev-table 'prolog-mode-abbrev-table ()) |
| 1038 | 1038 | ||
| 1039 | ;; Becauses this can `eval' its arguments, any variable that gets | 1039 | ;; Because this can `eval' its arguments, any variable that gets |
| 1040 | ;; processed by it should be marked as :risky. | 1040 | ;; processed by it should be marked as :risky. |
| 1041 | (defun prolog-find-value-by-system (alist) | 1041 | (defun prolog-find-value-by-system (alist) |
| 1042 | "Get value from ALIST according to `prolog-system'." | 1042 | "Get value from ALIST according to `prolog-system'." |
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." | |||
| 446 | (ses-get-cell (car rowcol) (cdr rowcol))))))) | 446 | (ses-get-cell (car rowcol) (cdr rowcol))))))) |
| 447 | 447 | ||
| 448 | (defun ses-plist-delq (plist prop) | 448 | (defun ses-plist-delq (plist prop) |
| 449 | "Return PLIST after deletion of proprerty/value pair. | 449 | "Return PLIST after deleting the first pair (if any) with symbol PROP. |
| 450 | 450 | This can alter PLIST." | |
| 451 | PROP is the symbol identifying the property/value pair. PLIST may | ||
| 452 | be modified by border effect." | ||
| 453 | (cond | 451 | (cond |
| 454 | ((null plist) nil) | 452 | ((null plist) nil) |
| 455 | ((eq (car plist) prop) (cddr plist)) | 453 | ((eq (car plist) prop) (cddr plist)) |