aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-12-02 07:20:13 +0000
committerStefan Monnier2001-12-02 07:20:13 +0000
commitd47520cdcda9c3a1477ba606dc90097563c62900 (patch)
treee8e7cb1e2b470279f8c8e3e8e89b8bacb7adbcb1
parent157704f7cf82ba9779803b5e2683824edb46c951 (diff)
downloademacs-d47520cdcda9c3a1477ba606dc90097563c62900.tar.gz
emacs-d47520cdcda9c3a1477ba606dc90097563c62900.zip
(antlr-c-common-init): Don't inhibit adaptive-fill-mode any more.
-rw-r--r--lisp/progmodes/antlr-mode.el6
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/progmodes/antlr-mode.el b/lisp/progmodes/antlr-mode.el
index 40e2a18334c..8599ec25604 100644
--- a/lisp/progmodes/antlr-mode.el
+++ b/lisp/progmodes/antlr-mode.el
@@ -1391,8 +1391,6 @@ 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)
1396 (make-local-variable 'imenu-generic-expression) ;set in the mode functions 1394 (make-local-variable 'imenu-generic-expression) ;set in the mode functions
1397 (and (boundp 'comment-line-break-function) 1395 (and (boundp 'comment-line-break-function)
1398 (make-local-variable 'comment-line-break-function)) 1396 (make-local-variable 'comment-line-break-function))
@@ -1414,9 +1412,7 @@ Otherwise, indent the current line with `antlr-indent-line'."
1414 comment-column 32 1412 comment-column 32
1415 comment-start-skip "/\\*+ *\\|// *" 1413 comment-start-skip "/\\*+ *\\|// *"
1416 comment-multi-line nil 1414 comment-multi-line nil
1417 comment-line-break-function 'c-comment-line-break-function 1415 comment-line-break-function 'c-comment-line-break-function)
1418 adaptive-fill-regexp nil
1419 adaptive-fill-mode nil)
1420 ;; we have to do something special for c-offsets-alist so that the 1416 ;; we have to do something special for c-offsets-alist so that the
1421 ;; buffer local value has its own alist structure. 1417 ;; buffer local value has its own alist structure.
1422 (setq c-offsets-alist (copy-alist c-offsets-alist)) 1418 (setq c-offsets-alist (copy-alist c-offsets-alist))