aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-02-16 18:20:13 +0000
committerRichard M. Stallman1994-02-16 18:20:13 +0000
commit069511c0a2f5c3ba99073b2e68a06945908c8ff1 (patch)
treed418bbebd7766cca854ece493d5d89cf66eb89d7
parentc907d15634537a32bb5f54ea036221af92f7e2c7 (diff)
downloademacs-069511c0a2f5c3ba99073b2e68a06945908c8ff1.tar.gz
emacs-069511c0a2f5c3ba99073b2e68a06945908c8ff1.zip
(c++-mode): Set parse-sexp-ignore-comments to t.
-rw-r--r--lisp/progmodes/cplus-md.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cplus-md.el b/lisp/progmodes/cplus-md.el
index be6d41cb378..613253e7b68 100644
--- a/lisp/progmodes/cplus-md.el
+++ b/lisp/progmodes/cplus-md.el
@@ -225,7 +225,7 @@ no args if that value is non-nil."
225 (set (make-local-variable 'paragraph-separate) paragraph-start) 225 (set (make-local-variable 'paragraph-separate) paragraph-start)
226 (set (make-local-variable 'paragraph-ignore-fill-prefix) t) 226 (set (make-local-variable 'paragraph-ignore-fill-prefix) t)
227 (set (make-local-variable 'require-final-newline) t) 227 (set (make-local-variable 'require-final-newline) t)
228 (set (make-local-variable 'parse-sexp-ignore-comments) nil) 228 (set (make-local-variable 'parse-sexp-ignore-comments) t)
229 (run-hooks 'c++-mode-hook) 229 (run-hooks 'c++-mode-hook)
230 (if c++-electric-colon 230 (if c++-electric-colon
231 (define-key c++-mode-map ":" 'electric-c++-terminator))) 231 (define-key c++-mode-map ":" 'electric-c++-terminator)))