diff options
| author | Gerd Moellmann | 2000-11-13 13:39:21 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-13 13:39:21 +0000 |
| commit | 5ca020fca352e6453e61d440e2e83eece1d9759f (patch) | |
| tree | 87d2ea9c32156435bdb6d1c540e25c6df260fc2b /src/keyboard.c | |
| parent | 9d3482947201704db7f7597d365ae5c9416df382 (diff) | |
| download | emacs-5ca020fca352e6453e61d440e2e83eece1d9759f.tar.gz emacs-5ca020fca352e6453e61d440e2e83eece1d9759f.zip | |
(show_help_echo): Call message3_nolog with number of
bytes in the help string as 2nd parameter, instead of the number
of characters.
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index b086ae57ca6..a8472f2318b 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -2001,7 +2001,7 @@ show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo) | |||
| 2001 | { | 2001 | { |
| 2002 | int count = specpdl_ptr - specpdl; | 2002 | int count = specpdl_ptr - specpdl; |
| 2003 | specbind (Qmessage_truncate_lines, Qt); | 2003 | specbind (Qmessage_truncate_lines, Qt); |
| 2004 | message3_nolog (help, XSTRING (help)->size, | 2004 | message3_nolog (help, STRING_BYTES (XSTRING (help)), |
| 2005 | STRING_MULTIBYTE (help)); | 2005 | STRING_MULTIBYTE (help)); |
| 2006 | unbind_to (count, Qnil); | 2006 | unbind_to (count, Qnil); |
| 2007 | } | 2007 | } |