diff options
| author | Paul Eggert | 2016-06-26 13:38:21 +0200 |
|---|---|---|
| committer | Paul Eggert | 2016-06-26 13:38:48 +0200 |
| commit | 8419f0d166cf5107062ff74f120c591f3fce35d9 (patch) | |
| tree | dd1de731d5cfbb27fbaf5175a4fd7af45c280f93 | |
| parent | e68fe57c52a815a4289380a8bdd3eaa1b7e6dc88 (diff) | |
| download | emacs-8419f0d166cf5107062ff74f120c591f3fce35d9.tar.gz emacs-8419f0d166cf5107062ff74f120c591f3fce35d9.zip | |
; Spelling fixes
| -rw-r--r-- | lisp/emacs-lisp/map.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/cc-engine.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el index 735ab8f1759..98a88711aa5 100644 --- a/lisp/emacs-lisp/map.el +++ b/lisp/emacs-lisp/map.el | |||
| @@ -373,7 +373,7 @@ MAP can be a list, hash-table or array." | |||
| 373 | alist)) | 373 | alist)) |
| 374 | 374 | ||
| 375 | (defun map--do-array (function array) | 375 | (defun map--do-array (function array) |
| 376 | "Private function usde to iterate over ARRAY using FUNCTION." | 376 | "Private function used to iterate over ARRAY using FUNCTION." |
| 377 | (seq-do-indexed (lambda (elt index) | 377 | (seq-do-indexed (lambda (elt index) |
| 378 | (funcall function index elt)) | 378 | (funcall function index elt)) |
| 379 | array)) | 379 | array)) |
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el index 5fa04034585..17415a259b6 100644 --- a/lisp/progmodes/cc-engine.el +++ b/lisp/progmodes/cc-engine.el | |||
| @@ -5829,7 +5829,7 @@ comment at the start of cc-engine.el for more info." | |||
| 5829 | ;; never a backslash escaping the end of line. If the character preceding | 5829 | ;; never a backslash escaping the end of line. If the character preceding |
| 5830 | ;; this "last possible" character is itself a backslash, this preceding | 5830 | ;; this "last possible" character is itself a backslash, this preceding |
| 5831 | ;; character gets a "punctuation" `syntax-table' value. If the "(" is | 5831 | ;; character gets a "punctuation" `syntax-table' value. If the "(" is |
| 5832 | ;; already at the end of the macro, it gets the "punctuaion" value, and no | 5832 | ;; already at the end of the macro, it gets the "punctuation" value, and no |
| 5833 | ;; "string fence"s are used. | 5833 | ;; "string fence"s are used. |
| 5834 | ;; | 5834 | ;; |
| 5835 | ;; The effect on the fontification of either of these tactics is that rest of | 5835 | ;; The effect on the fontification of either of these tactics is that rest of |
| @@ -6061,7 +6061,7 @@ comment at the start of cc-engine.el for more info." | |||
| 6061 | ;; | 6061 | ;; |
| 6062 | ;; Point is undefined on both entry and exit, and the return value has no | 6062 | ;; Point is undefined on both entry and exit, and the return value has no |
| 6063 | ;; significance. | 6063 | ;; significance. |
| 6064 | ;; | 6064 | ;; |
| 6065 | ;; This function is called as an after-change function solely due to its | 6065 | ;; This function is called as an after-change function solely due to its |
| 6066 | ;; membership of the C++ value of `c-before-font-lock-functions'. | 6066 | ;; membership of the C++ value of `c-before-font-lock-functions'. |
| 6067 | (c-save-buffer-state () | 6067 | (c-save-buffer-state () |