diff options
| author | Martin Rudalics | 2008-12-30 16:27:32 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2008-12-30 16:27:32 +0000 |
| commit | 28cd591f405dcf08b0e0be3cde52f4fd1a57893a (patch) | |
| tree | 777807272b77d5b5de4ff48b72be2c194e909c5c /src | |
| parent | 747ae2f2ae42eac1d79e9db37e4a457747d61d83 (diff) | |
| download | emacs-28cd591f405dcf08b0e0be3cde52f4fd1a57893a.tar.gz emacs-28cd591f405dcf08b0e0be3cde52f4fd1a57893a.zip | |
(Vemacs_iconified): Remove.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/frame.c | 5 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b75c384daa4..cba115c6104 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-12-30 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * frame.c (Vemacs_iconified): Remove. | ||
| 4 | |||
| 1 | 2008-12-30 Jason Rumney <jasonr@gnu.org> | 5 | 2008-12-30 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * frame.c (store_frame_param, x_get_arg): Enable newer code on | 7 | * frame.c (store_frame_param, x_get_arg): Enable newer code on |
diff --git a/src/frame.c b/src/frame.c index bff3d6d170b..badff9c66ef 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -193,7 +193,6 @@ set_menu_bar_lines (f, value, oldval) | |||
| 193 | } | 193 | } |
| 194 | } | 194 | } |
| 195 | 195 | ||
| 196 | Lisp_Object Vemacs_iconified; | ||
| 197 | Lisp_Object Vframe_list; | 196 | Lisp_Object Vframe_list; |
| 198 | 197 | ||
| 199 | extern Lisp_Object Vminibuffer_list; | 198 | extern Lisp_Object Vminibuffer_list; |
| @@ -4536,10 +4535,6 @@ Setting this variable does not affect existing frames, only new ones. */); | |||
| 4536 | DEFVAR_LISP ("terminal-frame", &Vterminal_frame, | 4535 | DEFVAR_LISP ("terminal-frame", &Vterminal_frame, |
| 4537 | doc: /* The initial frame-object, which represents Emacs's stdout. */); | 4536 | doc: /* The initial frame-object, which represents Emacs's stdout. */); |
| 4538 | 4537 | ||
| 4539 | DEFVAR_LISP ("emacs-iconified", &Vemacs_iconified, | ||
| 4540 | doc: /* Non-nil if all of Emacs is iconified and frame updates are not needed. */); | ||
| 4541 | Vemacs_iconified = Qnil; | ||
| 4542 | |||
| 4543 | DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function, | 4538 | DEFVAR_LISP ("mouse-position-function", &Vmouse_position_function, |
| 4544 | doc: /* If non-nil, function to transform normal value of `mouse-position'. | 4539 | doc: /* If non-nil, function to transform normal value of `mouse-position'. |
| 4545 | `mouse-position' calls this function, passing its usual return value as | 4540 | `mouse-position' calls this function, passing its usual return value as |