diff options
| author | Kim F. Storm | 2005-07-18 20:59:25 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-07-18 20:59:25 +0000 |
| commit | d3378f02fd3ed53fa1006da01fb6624235877b15 (patch) | |
| tree | 34eabbed161902029d81cbd45c87eb7a7c8c9774 /src | |
| parent | 2a85a754f58752c07cd61b783364a3ccc9573b2d (diff) | |
| download | emacs-d3378f02fd3ed53fa1006da01fb6624235877b15.tar.gz emacs-d3378f02fd3ed53fa1006da01fb6624235877b15.zip | |
(struct frame): New member already_hscrolled_p.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/frame.h b/src/frame.h index d70b38d3203..a2f5fc2fde5 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -463,6 +463,10 @@ struct frame | |||
| 463 | realized. Reset to zero whenever the default face changes. | 463 | realized. Reset to zero whenever the default face changes. |
| 464 | Used to see the difference between a font change and face change. */ | 464 | Used to see the difference between a font change and face change. */ |
| 465 | unsigned default_face_done_p : 1; | 465 | unsigned default_face_done_p : 1; |
| 466 | |||
| 467 | /* Set to non-zero if this frame has already been hscrolled during | ||
| 468 | current redisplay. */ | ||
| 469 | unsigned already_hscrolled_p : 1; | ||
| 466 | }; | 470 | }; |
| 467 | 471 | ||
| 468 | #ifdef MULTI_KBOARD | 472 | #ifdef MULTI_KBOARD |
| @@ -821,13 +825,13 @@ extern Lisp_Object selected_frame; | |||
| 821 | Display-related Macros | 825 | Display-related Macros |
| 822 | ***********************************************************************/ | 826 | ***********************************************************************/ |
| 823 | 827 | ||
| 824 | /* Canonical y-unit on frame F. | 828 | /* Canonical y-unit on frame F. |
| 825 | This value currently equals the line height of the frame (which is | 829 | This value currently equals the line height of the frame (which is |
| 826 | the height of the default font of F). */ | 830 | the height of the default font of F). */ |
| 827 | 831 | ||
| 828 | #define FRAME_LINE_HEIGHT(F) ((F)->line_height) | 832 | #define FRAME_LINE_HEIGHT(F) ((F)->line_height) |
| 829 | 833 | ||
| 830 | /* Canonical x-unit on frame F. | 834 | /* Canonical x-unit on frame F. |
| 831 | This value currently equals the average width of the default font of F. */ | 835 | This value currently equals the average width of the default font of F. */ |
| 832 | 836 | ||
| 833 | #define FRAME_COLUMN_WIDTH(F) ((F)->column_width) | 837 | #define FRAME_COLUMN_WIDTH(F) ((F)->column_width) |