diff options
| author | Kim F. Storm | 2006-07-11 00:48:06 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-07-11 00:48:06 +0000 |
| commit | ff97f952e6e46bd283eccfcee1fcb4dbf0f74f81 (patch) | |
| tree | 239e41ba55b15fa7e656a65f117566ec56c968f0 | |
| parent | 9ae011ae3b30bfc85a891e8c9d1daa8425bbbabf (diff) | |
| download | emacs-ff97f952e6e46bd283eccfcee1fcb4dbf0f74f81.tar.gz emacs-ff97f952e6e46bd283eccfcee1fcb4dbf0f74f81.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 8 | ||||
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lispref/ChangeLog | 9 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
4 files changed, 22 insertions, 3 deletions
| @@ -4900,8 +4900,12 @@ of the display margins. | |||
| 4900 | *** `sit-for' can now be called with args (SECONDS &optional NODISP). | 4900 | *** `sit-for' can now be called with args (SECONDS &optional NODISP). |
| 4901 | 4901 | ||
| 4902 | +++ | 4902 | +++ |
| 4903 | *** `sit-for' called with a negative SECONDS value now forces an | 4903 | *** Iconifying or deiconifying a frame no longer makes sit-for return. |
| 4904 | immediate redisplay even if input is pending. | 4904 | |
| 4905 | +++ | ||
| 4906 | *** New function `redisplay' causes an immediate redisplay if no input is | ||
| 4907 | available, equivalent to (sit-for 0). The call (redisplay t) forces | ||
| 4908 | an immediate redisplay even if input is pending. | ||
| 4905 | 4909 | ||
| 4906 | +++ | 4910 | +++ |
| 4907 | *** New function `force-window-update' can initiate a full redisplay of | 4911 | *** New function `force-window-update' can initiate a full redisplay of |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d6a7d9dea03..821cf6357f0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | 2006-07-11 Kim F. Storm <storm@cua.dk> | 1 | 2006-07-11 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form. | 3 | * subr.el (sit-for): Doc fix. Specify normal arg list using fn-form. |
| 4 | Simplify by calling redisplay with non-nil arg if seconds < 0. | 4 | Remove special case for seconds < 0. Use (redisplay t) instead. |
| 5 | 5 | ||
| 6 | 2006-07-10 Chong Yidong <cyd@stupidchicken.com> | 6 | 2006-07-10 Chong Yidong <cyd@stupidchicken.com> |
| 7 | 7 | ||
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index c49c4fee2ab..d9453268709 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2006-07-11 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * display.texi (Forcing Redisplay): Add `redisplay' function. | ||
| 4 | Don't mention (sit-for -1) -- use (redisplay t) instead. | ||
| 5 | |||
| 6 | * commands.texi (Waiting): (sit-for -1) is no longer special. | ||
| 7 | (sit-for 0) is equivalent to (redisplay). | ||
| 8 | Iconifying/deiconifying no longer makes sit-for return. | ||
| 9 | |||
| 1 | 2006-07-11 Nick Roberts <nickrob@snap.net.nz> | 10 | 2006-07-11 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 11 | ||
| 3 | * tips.texi (Coding Conventions): Mention macros. | 12 | * tips.texi (Coding Conventions): Mention macros. |
diff --git a/src/ChangeLog b/src/ChangeLog index cefc2f4048d..d9f914218e1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-07-11 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * dispnew.c (Fredisplay): Add FORCE argument to force redisplay when | ||
| 4 | input is available. Fix test for redisplay_dont_pause non-nil. | ||
| 5 | Specbind redisplay-dont-pause to t if FORCE non-nil. | ||
| 6 | |||
| 1 | 2006-07-10 Chong Yidong <cyd@stupidchicken.com> | 7 | 2006-07-10 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 8 | ||
| 3 | * puresize.h (BASE_PURESIZE): Increment to 1211000. | 9 | * puresize.h (BASE_PURESIZE): Increment to 1211000. |