diff options
| author | Stefan Monnier | 2013-01-23 15:07:28 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-01-23 15:07:28 -0500 |
| commit | b09cca6ace3728ad8a93b3c0301520fa75e71586 (patch) | |
| tree | fa12508ec95ada37cf95445ecf91d8f7786dab7e /src/ChangeLog | |
| parent | 54ab1c5acf892f07dd8121d4bbafe7601a54bcb5 (diff) | |
| download | emacs-b09cca6ace3728ad8a93b3c0301520fa75e71586.tar.gz emacs-b09cca6ace3728ad8a93b3c0301520fa75e71586.zip | |
* src/xdisp.c (message2, message2_nolog): Remove functions.
(message3, message3_nolog): Extract nbytes and multibyteness directly
from the string. Change all callers.
(message3_nolog): Don't set message_enable_multibyte since set_message
will reset it anyway.
(message1, message1_nolog): Use message3.
(vmessage): Use a stack allocated buffer rather than f->message_buf.
(with_echo_area_buffer): Remove last two arguments. Update all callers.
(set_message): Drop all but the second arg, which has to be a string.
(set_message_1): Simplify now that we know that a1 is NULL and the
second arg is a string.
* src/frame.h (struct frame): Remove `message_buf' field.
Use glyphs_initialized_p instead.
(FRAME_MESSAGE_BUF): Remove macro.
* src/w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
* src/lisp.h (message2, message2_nolog): Remove declarations.
(message3, message3_nolog): Update declarations.
* src/keyboard.c (read_char_minibuf_menu_text)
(read_char_minibuf_menu_width): Remove vars.
(read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
to correctly handle multibyte strings.
* src/frame.c (delete_frame): Don't free message_buf any more.
* src/editfns.c (message_text, message_length): Remove vars.
(Fmessage_box): Don't copy the Lisp string's bytes any longer.
* src/fileio.c (auto_save_error): Use message3 instead of message2.
* src/dispnew.c (adjust_frame_message_buffer): Remove function.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 644724f67b6..7a2ff184c0a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,32 @@ | |||
| 1 | 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * xdisp.c (message2, message2_nolog): Remove functions. | ||
| 4 | (message3, message3_nolog): Extract nbytes and multibyteness directly | ||
| 5 | from the string. Change all callers. | ||
| 6 | (message3_nolog): Don't set message_enable_multibyte since set_message | ||
| 7 | will reset it anyway. | ||
| 8 | (message1, message1_nolog): Use message3. | ||
| 9 | (vmessage): Use a stack allocated buffer rather than f->message_buf. | ||
| 10 | (with_echo_area_buffer): Remove last two arguments. Update all callers. | ||
| 11 | (set_message): Drop all but the second arg, which has to be a string. | ||
| 12 | (set_message_1): Simplify now that we know that a1 is NULL and the | ||
| 13 | second arg is a string. | ||
| 14 | * frame.h (struct frame): Remove `message_buf' field. | ||
| 15 | Use glyphs_initialized_p instead. | ||
| 16 | (FRAME_MESSAGE_BUF): Remove macro. | ||
| 17 | * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2. | ||
| 18 | * lisp.h (message2, message2_nolog): Remove declarations. | ||
| 19 | (message3, message3_nolog): Update declarations. | ||
| 20 | * keyboard.c (read_char_minibuf_menu_text) | ||
| 21 | (read_char_minibuf_menu_width): Remove vars. | ||
| 22 | (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as | ||
| 23 | to correctly handle multibyte strings. | ||
| 24 | * frame.c (delete_frame): Don't free message_buf any more. | ||
| 25 | * editfns.c (message_text, message_length): Remove vars. | ||
| 26 | (Fmessage_box): Don't copy the Lisp string's bytes any longer. | ||
| 27 | * fileio.c (auto_save_error): Use message3 instead of message2. | ||
| 28 | * dispnew.c (adjust_frame_message_buffer): Remove function. | ||
| 29 | |||
| 1 | 2013-01-23 Eli Zaretskii <eliz@gnu.org> | 30 | 2013-01-23 Eli Zaretskii <eliz@gnu.org> |
| 2 | 31 | ||
| 3 | * w32term.c (w32fullscreen_hook): Account correctly for the screen | 32 | * w32term.c (w32fullscreen_hook): Account correctly for the screen |