[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/window.c,v
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/src/window.c,v |
Date: |
Sat, 13 Oct 2007 12:46:50 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Eli Zaretskii <eliz> 07/10/13 12:46:50
Index: window.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/window.c,v
retrieving revision 1.594
retrieving revision 1.595
diff -u -b -r1.594 -r1.595
--- window.c 2 Oct 2007 21:55:26 -0000 1.594
+++ window.c 13 Oct 2007 12:46:49 -0000 1.595
@@ -799,7 +799,7 @@
if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
|| WINDOW_RIGHTMOST_P (w))
{
- if (!WINDOW_LEFTMOST_P (w) && abs (*x - x0) < grabbable_width)
+ if (!WINDOW_LEFTMOST_P (w) && eabs (*x - x0) < grabbable_width)
{
/* Convert X and Y to window relative coordinates.
Vertical border is at the left edge of window. */
@@ -810,7 +810,7 @@
}
else
{
- if (abs (*x - x1) < grabbable_width)
+ if (eabs (*x - x1) < grabbable_width)
{
/* Convert X and Y to window relative coordinates.
Vertical border is at the right edge of window. */
@@ -858,7 +858,7 @@
if (!w->pseudo_window_p
&& !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
&& !WINDOW_RIGHTMOST_P (w)
- && (abs (*x - right_x) < grabbable_width))
+ && (eabs (*x - right_x) < grabbable_width))
{
/* Convert X and Y to window relative coordinates.
Vertical border is at the right edge of window. */
@@ -5497,7 +5497,7 @@
{
int count = SPECPDL_INDEX ();
- xassert (abs (direction) == 1);
+ xassert (eabs (direction) == 1);
/* If selected window's buffer isn't current, make it current for
the moment. But don't screw up if window_scroll gets an error. */
- [Emacs-diffs] Changes to emacs/src/window.c,v, Stefan Monnier, 2007/10/02
- [Emacs-diffs] Changes to emacs/src/window.c,v, Stefan Monnier, 2007/10/02
- [Emacs-diffs] Changes to emacs/src/window.c,v, Stefan Monnier, 2007/10/02
- [Emacs-diffs] Changes to emacs/src/window.c,v,
Eli Zaretskii <=
- [Emacs-diffs] Changes to emacs/src/window.c,v, Stefan Monnier, 2007/10/16
- [Emacs-diffs] Changes to emacs/src/window.c,v, Martin Rudalics, 2007/10/26