aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-01-30 00:40:55 +0000
committerStefan Monnier2004-01-30 00:40:55 +0000
commitcce5462e72d071ef441deeb15d49a73da6d2b1f7 (patch)
tree18009739843248bf6d41f4c495d99336a59e18c4
parent7b4d9d3bb7394268acaa693ee73bb45864a355a1 (diff)
downloademacs-cce5462e72d071ef441deeb15d49a73da6d2b1f7.tar.gz
emacs-cce5462e72d071ef441deeb15d49a73da6d2b1f7.zip
*** empty log message ***
-rw-r--r--etc/NEWS9
-rw-r--r--lisp/ChangeLog28
2 files changed, 29 insertions, 8 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 61fa7e4167b..31dea2db9d5 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -856,13 +856,20 @@ Instead, the `$ENVVAR' text is left as is, so that `$$' quoting
856is only rarely needed. 856is 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
861If this variable is non-nil, its value should be the amount of Emacs 862If this variable is non-nil, its value should be the amount of Emacs
862idle time in seconds to wait before starting fontification. For 863idle time in seconds to wait before starting fontification. For
863example, if you set `jit-lock-defer-time' to 0.25, fontification will 864example, if you set `jit-lock-defer-time' to 0.25, fontification will
864only happen after 0.25s of idle time. 865only happen after 0.25s of idle time.
865 866
867*** contextual refontification is now separate from stealth fontification.
868
869jit-lock-defer-contextually is renamed jit-lock-contextually and
870jit-lock-context-time determines the delay after which contextual
871refontification 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
868you hit M-C-SPC (mark-sexp), M-@ (mark-word), M-h (mark-paragraph), or 875you 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 @@
12004-01-29 Tue Jari Aalto <jari.aalto <AT> poboxes.com> 12004-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
152004-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
142004-01-29 Dave Love <fx@gnu.org> 282004-01-29 Dave Love <fx@gnu.org>
15 29