CVS update by stephent xemacs/src ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Sun Mar 25 13:06:03 EDT 2007


  User: stephent
  Date: 07/03/25 19:06:03

  Modified:    xemacs/src ChangeLog chartab.c
Log:
Fix syntax for Lisp object comparison. <874po9w8m7.fsf at uwakimon.sk.tsukuba.ac.jp>

Revision  Changes    Path
1.1051    +4 -0      XEmacs/xemacs/src/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.1050
retrieving revision 1.1051
diff -u -p -r1.1050 -r1.1051
--- ChangeLog	2007/03/25 15:34:59	1.1050
+++ ChangeLog	2007/03/25 17:05:51	1.1051
@@ -1,3 +1,7 @@
+2007-03-26  Stephen J. Turnbull  <stephen at xemacs.org>
+
+	* chartab.c (Fcopy_char_table): Use EQ, not ==.
+
 2007-03-24  Olivier Galibert  <galibert at pobox.com>
 
 	* chartab.c (Fcopy_char_table): Simplify the mirror table



1.41      +1 -1      XEmacs/xemacs/src/chartab.c

Index: chartab.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/chartab.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -p -r1.40 -r1.41
--- chartab.c	2007/03/25 15:35:06	1.40
+++ chartab.c	2007/03/25 17:05:55	1.41
@@ -698,7 +698,7 @@ as CHAR-TABLE.  The values will not them
 
 #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));





More information about the XEmacs-CVS mailing list