[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/frame.h
From: |
Kim F . Storm |
Subject: |
[Emacs-diffs] Changes to emacs/src/frame.h |
Date: |
Mon, 18 Jul 2005 16:59:25 -0400 |
Index: emacs/src/frame.h
diff -c emacs/src/frame.h:1.109 emacs/src/frame.h:1.110
*** emacs/src/frame.h:1.109 Mon Jul 4 16:06:31 2005
--- emacs/src/frame.h Mon Jul 18 20:59:25 2005
***************
*** 463,468 ****
--- 463,472 ----
realized. Reset to zero whenever the default face changes.
Used to see the difference between a font change and face change. */
unsigned default_face_done_p : 1;
+
+ /* Set to non-zero if this frame has already been hscrolled during
+ current redisplay. */
+ unsigned already_hscrolled_p : 1;
};
#ifdef MULTI_KBOARD
***************
*** 821,833 ****
Display-related Macros
***********************************************************************/
! /* Canonical y-unit on frame F.
This value currently equals the line height of the frame (which is
the height of the default font of F). */
#define FRAME_LINE_HEIGHT(F) ((F)->line_height)
! /* Canonical x-unit on frame F.
This value currently equals the average width of the default font of F. */
#define FRAME_COLUMN_WIDTH(F) ((F)->column_width)
--- 825,837 ----
Display-related Macros
***********************************************************************/
! /* Canonical y-unit on frame F.
This value currently equals the line height of the frame (which is
the height of the default font of F). */
#define FRAME_LINE_HEIGHT(F) ((F)->line_height)
! /* Canonical x-unit on frame F.
This value currently equals the average width of the default font of F. */
#define FRAME_COLUMN_WIDTH(F) ((F)->column_width)