diff options
| author | Richard M. Stallman | 2005-08-09 11:24:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-08-09 11:24:05 +0000 |
| commit | f98dd4f8bd568237a559b33f2cfdbefa08d30cb6 (patch) | |
| tree | d92361463bd4c0236f3a63d591f7a0b56d5e4465 /etc | |
| parent | a165d05e5d1de743e41b33f6e1d402952024a488 (diff) | |
| download | emacs-f98dd4f8bd568237a559b33f2cfdbefa08d30cb6.tar.gz emacs-f98dd4f8bd568237a559b33f2cfdbefa08d30cb6.zip | |
*** empty log message ***
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 22 |
1 files changed, 21 insertions, 1 deletions
| @@ -3614,6 +3614,25 @@ binding of VARIABLE (a symbol) in buffer BUFFER. If VARIABLE does not | |||
| 3614 | have a buffer-local binding in buffer BUFFER, it returns the default | 3614 | have a buffer-local binding in buffer BUFFER, it returns the default |
| 3615 | value of VARIABLE instead. | 3615 | value of VARIABLE instead. |
| 3616 | 3616 | ||
| 3617 | *** The function `frame-or-buffer-changed-p' now lets you maintain | ||
| 3618 | various status records in parallel. | ||
| 3619 | |||
| 3620 | It take a variable (a symbol) as argument. If the variable is non-nil, | ||
| 3621 | then its value should be a vector installed previously by | ||
| 3622 | `frame-or-buffer-changed-p'. If the frame names, buffer names, buffer | ||
| 3623 | order, or their read-only or modified flags have changed, since the | ||
| 3624 | time the vector's contents were recorded by a previous call to | ||
| 3625 | `frame-or-buffer-changed-p', then the function returns t. Otherwise | ||
| 3626 | it returns nil. | ||
| 3627 | |||
| 3628 | On the first call to `frame-or-buffer-changed-p', the variable's | ||
| 3629 | value should be nil. `frame-or-buffer-changed-p' stores a suitable | ||
| 3630 | vector into the variable and returns t. | ||
| 3631 | |||
| 3632 | If the variable is itself nil, then `frame-or-buffer-changed-p' uses, | ||
| 3633 | for compatibility, an internal variable which exists only for this | ||
| 3634 | purpose. | ||
| 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 |
| 3882 | arrives. If the user types or clicks anything, BODY stops as if a | 3901 | arrives. If the user types or clicks anything, BODY stops as if a |
| 3883 | quit had occurred. `while-no-input' returns the value of BODY, if BODY | 3902 | quit had occurred. `while-no-input' returns the value of BODY, if BODY |
| 3884 | finishes. It returns nil if BODY was aborted. | 3903 | finishes. It returns nil if BODY was aborted by a quit, and t if |
| 3904 | BODY was aborted by arrival of input. | ||
| 3885 | 3905 | ||
| 3886 | ** Minibuffer changes: | 3906 | ** Minibuffer changes: |
| 3887 | 3907 | ||