emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/macterm.c,v


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/macterm.c,v
Date: Mon, 21 Aug 2006 08:53:17 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Kim F. Storm <kfstorm>  06/08/21 08:53:16

Index: macterm.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/macterm.c,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -b -r1.183 -r1.184
--- macterm.c   18 Jul 2006 08:12:24 -0000      1.183
+++ macterm.c   21 Aug 2006 08:53:16 -0000      1.184
@@ -3583,7 +3583,9 @@
       int background_width = s->background_width;
       int x = s->x, left_x = window_box_left_offset (s->w, TEXT_AREA);
 
-      if (x < left_x)
+      /* Don't draw into left margin, fringe or scrollbar area
+         except for header line and mode line.  */
+      if (x < left_x && !s->row->mode_line_p)
        {
          background_width -= left_x - x;
          x = left_x;




reply via email to

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