APPROVE COMMIT
NOTE: This patch has been committed
# HG changeset patch
# User Aidan Kehoe <kehoea(a)parhasard.net>
# Date 1512018902 0
# Thu Nov 30 05:15:02 2017 +0000
# Node ID dabe2da63f45bf454afdd10dd4e9b475a2ac8f06
# Parent 700dd03e6a315a24450bcd172232d564f05601e1
Correct the order of arguments to Fprin1(), describe_command().
src/ChangeLog addition:
2017-11-30 Aidan Kehoe <kehoea(a)parhasard.net>
* keymap.c (describe_command):
Correct the order of the arguments to Fprin1() here, avoid an
error when calling #'describe-bindings.
diff -r 700dd03e6a31 -r dabe2da63f45 src/ChangeLog
--- a/src/ChangeLog Sat Nov 25 17:48:54 2017 +0900
+++ b/src/ChangeLog Thu Nov 30 05:15:02 2017 +0000
@@ -1,4 +1,8 @@
-2017-11-24 Stephen J. Turnbull <stephen(a)xemacs.org>
+2017-11-30 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * keymap.c (describe_command):
+ Correct the order of the arguments to Fprin1() here, avoid an
+ error when calling #'describe-bindings.
2017-11-23 Stephen J. Turnbull <stephen(a)xemacs.org>
diff -r 700dd03e6a31 -r dabe2da63f45 src/keymap.c
--- a/src/keymap.c Sat Nov 25 17:48:54 2017 +0900
+++ b/src/keymap.c Thu Nov 30 05:15:02 2017 +0000
@@ -4269,7 +4269,7 @@
}
else
{
- Fprin1 (stream, name);
+ Fprin1 (name, stream);
}
}
else
--
‘As I sat looking up at the Guinness ad, I could never figure out /
How your man stayed up on the surfboard after forty pints of stout’
(C. Moore)
Show replies by date