aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorRichard M. Stallman2005-08-09 11:24:05 +0000
committerRichard M. Stallman2005-08-09 11:24:05 +0000
commitf98dd4f8bd568237a559b33f2cfdbefa08d30cb6 (patch)
treed92361463bd4c0236f3a63d591f7a0b56d5e4465 /etc
parenta165d05e5d1de743e41b33f6e1d402952024a488 (diff)
downloademacs-f98dd4f8bd568237a559b33f2cfdbefa08d30cb6.tar.gz
emacs-f98dd4f8bd568237a559b33f2cfdbefa08d30cb6.zip
*** empty log message ***
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS22
1 files changed, 21 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 518c075c20f..0935d2066da 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3614,6 +3614,25 @@ binding of VARIABLE (a symbol) in buffer BUFFER. If VARIABLE does not
3614have a buffer-local binding in buffer BUFFER, it returns the default 3614have a buffer-local binding in buffer BUFFER, it returns the default
3615value of VARIABLE instead. 3615value of VARIABLE instead.
3616 3616
3617*** The function `frame-or-buffer-changed-p' now lets you maintain
3618various status records in parallel.
3619
3620It take a variable (a symbol) as argument. If the variable is non-nil,
3621then its value should be a vector installed previously by
3622`frame-or-buffer-changed-p'. If the frame names, buffer names, buffer
3623order, or their read-only or modified flags have changed, since the
3624time the vector's contents were recorded by a previous call to
3625`frame-or-buffer-changed-p', then the function returns t. Otherwise
3626it returns nil.
3627
3628On the first call to `frame-or-buffer-changed-p', the variable's
3629value should be nil. `frame-or-buffer-changed-p' stores a suitable
3630vector into the variable and returns t.
3631
3632If the variable is itself nil, then `frame-or-buffer-changed-p' uses,
3633for compatibility, an internal variable which exists only for this
3634purpose.
3635
3617** Local variables lists: 3636** Local variables lists:
3618 3637
3619+++ 3638+++
@@ -3881,7 +3900,8 @@ using the text properties (esp. the face) of the prompt string.
3881*** (while-no-input BODY...) runs BODY, but only so long as no input 3900*** (while-no-input BODY...) runs BODY, but only so long as no input
3882arrives. If the user types or clicks anything, BODY stops as if a 3901arrives. If the user types or clicks anything, BODY stops as if a
3883quit had occurred. `while-no-input' returns the value of BODY, if BODY 3902quit had occurred. `while-no-input' returns the value of BODY, if BODY
3884finishes. It returns nil if BODY was aborted. 3903finishes. It returns nil if BODY was aborted by a quit, and t if
3904BODY was aborted by arrival of input.
3885 3905
3886** Minibuffer changes: 3906** Minibuffer changes:
3887 3907