diff options
| author | Karl Heuer | 1995-01-17 01:51:57 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-01-17 01:51:57 +0000 |
| commit | 1262267aa86f72ec8e6c1aa841ff87981f27d080 (patch) | |
| tree | c39f8842a8ee4f4eca4b968165a25f9be7c6ef53 /src | |
| parent | 9a6b6f9276ea994819946a5b1b24776d9f60c889 (diff) | |
| download | emacs-1262267aa86f72ec8e6c1aa841ff87981f27d080.tar.gz emacs-1262267aa86f72ec8e6c1aa841ff87981f27d080.zip | |
(struct window): New member column_number_displayed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index 1eafa73c3ed..876e7f0b611 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Window definitions for GNU Emacs. | 1 | /* Window definitions for GNU Emacs. |
| 2 | Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 1986, 1993, 1995 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -170,6 +170,9 @@ struct window | |||
| 170 | /* If we have highlighted the region (or any part of it), | 170 | /* If we have highlighted the region (or any part of it), |
| 171 | this is the mark position that we used, as an integer. */ | 171 | this is the mark position that we used, as an integer. */ |
| 172 | Lisp_Object region_showing; | 172 | Lisp_Object region_showing; |
| 173 | /* The column number currently displayed in this window's mode line, | ||
| 174 | or nil if column numbers are not being displayed. */ | ||
| 175 | Lisp_Object column_number_displayed; | ||
| 173 | }; | 176 | }; |
| 174 | 177 | ||
| 175 | /* 1 if W is a minibuffer window. */ | 178 | /* 1 if W is a minibuffer window. */ |