comparison src/keyboard.c @ 33445:15ff9417493e

(show_help_echo): Call message3_nolog with number of bytes in the help string as 2nd parameter, instead of the number of characters.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 13 Nov 2000 13:35:52 +0000
parents c587b5380fe0
children b04964da2e33
comparison
equal deleted inserted replaced
33444:492138789b20 33445:15ff9417493e
1999 { 1999 {
2000 if (STRINGP (help)) 2000 if (STRINGP (help))
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 }
2008 else 2008 else
2009 message (0); 2009 message (0);