summaryrefslogtreecommitdiff
path: root/lisp/progmodes/cc-defs.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/cc-defs.el')
-rw-r--r--lisp/progmodes/cc-defs.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el
index 77e263f1aad..c82b3a34e33 100644
--- a/lisp/progmodes/cc-defs.el
+++ b/lisp/progmodes/cc-defs.el
@@ -434,9 +434,8 @@ to it is returned. This function does not modify the point or the mark."
(setq count (+ count (skip-chars-backward "\\\\"))))
(not (zerop (logand count 1))))))
-(defmacro c-will-be-unescaped (beg end)
- ;; Would the character after END be unescaped after the removal of (BEG END)?
- ;; This is regardless of its current status. It is assumed that (>= POS END).
+(defmacro c-will-be-unescaped (beg)
+ ;; Would the character after BEG be unescaped?
`(save-excursion
(let (count)
(goto-char ,beg)