(Ftranspose_regions): Yet another int/Lisp_Object mixup (YAILOM)
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 7 May 2007 15:25:47 +0000 (15:25 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 7 May 2007 15:25:47 +0000 (15:25 +0000)
src/ChangeLog
src/editfns.c

index 31115be..12d9262 100644 (file)
@@ -1,3 +1,7 @@
+2007-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object mixup (YAILOM)
+
 2007-05-06  Richard Stallman  <rms@gnu.org>
 
        * process.c: Undo May 3 change.
@@ -65,8 +69,8 @@
 
 2007-04-16  Chong Yidong  <cyd@stupidchicken.com>
 
-       * dispnew.c (adjust_frame_glyphs_for_frame_redisplay): Set
-       garbaged flag in presence of window margins.
+       * dispnew.c (adjust_frame_glyphs_for_frame_redisplay):
+       Set garbaged flag in presence of window margins.
        (showing_window_margins_p): New function.
 
        * xdisp.c (cursor_row_p): Only end row on newline if it's a
index 2ab852d..37498e3 100644 (file)
@@ -4393,8 +4393,7 @@ Transposing beyond buffer boundaries is an error.  */)
       fix_start_end_in_overlays (start1, end2);
     }
 
-  signal_after_change (XINT (start1), XINT (end2 - start1),
-                      XINT (end2 - start1));
+  signal_after_change (start1, end2 - start1, end2 - start1);
   return Qnil;
 }