aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2002-03-22 16:14:47 +0000
committerEli Zaretskii2002-03-22 16:14:47 +0000
commit78e17433d2a3a2431323328b536971f397a5eaf2 (patch)
tree7cd37fef32e9e4f1ac7a2a2166897c6138fb4208 /src
parentadcac9f50ffd9b18da16da9edb70175f90b51885 (diff)
downloademacs-78e17433d2a3a2431323328b536971f397a5eaf2.tar.gz
emacs-78e17433d2a3a2431323328b536971f397a5eaf2.zip
(message_with_string): Fix syntax of a call to GCPRO2.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/xdisp.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index c4bffbe126d..b7e5ea87220 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12002-03-22 Eli Zaretskii <eliz@is.elta.co.il> 12002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
2 2
3 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
4
3 * xterm.c (XTread_socket): If XK_ISO_Lock and 5 * xterm.c (XTread_socket): If XK_ISO_Lock and
4 XK_ISO_Last_Group_Lock are defined, handle keysyms between 6 XK_ISO_Last_Group_Lock are defined, handle keysyms between
5 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch. 7 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
diff --git a/src/xdisp.c b/src/xdisp.c
index 5d3e89e9d23..cc9c177c29c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -6085,7 +6085,7 @@ message_with_string (m, string, log)
6085 6085
6086 args[0] = build_string (m); 6086 args[0] = build_string (m);
6087 args[1] = message = string; 6087 args[1] = message = string;
6088 GCPRO2 (args, message); 6088 GCPRO2 (args[0], message);
6089 gcpro1.nvars = 2; 6089 gcpro1.nvars = 2;
6090 6090
6091 message = Fformat (2, args); 6091 message = Fformat (2, args);