diff options
| author | Glenn Morris | 2014-06-07 17:35:27 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-07 17:35:27 -0700 |
| commit | 36cf8493aff99b652b2ad8c9e4d55a18688e8484 (patch) | |
| tree | f8ff499c2ee5e91b20d8576841f0e6bf91d1ba34 /src/ChangeLog | |
| parent | 2be772ff45057215c1c70252008c1f9703ef3bff (diff) | |
| parent | da8de2908c35ad1fd5c437486d2ea5f6ebb75ca3 (diff) | |
| download | emacs-36cf8493aff99b652b2ad8c9e4d55a18688e8484.tar.gz emacs-36cf8493aff99b652b2ad8c9e4d55a18688e8484.zip | |
Merge from emacs-24; up to 2014-06-01T23:37:59Z!eggert@cs.ucla.edu
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3b625ebf5d4..4aada1d5279 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,35 @@ | |||
| 1 | 2014-06-08 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * sysdep.c (reset_sys_modes): Use cursorX, not curX, as the latter | ||
| 4 | contains garbage on WINDOWSNT (which could potentially infloop at | ||
| 5 | exit). | ||
| 6 | |||
| 7 | Minimize cursor motion during TTY menu updates. | ||
| 8 | * term.c (tty_menu_display): Don't position cursor here. | ||
| 9 | Instead, pass the cursor coordinates to update_frame_with_menu. | ||
| 10 | (tty_menu_activate): Send the hide cursor command only once in an | ||
| 11 | iteration through the outer 'while' loop. | ||
| 12 | |||
| 13 | * dispnew.c (update_frame_1): Accept an additional argument | ||
| 14 | SET_CURSOR_P, and position the cursor at the end of the frame | ||
| 15 | update only if that argument is non-zero. All callers changed to | ||
| 16 | provide the additional argument as non-zero, except for | ||
| 17 | update_frame_with_menu. | ||
| 18 | (update_frame_with_menu): Accept 2 additional arguments ROW and | ||
| 19 | COL; if they are non-negative, instruct update_frame_1 not to | ||
| 20 | position the cursor, and instead position it according to ROW and COL. | ||
| 21 | |||
| 22 | * dispextern.h (update_frame_with_menu): Update prototype. | ||
| 23 | |||
| 24 | 2014-06-08 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 25 | |||
| 26 | * callproc.c (call_process): Don't check read-only if we don't insert | ||
| 27 | anything (bug#17666). | ||
| 28 | |||
| 29 | 2014-06-08 Eli Zaretskii <eliz@gnu.org> | ||
| 30 | |||
| 31 | * dispnew.c (update_frame_with_menu): Set display_completed. | ||
| 32 | |||
| 1 | 2014-06-07 Eli Zaretskii <eliz@gnu.org> | 33 | 2014-06-07 Eli Zaretskii <eliz@gnu.org> |
| 2 | 34 | ||
| 3 | * term.c (tty_menu_show) [WINDOWSNT]: Make tty_menu_show extern | 35 | * term.c (tty_menu_show) [WINDOWSNT]: Make tty_menu_show extern |