diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-07-06 00:23:30 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-07-06 00:24:56 -0700 |
commit | 20e9a00fb5d12ad408f9dd15adcfcd205783c1b0 (patch) | |
tree | 3d464df7b404345185989cbf6d0380a039c1ce0b /lisp/progmodes/cc-mode.el | |
parent | 7a0170de20fe1225d3eeac099d1e61a0c0410bf3 (diff) | |
download | emacs-20e9a00fb5d12ad408f9dd15adcfcd205783c1b0.tar.gz |
Spelling fixes
* lisp/org/org-table.el (org-table-sort-lines):
Fix misspelling in prompt.
* lisp/org/ox-ascii.el (org-ascii--describe-datum):
Fix misspelling in call to org-element-lineage.
Diffstat (limited to 'lisp/progmodes/cc-mode.el')
-rw-r--r-- | lisp/progmodes/cc-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index 4ea097445da..9b89681c3bf 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -1198,7 +1198,7 @@ Note that this is a strict tail, so won't match, e.g. \"0x....\".") ;; This function is called exclusively as a before-change function via the ;; variable `c-get-state-before-change-functions'. (c-save-buffer-state (p-limit found) - ;; Special consideraton for deleting \ from '\''. + ;; Special consideration for deleting \ from '\''. (if (and (> end beg) (eq (char-before end) ?\\) (<= c-new-END end)) |