1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/d986eee8b746/
Changeset: d986eee8b746
User: kehoea
Date: 2017-10-09 07:30:37+00:00
Summary: Correct the sense of an assertion, old_mule_ichar_to_unicode()
2017-10-09 Aidan Kehoe <kehoea(a)parhasard.net>
* text.c (old_mule_ichar_to_unicode):
Correct the sense of an assertion here, thank you Mike Sperber!
Affected #: 2 files
diff -r 4ae34c21a927f5fc72839592ed99e960d7538d10 -r
d986eee8b74633db8cfee3ded33cde9de38802e3 src/ChangeLog
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,6 +4,11 @@
Qunbound isn't a symbol, don't check for it once we've verified
ORIGINAL_FUN is a symbol.
+2017-10-09 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * text.c (old_mule_ichar_to_unicode):
+ Correct the sense of an assertion here, thank you Mike Sperber!
+
2017-10-06 Aidan Kehoe <kehoea(a)parhasard.net>
* lisp.h:
diff -r 4ae34c21a927f5fc72839592ed99e960d7538d10 -r
d986eee8b74633db8cfee3ded33cde9de38802e3 src/text.c
--- a/src/text.c
+++ b/src/text.c
@@ -1703,7 +1703,8 @@
old_mule_ichar_to_unicode (Ichar chr, enum converr fail)
{
ASSERT_VALID_ICHAR (chr);
- text_checking_assert (chr < 256);
+ text_checking_assert (chr >= 256); /* The inline function should handle
+ ASCII, control-1, Latin 1. */
{
int c1, c2;
Lisp_Object charset;
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.