diff options
Diffstat (limited to 'lisp/progmodes/cc-mode.el')
-rw-r--r-- | lisp/progmodes/cc-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index 7e3c6ba15a5..e2969c607a5 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -1068,7 +1068,8 @@ Note that the style variables are always made local to the buffer." (parse-partial-sexp pps-position (point) nil nil pps-state) pps-position (point)) (or (nth 3 pps-state) ; in a string? - (nth 4 pps-state)))) ; in a comment? + (and (nth 4 pps-state) + (not (eq (nth 7 pps-state) 'syntax-table)))))) ; in a comment? (goto-char (match-beginning 1)) (setq mbeg (point)) (if (> (c-no-comment-end-of-macro) mbeg) |