diff options
| author | Juanma Barranquero | 2008-06-04 20:52:12 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-06-04 20:52:12 +0000 |
| commit | e6841c3bc8523c54732046e6e86462f615a3b4ed (patch) | |
| tree | 6b22ef594031aadb6a9398daf1da8704cb01e065 /src/window.h | |
| parent | cfbb239560674ae303f3ed30d40ab85eef3c9656 (diff) | |
| download | emacs-e6841c3bc8523c54732046e6e86462f615a3b4ed.tar.gz emacs-e6841c3bc8523c54732046e6e86462f615a3b4ed.zip | |
(struct window): Add new member window_parameters.
Diffstat (limited to 'src/window.h')
| -rw-r--r-- | src/window.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/window.h b/src/window.h index 8246336609f..0b38c5c8696 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -224,10 +224,12 @@ struct window | |||
| 224 | proportionally. */ | 224 | proportionally. */ |
| 225 | Lisp_Object resize_proportionally; | 225 | Lisp_Object resize_proportionally; |
| 226 | 226 | ||
| 227 | /* Original window height and top before mini-window was | 227 | /* Original window height and top before mini-window was enlarged. */ |
| 228 | enlarged. */ | ||
| 229 | Lisp_Object orig_total_lines, orig_top_line; | 228 | Lisp_Object orig_total_lines, orig_top_line; |
| 230 | 229 | ||
| 230 | /* An alist with parameteres. */ | ||
| 231 | Lisp_Object window_parameters; | ||
| 232 | |||
| 231 | /* No Lisp data may follow below this point without changing | 233 | /* No Lisp data may follow below this point without changing |
| 232 | mark_object in alloc.c. The member current_matrix must be the | 234 | mark_object in alloc.c. The member current_matrix must be the |
| 233 | first non-Lisp member. */ | 235 | first non-Lisp member. */ |