aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/progmodes/cc-cmds.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-cmds.el b/lisp/progmodes/cc-cmds.el
index cd235fdf100..46d5747f9d0 100644
--- a/lisp/progmodes/cc-cmds.el
+++ b/lisp/progmodes/cc-cmds.el
@@ -196,7 +196,8 @@ the brace is inserted inside a literal."
196 blink-paren-function 196 blink-paren-function
197 (insertion-point (point)) 197 (insertion-point (point))
198 delete-temp-newline 198 delete-temp-newline
199 (preserve-p (eq ?\ (char-syntax (char-before)))) 199 (preserve-p (and (not (bobp))
200 (eq ?\ (char-syntax (char-before)))))
200 ;; shut this up too 201 ;; shut this up too
201 (c-echo-syntactic-information-p nil) 202 (c-echo-syntactic-information-p nil)
202 (syntax (progn 203 (syntax (progn