aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-17 01:51:57 +0000
committerKarl Heuer1995-01-17 01:51:57 +0000
commit1262267aa86f72ec8e6c1aa841ff87981f27d080 (patch)
treec39f8842a8ee4f4eca4b968165a25f9be7c6ef53 /src
parent9a6b6f9276ea994819946a5b1b24776d9f60c889 (diff)
downloademacs-1262267aa86f72ec8e6c1aa841ff87981f27d080.tar.gz
emacs-1262267aa86f72ec8e6c1aa841ff87981f27d080.zip
(struct window): New member column_number_displayed.
Diffstat (limited to 'src')
-rw-r--r--src/window.h5
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
4This file is part of GNU Emacs. 4This 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. */