aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/keyboard.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 10eb9c87415..dd63a3572fc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12000-11-13 Gerd Moellmann <gerd@gnu.org>
2
3 * keyboard.c (show_help_echo): Call message3_nolog with number of
4 bytes in the help string as 2nd parameter, instead of the number
5 of characters.
6
12000-11-13 Miles Bader <miles@gnu.org> 72000-11-13 Miles Bader <miles@gnu.org>
2 8
3 * lread.c (openp): Return -2 instead of 0 for the `remote file' case. 9 * lread.c (openp): Return -2 instead of 0 for the `remote file' case.
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 }