changeset 3881:1b6a5c6e012d

[xemacs-hg @ 2007-03-25 17:05:51 by stephent] Fix syntax for Lisp object comparison. <874po9w8m7.fsf@uwakimon.sk.tsukuba.ac.jp>
author stephent
date Sun, 25 Mar 2007 17:05:55 +0000
parents 4035bd42c75e
children c8f707f87817
files src/ChangeLog src/chartab.c
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sun Mar 25 15:57:34 2007 +0000
+++ b/src/ChangeLog	Sun Mar 25 17:05:55 2007 +0000
@@ -1,3 +1,7 @@
+2007-03-26  Stephen J. Turnbull  <stephen@xemacs.org>
+
+	* chartab.c (Fcopy_char_table): Use EQ, not ==.
+
 2007-03-24  Olivier Galibert  <galibert@pobox.com>
 
 	* chartab.c (Fcopy_char_table): Simplify the mirror table
--- a/src/chartab.c	Sun Mar 25 15:57:34 2007 +0000
+++ b/src/chartab.c	Sun Mar 25 17:05:55 2007 +0000
@@ -698,7 +698,7 @@
 
 #endif /* MULE */
 
-  if (ct->mirror_table != Qnil)
+  if (!EQ (ct->mirror_table, Qnil))
     {
       ctnew->mirror_table = Fmake_char_table (Qgeneric);
       set_char_table_default (ctnew->mirror_table, make_int (Sword));