diff src/xfns.c @ 1874:19cf50641d6c

* 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".
author Jim Blandy <jimb@redhat.com>
date Sun, 14 Feb 1993 14:40:13 +0000
parents 04fb1d3d6992
children 56dd1fbd33c2
line wrap: on
line diff
--- a/src/xfns.c	Sun Feb 14 14:39:45 1993 +0000
+++ b/src/xfns.c	Sun Feb 14 14:40:13 1993 +0000
@@ -239,6 +239,7 @@
 Lisp_Object Qinternal_border_width;
 Lisp_Object Qleft;
 Lisp_Object Qmouse_color;
+Lisp_Object Qnone;
 Lisp_Object Qparent_id;
 Lisp_Object Qsuppress_icon;
 Lisp_Object Qsuppress_initial_map;
@@ -249,7 +250,7 @@
 Lisp_Object Qx_frame_parameter;
 
 /* The below are defined in frame.c. */
-extern Lisp_Object Qheight, Qminibuffer, Qname, Qnone, Qonly, Qwidth;
+extern Lisp_Object Qheight, Qminibuffer, Qname, Qonly, Qwidth;
 extern Lisp_Object Qunsplittable;
 
 extern Lisp_Object Vwindow_system_version;
@@ -343,8 +344,8 @@
   "border-width", x_set_border_width,
   "internal-border-width", x_set_internal_border_width,
   "name", x_explicitly_set_name,
-  "autoraise", x_set_autoraise,
-  "autolower", x_set_autolower,
+  "auto-raise", x_set_autoraise,
+  "auto-lower", x_set_autolower,
   "vertical-scrollbars", x_set_vertical_scrollbars,
 };
 
@@ -3810,6 +3811,8 @@
   staticpro (&Qleft);
   Qmouse_color = intern ("mouse-color");
   staticpro (&Qmouse_color);
+  Qnone = intern ("none");
+  staticpro (&Qnone);
   Qparent_id = intern ("parent-id");
   staticpro (&Qparent_id);
   Qsuppress_icon = intern ("suppress-icon");