1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/dabe2da63f45/
Changeset: dabe2da63f45
User: kehoea
Date: 2017-11-30 05:15:02+00:00
Summary: 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.
Affected #: 2 files
diff -r 700dd03e6a315a24450bcd172232d564f05601e1 -r
dabe2da63f45bf454afdd10dd4e9b475a2ac8f06 src/ChangeLog
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -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 700dd03e6a315a24450bcd172232d564f05601e1 -r
dabe2da63f45bf454afdd10dd4e9b475a2ac8f06 src/keymap.c
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -4269,7 +4269,7 @@
}
else
{
- Fprin1 (stream, name);
+ Fprin1 (name, stream);
}
}
else
Repository URL:
https://bitbucket.org/xemacs/xemacs/
--
This is a commit notification from
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.