(Ftranspose_regions): Yet another int/Lisp_Object mixup (YAILOM)

This commit is contained in:
Stefan Monnier 2007-05-07 15:25:47 +00:00
parent b70b6847b7
commit c10b281064
2 changed files with 7 additions and 4 deletions

View 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

View 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;
}