diff options
| author | Kim F. Storm | 2005-03-07 11:12:10 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-03-07 11:12:10 +0000 |
| commit | a54595d40e7716d7da89e8fe10160af452c230d4 (patch) | |
| tree | aa7622a0814ac00d99b03e5db61aba4ef9e5b848 | |
| parent | eccfba6ef110a8ab453cb13eb01a6c7acd7bc2e1 (diff) | |
| download | emacs-a54595d40e7716d7da89e8fe10160af452c230d4.tar.gz emacs-a54595d40e7716d7da89e8fe10160af452c230d4.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a11e12305fc..2ee4f48fac2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,14 @@ | |||
| 1 | 2005-03-07 Kim F. Storm <storm@cua.dk> | 1 | 2005-03-07 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * simple.el (move-beginning-of-line): New command. | ||
| 4 | |||
| 5 | * bindings.el (global-map): Bind C-a to move-beginning-of-line. | ||
| 6 | |||
| 7 | * reveal.el (reveal-mode-map): Bind C-a to beginning-of-line. | ||
| 8 | |||
| 9 | * emulation/cua-base.el: Put CUA move property on move-end-of-line | ||
| 10 | and move-beginning-of-line. | ||
| 11 | |||
| 3 | * apropos.el (apropos-print): Omit command from M-x ... RET. | 12 | * apropos.el (apropos-print): Omit command from M-x ... RET. |
| 4 | 13 | ||
| 5 | 2005-03-07 Nick Roberts <nickrob@snap.net.nz> | 14 | 2005-03-07 Nick Roberts <nickrob@snap.net.nz> |
diff --git a/src/ChangeLog b/src/ChangeLog index f98453efab8..54abf51d087 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2005-03-07 Kim F. Storm <storm@cua.dk> | 1 | 2005-03-07 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * blockinput.h (TOTALLY_UNBLOCK_INPUT): Avoid dangling else. | ||
| 4 | |||
| 3 | * xdisp.c (notice_overwritten_cursor): Check that phys_cursor.vpos | 5 | * xdisp.c (notice_overwritten_cursor): Check that phys_cursor.vpos |
| 4 | is valid. If not, clear phys_cursor_on_p and return. | 6 | is valid. If not, clear phys_cursor_on_p and return. |
| 5 | 7 | ||