]> git.eshelyaron.com Git - emacs.git/commitdiff
(antlr-c-common-init): Don't inhibit adaptive-fill-mode any more.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 2 Dec 2001 07:20:13 +0000 (07:20 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 2 Dec 2001 07:20:13 +0000 (07:20 +0000)
lisp/progmodes/antlr-mode.el

index 40e2a18334cb404ad1223ee3bed20f94a8e790f2..8599ec2560427ea6f48385302523b344a454d22f 100644 (file)
@@ -1391,8 +1391,6 @@ Otherwise, indent the current line with `antlr-indent-line'."
   (make-local-variable 'comment-multi-line)
   (make-local-variable 'outline-regexp)
   (make-local-variable 'outline-level)
-  (make-local-variable 'adaptive-fill-regexp)
-  (make-local-variable 'adaptive-fill-mode)
   (make-local-variable 'imenu-generic-expression) ;set in the mode functions
   (and (boundp 'comment-line-break-function)
        (make-local-variable 'comment-line-break-function))
@@ -1414,9 +1412,7 @@ Otherwise, indent the current line with `antlr-indent-line'."
        comment-column 32
        comment-start-skip "/\\*+ *\\|// *"
        comment-multi-line nil
-       comment-line-break-function 'c-comment-line-break-function
-       adaptive-fill-regexp nil
-       adaptive-fill-mode nil)
+       comment-line-break-function 'c-comment-line-break-function)
   ;; we have to do something special for c-offsets-alist so that the
   ;; buffer local value has its own alist structure.
   (setq c-offsets-alist (copy-alist c-offsets-alist))