# HG changeset patch # User Gerd Moellmann # Date 974122552 0 # Node ID 15ff9417493ed1416286c3482da8f0a89f4f99ca # Parent 492138789b208934ccc2df613c323ba1695363e6 (show_help_echo): Call message3_nolog with number of bytes in the help string as 2nd parameter, instead of the number of characters. diff -r 492138789b20 -r 15ff9417493e src/keyboard.c --- a/src/keyboard.c Mon Nov 13 12:25:59 2000 +0000 +++ b/src/keyboard.c Mon Nov 13 13:35:52 2000 +0000 @@ -2001,7 +2001,7 @@ { int count = specpdl_ptr - specpdl; specbind (Qmessage_truncate_lines, Qt); - message3_nolog (help, XSTRING (help)->size, + message3_nolog (help, STRING_BYTES (XSTRING (help)), STRING_MULTIBYTE (help)); unbind_to (count, Qnil); }