emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109372: Fix fallout from revision 10


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109372: Fix fallout from revision 109354 that introduced WVAR.
Date: Wed, 01 Aug 2012 18:39:21 +0300
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109372
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Wed 2012-08-01 18:39:21 +0300
message:
  Fix fallout from revision 109354 that introduced WVAR.
  
   src/xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
modified:
  src/ChangeLog
  src/xdisp.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-08-01 15:19:51 +0000
+++ b/src/ChangeLog     2012-08-01 15:39:21 +0000
@@ -1,3 +1,7 @@
+2012-08-01  Eli Zaretskii  <address@hidden>
+
+       * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
+
 2012-08-01  Glenn Morris  <address@hidden>
 
        * s/msdos.h: Remove file.

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2012-08-01 06:23:24 +0000
+++ b/src/xdisp.c       2012-08-01 15:39:21 +0000
@@ -17834,8 +17834,8 @@
   else
     abort ();
 
-  IF_DEBUG (debug_end_pos = XFASTINT (w->window_end_pos);
-           debug_end_vpos = XFASTINT (w->window_end_vpos));
+  IF_DEBUG (debug_end_pos = XFASTINT (WVAR (w, window_end_pos));
+           debug_end_vpos = XFASTINT (WVAR (w, window_end_vpos)));
 
   /* Record that display has not been completed.  */
   WVAR (w, window_end_valid) = Qnil;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]