aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorStefan Monnier2001-12-03 09:33:01 +0000
committerStefan Monnier2001-12-03 09:33:01 +0000
commit1fdcb819d4a70a9ab8b2e2746d826088e293efa2 (patch)
tree6f0959794f31ad1547f7695fcb2b02d01f6008aa /lisp/progmodes
parentd6b8a1c0592c2d153ae163a8d7c6a155cb8196d3 (diff)
downloademacs-1fdcb819d4a70a9ab8b2e2746d826088e293efa2.tar.gz
emacs-1fdcb819d4a70a9ab8b2e2746d826088e293efa2.zip
(antlr-c-common-init): Undo last change.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/antlr-mode.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/progmodes/antlr-mode.el b/lisp/progmodes/antlr-mode.el
index 8599ec25604..40e2a18334c 100644
--- a/lisp/progmodes/antlr-mode.el
+++ b/lisp/progmodes/antlr-mode.el
@@ -1391,6 +1391,8 @@ Otherwise, indent the current line with `antlr-indent-line'."
1391 (make-local-variable 'comment-multi-line) 1391 (make-local-variable 'comment-multi-line)
1392 (make-local-variable 'outline-regexp) 1392 (make-local-variable 'outline-regexp)
1393 (make-local-variable 'outline-level) 1393 (make-local-variable 'outline-level)
1394 (make-local-variable 'adaptive-fill-regexp)
1395 (make-local-variable 'adaptive-fill-mode)
1394 (make-local-variable 'imenu-generic-expression) ;set in the mode functions 1396 (make-local-variable 'imenu-generic-expression) ;set in the mode functions
1395 (and (boundp 'comment-line-break-function) 1397 (and (boundp 'comment-line-break-function)
1396 (make-local-variable 'comment-line-break-function)) 1398 (make-local-variable 'comment-line-break-function))
@@ -1412,7 +1414,9 @@ Otherwise, indent the current line with `antlr-indent-line'."
1412 comment-column 32 1414 comment-column 32
1413 comment-start-skip "/\\*+ *\\|// *" 1415 comment-start-skip "/\\*+ *\\|// *"
1414 comment-multi-line nil 1416 comment-multi-line nil
1415 comment-line-break-function 'c-comment-line-break-function) 1417 comment-line-break-function 'c-comment-line-break-function
1418 adaptive-fill-regexp nil
1419 adaptive-fill-mode nil)
1416 ;; we have to do something special for c-offsets-alist so that the 1420 ;; we have to do something special for c-offsets-alist so that the
1417 ;; buffer local value has its own alist structure. 1421 ;; buffer local value has its own alist structure.
1418 (setq c-offsets-alist (copy-alist c-offsets-alist)) 1422 (setq c-offsets-alist (copy-alist c-offsets-alist))