aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2001-12-03 09:33:01 +0000
committerStefan Monnier2001-12-03 09:33:01 +0000
commit1fdcb819d4a70a9ab8b2e2746d826088e293efa2 (patch)
tree6f0959794f31ad1547f7695fcb2b02d01f6008aa
parentd6b8a1c0592c2d153ae163a8d7c6a155cb8196d3 (diff)
downloademacs-1fdcb819d4a70a9ab8b2e2746d826088e293efa2.tar.gz
emacs-1fdcb819d4a70a9ab8b2e2746d826088e293efa2.zip
(antlr-c-common-init): Undo last change.
-rw-r--r--lisp/ChangeLog47
-rw-r--r--lisp/progmodes/antlr-mode.el6
2 files changed, 49 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 334e72a230a..9db33844be2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,12 +1,53 @@
12001-12-03 Stefan Monnier <monnier@cs.yale.edu>
2
3 * progmodes/antlr-mode.el (antlr-c-common-init): Undo last change.
4
12001-12-02 Richard M. Stallman <rms@gnu.org> 52001-12-02 Richard M. Stallman <rms@gnu.org>
2 6
3 * files.el (insert-directory): If the df output does not look right, 7 * files.el (insert-directory): If the df output does not look right,
4 don't try to use it. Other cleanups in overall code structure. 8 don't try to use it. Other cleanups in overall code structure.
5 9
102001-12-02 Stefan Monnier <monnier@cs.yale.edu>
11
12 * textmodes/outline.el (outline-mode-prefix-map):
13 Add bindings for outline-promote and outline-demote.
14 (outline-minor-mode-menu-bar-map): New var.
15 (outline-minor-mode): Use it.
16 (outline-heading-alist): New var (renamed from outline-level-heading).
17 (outline-level): Use it.
18 (outline-insert-heading, outline-promote, outline-demote):
19 Update to use outline-heading-alist.
20
21 * disp-table.el (standard-display-european):
22 Simplify since the function is not interactive any more.
23 Don't set the existing buffers to unibyte.
24
25 * pcvs-util.el (cvs-file-to-string): Move condition-case outside.
26
27 * pcvs.el (cvs-reread-cvsrc): Don't use cvs-file-to-string.
28
29 * reveal.el (reveal-mode): Fix reveal-mode's lighter.
30
31 * shell.el (shell): Use shell-file-name.
32 Pop to buffer before calling comint to set COLUMNS properly.
33
34 * emacs-lisp/cl.el (svref): New alias.
35
36 * progmodes/antlr-mode.el (antlr-c-common-init):
37 Don't inhibit adaptive-fill-mode any more.
38
39 * progmodes/delphi.el (delphi-mode): Don't use make-local-hook.
40
41 * progmodes/etags.el (tags-with-face): Use make-symbol.
42 (tags-search, tags-query-replace): Use backquotes.
43
44 * textmodes/picture.el (picture-mode-map): Don't use defconst
45 for a variable.
46
62001-12-02 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 472001-12-02 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
7 48
8 * textmodes/reftex-index.el (reftex-index-mode): Remove 49 * textmodes/reftex-index.el (reftex-index-mode):
9 make-local-hook. 50 Remove make-local-hook.
10 51
11 * textmodes/reftex-toc.el (reftex-toc-mode): Likewise. 52 * textmodes/reftex-toc.el (reftex-toc-mode): Likewise.
12 53
@@ -22,7 +63,7 @@
22 then do save-excursion, then move point. 63 then do save-excursion, then move point.
23 Specify the buffer for get-char-property. 64 Specify the buffer for get-char-property.
24 Don't use `@' in interactive. 65 Don't use `@' in interactive.
25 66
26 * indent.el (indent-line-function): 67 * indent.el (indent-line-function):
27 Default is indent-to-left-margin again. 68 Default is indent-to-left-margin again.
28 69
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))