1 new commit in XEmacs:
https://bitbucket.org/xemacs/xemacs/commits/7ce0eaac52e0/
Changeset: 7ce0eaac52e0
User: kehoea
Date: 2017-11-09 21:59:49+00:00
Summary: Fix the build #ifdef CCL_DEBUG.
src/ChangeLog addition:
2017-11-09 Aidan Kehoe <kehoea(a)parhasard.net>
* mule-ccl.c (ccl_driver):
Fix the build #ifdef CCL_DEBUG.
Affected #: 2 files
diff -r 1c9b5a16e78274b6b671f85a57b9f7c88a952115 -r
7ce0eaac52e01c1f46b35f8a36d08abcd3bbc0a6 src/ChangeLog
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
+2017-11-09 Aidan Kehoe <kehoea(a)parhasard.net>
+
+ * mule-ccl.c (ccl_driver):
+ Fix the build #ifdef CCL_DEBUG.
+
2017-11-07 Aidan Kehoe <kehoea(a)parhasard.net>
Quieten some compiler warnings:
diff -r 1c9b5a16e78274b6b671f85a57b9f7c88a952115 -r
7ce0eaac52e01c1f46b35f8a36d08abcd3bbc0a6 src/mule-ccl.c
--- a/src/mule-ccl.c
+++ b/src/mule-ccl.c
@@ -2020,7 +2020,7 @@
EMACS_INT i = ccl_backtrace_idx - 1;
EMACS_INT j;
- Dynarr_add_many (destination, (unsigned char *) msg, strlen (msg));
+ Dynarr_add_many (destination, (unsigned char *) msg, qxestrlen (msg));
for (j = 0; j < CCL_DEBUG_BACKTRACE_LEN; j++, i--)
{
@@ -2029,7 +2029,7 @@
break;
Dynarr_add_many (destination, msg,
emacs_snprintf (msg, sizeof (msg),
- " %ld", ccl_backtrace_table[i]))
+ " %ld", ccl_backtrace_table[i]));
}
goto ccl_finish;
}
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.