diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-11-23 05:43:19 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-11-23 05:49:22 +0100 |
commit | 5e8c62ffcae473b89e268e0081d4041fb19abef7 (patch) | |
tree | a091dfb0a81648ac56e3df27d434ebe3edf0b4a3 /lisp/progmodes/cc-mode.el | |
parent | 17ed39cc8da1681bffc67907d3a76ef3d75917fd (diff) | |
download | emacs-5e8c62ffcae473b89e268e0081d4041fb19abef7.tar.gz |
; Fix typos
Diffstat (limited to 'lisp/progmodes/cc-mode.el')
-rw-r--r-- | lisp/progmodes/cc-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index 5a610253e01..99067e47618 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -1391,7 +1391,7 @@ Note that the style variables are always made local to the buffer." (defvar c-bc-changed-stringiness nil) ;; Non-nil when, in a before-change function, the deletion of a range of text ;; will change the "stringiness" of the subsequent text. Only used when -;; `c-multiline-sting-start-char' is a non-nil value which isn't a character. +;; `c-multiline-string-start-char' is a non-nil value which isn't a character. (defun c-remove-string-fences (&optional here) ;; The character after HERE (default point) is either a string delimiter or @@ -1713,7 +1713,7 @@ position of `after-change-functions'.") ;; ;; This function is called exclusively as an after-change function via ;; `c-before-font-lock-functions'. In C++ Mode, it should come before - ;; `c-after-change-unmark-raw-strings' in that lang variable. + ;; `c-after-change-unmark-ml-strings' in that lang variable. (let (lit-start ; Don't calculate this till we have to. lim) (when |