aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2000-06-05 06:06:30 +0000
committerStefan Monnier2000-06-05 06:06:30 +0000
commitd5b037c5bf1da10b37f97ac7a07dd7331d230de2 (patch)
treea0d83f0d6b2fbac6a4c499b0ae204d96e316c5c4 /lisp/ChangeLog
parent02b420eb35814cd05f36685b84f683ca699e2ed9 (diff)
downloademacs-d5b037c5bf1da10b37f97ac7a07dd7331d230de2.tar.gz
emacs-d5b037c5bf1da10b37f97ac7a07dd7331d230de2.zip
(easy-mmode-define-global-mode): Autoload.
Use find-file-hooks in the minor-mode function. Be careful not to loop indefinitely in the post-command-hook function.
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog29
1 files changed, 25 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 90c447d803f..905c15ff523 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,23 +1,44 @@
12000-06-05 Stefan Monnier <monnier@cs.yale.edu>
2
3 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
4 Use find-file-hooks in the minor-mode function.
5 Be careful not to loop indefinitely in the post-command-hook function.
6
12000-06-05 Michael Kifer <kifer@cs.sunysb.edu> 72000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
2 8
3 * ediff-init.el (ediff-has-face-support-p): make it paint faces on 9 * ediff-init.el (ediff-has-face-support-p): make it paint faces on
4 tty's. 10 tty's.
5 * ediff-diff.el (ediff-exec-process): use --binary for fine 11 * ediff-diff.el (ediff-exec-process): use --binary for fine
6 differences whenever apropriate. 12 differences whenever appropriate.
7 * viper-cmd.el (viper-smart-suffix-list): rearranged list members. 13 * viper-cmd.el (viper-smart-suffix-list): rearranged list members.
8 * viper.el (find-file,find-file-other-window): get viper to do 14 * viper.el (find-file, find-file-other-window): get viper to do
9 wildcards. 15 wildcards.
10 16
112000-06-04 Stefan Monnier <monnier@cs.yale.edu> 172000-06-04 Stefan Monnier <monnier@cs.yale.edu>
12 18
13 * emacs-lisp/easy-mmode.el (easy-mmode-define-toggle): 19 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
14 Remove (inline into define-minor-mode). 20 (jit-lock-fontify-buffer): New function for JIT refontification.
21 (jit-lock-mode): Fix docstring.
22 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
23 Remove jit-lock-after-change from the _local_ hook.
24 (jit-lock-function-1): Fix docstring.
25
26 * info.el (Info-on-current-buffer): Initialize info.
27
28 * newcomment.el (comment-indent): Ignore comment-indent-hook.
29
30 * progmodes/tcl.el (tcl-indent-for-comment):
31 Ignore comment-indent-hook.
32
33 * emacs-lisp/easy-mmode.el: Require CL during compilation.
34 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
15 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name 35 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
16 and improve to use the lighter to guess the capitalization. 36 and improve to use the lighter to guess the capitalization.
17 (define-minor-mode): Inline code from easy-mmode-define-toggle. 37 (define-minor-mode): Inline code from easy-mmode-define-toggle.
18 Add keyword arguments to specify global-ness or the custom group. 38 Add keyword arguments to specify global-ness or the custom group.
19 Add local-map and help-echo properties to the lighter. 39 Add local-map and help-echo properties to the lighter.
20 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors. 40 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
41 (easy-mmode-define-global-mode): New macro.
21 42
222000-06-02 Dave Love <fx@gnu.org> 432000-06-02 Dave Love <fx@gnu.org>
23 44