commit: Fix the union build, setup_ccl_program; thank you Robert Delius Royar.
Aidan Kehoe
kehoea at parhasard.net
Mon Nov 16 03:07:51 EST 2009
changeset: 4748:27b09b4219b1
parent: 4745:0c54de4c4b9d
user: Aidan Kehoe <kehoea at parhasard.net>
date: Sun Nov 15 20:52:09 2009 +0000
files: src/ChangeLog src/mule-ccl.c
description:
Fix the union build, setup_ccl_program; thank you Robert Delius Royar.
2009-11-15 Aidan Kehoe <kehoea at parhasard.net>
* mule-ccl.c (setup_ccl_program):
Fix the union build, thank you Robert Delius Royar.
diff -r 0c54de4c4b9d -r 27b09b4219b1 src/ChangeLog
--- a/src/ChangeLog Sun Nov 15 16:53:14 2009 +0000
+++ b/src/ChangeLog Sun Nov 15 20:52:09 2009 +0000
@@ -1,3 +1,8 @@
+2009-11-15 Aidan Kehoe <kehoea at parhasard.net>
+
+ * mule-ccl.c (setup_ccl_program):
+ Fix the union build, thank you Robert Delius Royar.
+
2009-11-15 Aidan Kehoe <kehoea at parhasard.net>
* mule-ccl.c (CCL_CALL_FOR_MAP_INSTRUCTION): Assert that we always
diff -r 0c54de4c4b9d -r 27b09b4219b1 src/mule-ccl.c
--- a/src/mule-ccl.c Sun Nov 15 16:53:14 2009 +0000
+++ b/src/mule-ccl.c Sun Nov 15 20:52:09 2009 +0000
@@ -2159,7 +2159,7 @@
{
/* Make sure we're not allocating unreachable memory in this
function: */
- assert (ccl_prog == new_prog);
+ assert (EQ (ccl_prog, new_prog));
}
ccl_prog = new_prog;
More information about the XEmacs-Patches
mailing list