]> git.eshelyaron.com Git - emacs.git/commitdiff
(antlr-c-common-init): Undo last change.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Dec 2001 09:33:01 +0000 (09:33 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Dec 2001 09:33:01 +0000 (09:33 +0000)
lisp/ChangeLog
lisp/progmodes/antlr-mode.el

index 334e72a230a4e0a7ce4610ba8b1a3abdb64331e5..9db33844be23e7b1980a23668bae7bc89e7b60a8 100644 (file)
@@ -1,12 +1,53 @@
+2001-12-03  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
+
 2001-12-02  Richard M. Stallman  <rms@gnu.org>
 
        * files.el (insert-directory): If the df output does not look right,
        don't try to use it.  Other cleanups in overall code structure.
 
+2001-12-02  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * textmodes/outline.el (outline-mode-prefix-map):
+       Add bindings for outline-promote and outline-demote.
+       (outline-minor-mode-menu-bar-map): New var.
+       (outline-minor-mode): Use it.
+       (outline-heading-alist): New var (renamed from outline-level-heading).
+       (outline-level): Use it.
+       (outline-insert-heading, outline-promote, outline-demote):
+       Update to use outline-heading-alist.
+
+       * disp-table.el (standard-display-european):
+       Simplify since the function is not interactive any more.
+       Don't set the existing buffers to unibyte.
+
+       * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
+
+       * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
+
+       * reveal.el (reveal-mode): Fix reveal-mode's lighter.
+
+       * shell.el (shell): Use shell-file-name.
+       Pop to buffer before calling comint to set COLUMNS properly.
+
+       * emacs-lisp/cl.el (svref): New alias.
+
+       * progmodes/antlr-mode.el (antlr-c-common-init):
+       Don't inhibit adaptive-fill-mode any more.
+
+       * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
+
+       * progmodes/etags.el (tags-with-face): Use make-symbol.
+       (tags-search, tags-query-replace): Use backquotes.
+
+       * textmodes/picture.el (picture-mode-map): Don't use defconst
+       for a variable.
+
 2001-12-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
-       * textmodes/reftex-index.el (reftex-index-mode): Remove
-       make-local-hook.
+       * textmodes/reftex-index.el (reftex-index-mode):
+       Remove make-local-hook.
 
        * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
 
@@ -22,7 +63,7 @@
        then do save-excursion, then move point.
        Specify the buffer for get-char-property.
        Don't use `@' in interactive.
-       
+
        * indent.el (indent-line-function):
        Default is indent-to-left-margin again.
 
index 8599ec2560427ea6f48385302523b344a454d22f..40e2a18334cb404ad1223ee3bed20f94a8e790f2 100644 (file)
@@ -1391,6 +1391,8 @@ 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))
@@ -1412,7 +1414,9 @@ 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)
+       comment-line-break-function 'c-comment-line-break-function
+       adaptive-fill-regexp nil
+       adaptive-fill-mode nil)
   ;; 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))