diff options
| author | Stefan Monnier | 2004-01-30 00:40:55 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-01-30 00:40:55 +0000 |
| commit | cce5462e72d071ef441deeb15d49a73da6d2b1f7 (patch) | |
| tree | 18009739843248bf6d41f4c495d99336a59e18c4 | |
| parent | 7b4d9d3bb7394268acaa693ee73bb45864a355a1 (diff) | |
| download | emacs-cce5462e72d071ef441deeb15d49a73da6d2b1f7.tar.gz emacs-cce5462e72d071ef441deeb15d49a73da6d2b1f7.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 9 | ||||
| -rw-r--r-- | lisp/ChangeLog | 28 |
2 files changed, 29 insertions, 8 deletions
| @@ -856,13 +856,20 @@ Instead, the `$ENVVAR' text is left as is, so that `$$' quoting | |||
| 856 | is only rarely needed. | 856 | is only rarely needed. |
| 857 | 857 | ||
| 858 | --- | 858 | --- |
| 859 | ** jit-lock can now be delayed with `jit-lock-defer-time'. | 859 | ** JIT-lock changes |
| 860 | *** jit-lock can now be delayed with `jit-lock-defer-time'. | ||
| 860 | 861 | ||
| 861 | If this variable is non-nil, its value should be the amount of Emacs | 862 | If this variable is non-nil, its value should be the amount of Emacs |
| 862 | idle time in seconds to wait before starting fontification. For | 863 | idle time in seconds to wait before starting fontification. For |
| 863 | example, if you set `jit-lock-defer-time' to 0.25, fontification will | 864 | example, if you set `jit-lock-defer-time' to 0.25, fontification will |
| 864 | only happen after 0.25s of idle time. | 865 | only happen after 0.25s of idle time. |
| 865 | 866 | ||
| 867 | *** contextual refontification is now separate from stealth fontification. | ||
| 868 | |||
| 869 | jit-lock-defer-contextually is renamed jit-lock-contextually and | ||
| 870 | jit-lock-context-time determines the delay after which contextual | ||
| 871 | refontification takes place. | ||
| 872 | |||
| 866 | +++ | 873 | +++ |
| 867 | ** Marking commands extend the region when invoked multiple times. If | 874 | ** Marking commands extend the region when invoked multiple times. If |
| 868 | you hit M-C-SPC (mark-sexp), M-@ (mark-word), M-h (mark-paragraph), or | 875 | you hit M-C-SPC (mark-sexp), M-@ (mark-word), M-h (mark-paragraph), or |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c3e98e8cd11..f76f875d5e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,15 +1,29 @@ | |||
| 1 | 2004-01-29 Tue Jari Aalto <jari.aalto <AT> poboxes.com> | 1 | 2004-01-29 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * progmodes/executable.el (executable-command-find-posix-p): | 3 | * jit-lock.el (jit-lock-context-time, jit-lock-context-timer): New var. |
| 4 | New. Check if find handles arguments Posix-style. | 4 | (with-buffer-unmodified, with-buffer-prepared-for-jit-lock): |
| 5 | Add edebug info. | ||
| 6 | (jit-lock-mode): Setup/cancel the new timer. | ||
| 7 | (jit-lock-context-fontify): New fun. Extracted from | ||
| 8 | context fontification code of jit-lock-stealth-fontify. | ||
| 9 | (jit-lock-stealth-fontify): Don't do context fontification any more. | ||
| 5 | 10 | ||
| 6 | * progmodes/grep.el (grep-compute-defaults): | 11 | * jit-lock.el (jit-lock-stealth-fontify): Allow quit. |
| 12 | (jit-lock-fontify-now): Handle the `quit' case. | ||
| 13 | (jit-lock-contextually): Rename from jit-lock-defer-contextually. | ||
| 14 | |||
| 15 | 2004-01-29 Jari Aalto <jari.aalto@poboxes.com> | ||
| 16 | |||
| 17 | * progmodes/executable.el (executable-command-find-posix-p): | ||
| 18 | New. Check if find handles arguments Posix-style. | ||
| 19 | |||
| 20 | * progmodes/grep.el (grep-compute-defaults): | ||
| 7 | Use executable-command-find-posix-p. | 21 | Use executable-command-find-posix-p. |
| 8 | (grep-find): Check `grep-find-command'. | 22 | (grep-find): Check `grep-find-command'. |
| 9 | 23 | ||
| 10 | * filecache.el (file-cache-find-posix-p): Deleted. | 24 | * filecache.el (file-cache-find-posix-p): Delete. |
| 11 | (file-cache-add-directory-using-find): | 25 | (file-cache-add-directory-using-find): |
| 12 | Use `executable-command-find-posix-p' | 26 | Use `executable-command-find-posix-p'. |
| 13 | 27 | ||
| 14 | 2004-01-29 Dave Love <fx@gnu.org> | 28 | 2004-01-29 Dave Love <fx@gnu.org> |
| 15 | 29 | ||