CVS update by stephent xemacs/src ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Mon Apr 16 10:23:19 EDT 2007


  User: stephent
  Date: 07/04/16 16:23:19

  Modified:    xemacs/src ChangeLog redisplay-x.c
Log:
oops ... this is the intended commit. <871wikv1c5.fsf at uwakimon.sk.tsukuba.ac.jp>

Revision  Changes    Path
1.1055    +5 -0      XEmacs/xemacs/src/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.1054
retrieving revision 1.1055
diff -u -p -r1.1054 -r1.1055
--- ChangeLog	2007/04/14 16:10:53	1.1054
+++ ChangeLog	2007/04/16 14:22:39	1.1055
@@ -1,3 +1,8 @@
+2007-04-16  Stephen J. Turnbull  <stephen at xemacs.org>
+
+	* redisplay-x.c (separate_textual_runs_nomule): Oops.  We agreed
+	that memcpy didn't work, and used it anyway.  Fix it.
+
 2007-04-15  Stephen J. Turnbull  <stephen at xemacs.org>
 
 	* font-mgr.c: Update FSF copyrights.



1.48      +2 -1      XEmacs/xemacs/src/redisplay-x.c

Index: redisplay-x.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/redisplay-x.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -p -r1.47 -r1.48
--- redisplay-x.c	2007/04/05 02:27:11	1.47
+++ redisplay-x.c	2007/04/16 14:22:52	1.48
@@ -145,7 +145,8 @@ separate_textual_runs_nomule (unsigned c
   run_storage[0].dimension = 1;
   run_storage[0].charset = Qnil;
 
-  memcpy (text_storage, str, len);
+  while (len--)
+    *text_storage++ = *str++;
   return 1;
 }
 #endif





More information about the XEmacs-CVS mailing list