1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

* xdisp.c (vmessage): Treat frame message as multibyte.

Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
would generate the diagnostic "Making \302\247 buffer-local while
let-bound!".
This commit is contained in:
Paul Eggert 2012-06-08 10:50:17 -07:00
parent ee5747918f
commit d86feb1764
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
* xdisp.c (vmessage): Treat frame message as multibyte.
Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
would generate the diagnostic "Making \302\247 buffer-local while
let-bound!".
2012-06-08 Eli Zaretskii <eliz@gnu.org>
* dispnew.c (showing_window_margins_p): Undo last change, which

View File

@ -9765,7 +9765,7 @@ vmessage (const char *m, va_list ap)
len = doprnt (FRAME_MESSAGE_BUF (f),
FRAME_MESSAGE_BUF_SIZE (f), m, (char *)0, ap);
message2 (FRAME_MESSAGE_BUF (f), len, 0);
message2 (FRAME_MESSAGE_BUF (f), len, 1);
}
else
message1 (0);