diff options
| author | Jim Blandy | 1993-02-14 14:40:13 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-02-14 14:40:13 +0000 |
| commit | baaed68ea1dac89858969109bf62a3a22bf34195 (patch) | |
| tree | 49106d396d838eecf0cc9ab3b813f6431ef5661c | |
| parent | 1f40cad246221a6d2d1976dabf8d8a93f1914c87 (diff) | |
| download | emacs-baaed68ea1dac89858969109bf62a3a22bf34195.tar.gz emacs-baaed68ea1dac89858969109bf62a3a22bf34195.zip | |
* frame.c (Fframe_parameters): Report the `minibuffer' parameter of
minibufferless frames as nil, not `none'.
(Qnone): Remove declaration and initialization for this. It's not
needed anymore.
* xfns.c (Qnone): Add them here; we still accept "none" as a valid
value for the `minibuffer' parameter.
* xfns.c (x_frame_params): Remember that the parameters are called
"auto-raise" and "auto-lower", not "autoraise" and "autolower".
| -rw-r--r-- | src/xfns.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/xfns.c b/src/xfns.c index 5b9f7da731f..7cd3db197e2 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -239,6 +239,7 @@ Lisp_Object Qiconic_startup; | |||
| 239 | Lisp_Object Qinternal_border_width; | 239 | Lisp_Object Qinternal_border_width; |
| 240 | Lisp_Object Qleft; | 240 | Lisp_Object Qleft; |
| 241 | Lisp_Object Qmouse_color; | 241 | Lisp_Object Qmouse_color; |
| 242 | Lisp_Object Qnone; | ||
| 242 | Lisp_Object Qparent_id; | 243 | Lisp_Object Qparent_id; |
| 243 | Lisp_Object Qsuppress_icon; | 244 | Lisp_Object Qsuppress_icon; |
| 244 | Lisp_Object Qsuppress_initial_map; | 245 | Lisp_Object Qsuppress_initial_map; |
| @@ -249,7 +250,7 @@ Lisp_Object Qwindow_id; | |||
| 249 | Lisp_Object Qx_frame_parameter; | 250 | Lisp_Object Qx_frame_parameter; |
| 250 | 251 | ||
| 251 | /* The below are defined in frame.c. */ | 252 | /* The below are defined in frame.c. */ |
| 252 | extern Lisp_Object Qheight, Qminibuffer, Qname, Qnone, Qonly, Qwidth; | 253 | extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth; |
| 253 | extern Lisp_Object Qunsplittable; | 254 | extern Lisp_Object Qunsplittable; |
| 254 | 255 | ||
| 255 | extern Lisp_Object Vwindow_system_version; | 256 | extern Lisp_Object Vwindow_system_version; |
| @@ -343,8 +344,8 @@ static struct x_frame_parm_table x_frame_parms[] = | |||
| 343 | "border-width", x_set_border_width, | 344 | "border-width", x_set_border_width, |
| 344 | "internal-border-width", x_set_internal_border_width, | 345 | "internal-border-width", x_set_internal_border_width, |
| 345 | "name", x_explicitly_set_name, | 346 | "name", x_explicitly_set_name, |
| 346 | "autoraise", x_set_autoraise, | 347 | "auto-raise", x_set_autoraise, |
| 347 | "autolower", x_set_autolower, | 348 | "auto-lower", x_set_autolower, |
| 348 | "vertical-scrollbars", x_set_vertical_scrollbars, | 349 | "vertical-scrollbars", x_set_vertical_scrollbars, |
| 349 | }; | 350 | }; |
| 350 | 351 | ||
| @@ -3810,6 +3811,8 @@ syms_of_xfns () | |||
| 3810 | staticpro (&Qleft); | 3811 | staticpro (&Qleft); |
| 3811 | Qmouse_color = intern ("mouse-color"); | 3812 | Qmouse_color = intern ("mouse-color"); |
| 3812 | staticpro (&Qmouse_color); | 3813 | staticpro (&Qmouse_color); |
| 3814 | Qnone = intern ("none"); | ||
| 3815 | staticpro (&Qnone); | ||
| 3813 | Qparent_id = intern ("parent-id"); | 3816 | Qparent_id = intern ("parent-id"); |
| 3814 | staticpro (&Qparent_id); | 3817 | staticpro (&Qparent_id); |
| 3815 | Qsuppress_icon = intern ("suppress-icon"); | 3818 | Qsuppress_icon = intern ("suppress-icon"); |