diff options
| author | Kim F. Storm | 2004-07-16 10:42:43 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-07-16 10:42:43 +0000 |
| commit | f9253326af7800854e57e82d0a4b66529664dc2c (patch) | |
| tree | f1f2472c4307926ebd49c2947fc72fa08a7d52be | |
| parent | ff99642792644ad61f3d1749a1b81f80d9a660b1 (diff) | |
| download | emacs-f9253326af7800854e57e82d0a4b66529664dc2c.tar.gz emacs-f9253326af7800854e57e82d0a4b66529664dc2c.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
2 files changed, 16 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bc4e75be761..8bd1b75edf3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2004-07-16 Kim F. Storm <storm@cua.dk> | ||
| 2 | |||
| 3 | * simple.el (inhibit-mark-movement): New defvar. | ||
| 4 | (beginning-of-buffer, end-of-buffer): Do not push mark if | ||
| 5 | inhibit-mark-movement is non-nil or C-u prefix is given. | ||
| 6 | |||
| 7 | * emulation/cua-base.el (cua--preserve-mark-commands): New defvar. | ||
| 8 | Init to beginning-of-buffer and end-of-buffer. | ||
| 9 | (cua--undo-push-mark): New defvar. | ||
| 10 | (cua--pre-command-handler): Set inhibit-mark-movement if mark is | ||
| 11 | already active and command is in cua--preserve-mark-commands. | ||
| 12 | Also fix check for shift modifier on non-window systems. | ||
| 13 | (cua--post-command-handler): Clear inhibit-mark-movement if set. | ||
| 14 | |||
| 1 | 2004-07-14 Luc Teirlinck <teirllm@auburn.edu> | 15 | 2004-07-14 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 16 | ||
| 3 | * calendar/cal-dst.el (calendar-time-from-absolute): Return a list | 17 | * calendar/cal-dst.el (calendar-time-from-absolute): Return a list |
diff --git a/src/ChangeLog b/src/ChangeLog index 7c720d73653..1dfaa3f9ce4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -5,8 +5,8 @@ | |||
| 5 | 5 | ||
| 6 | 2004-07-15 David Kastrup <dak@gnu.org> | 6 | 2004-07-15 David Kastrup <dak@gnu.org> |
| 7 | 7 | ||
| 8 | * search.c (syms_of_search): staticpro | 8 | * search.c (syms_of_search): Staticpro `saved_last_thing_searched'. |
| 9 | `saved_last_thing_searched'. Apparently fixes an abort condition. | 9 | Apparently fixes an abort condition. |
| 10 | 10 | ||
| 11 | 2004-07-14 Luc Teirlinck <teirllm@auburn.edu> | 11 | 2004-07-14 Luc Teirlinck <teirllm@auburn.edu> |
| 12 | 12 | ||