aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-02-14 14:38:19 +0000
committerJim Blandy1993-02-14 14:38:19 +0000
commit39acc701e677d5054548bc3e3479560e83f52215 (patch)
tree5510aeec4d8ce58ba9f8e08273f2cf6509ac0d2b /src
parentf14b1c68f4634d4c43d45f5a566d5bf7601b4efc (diff)
downloademacs-39acc701e677d5054548bc3e3479560e83f52215.tar.gz
emacs-39acc701e677d5054548bc3e3479560e83f52215.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.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/frame.c b/src/frame.c
index ca48c73105f..4515e0d8c91 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -80,7 +80,6 @@ Lisp_Object Qicon;
80Lisp_Object Qminibuffer; 80Lisp_Object Qminibuffer;
81Lisp_Object Qmodeline; 81Lisp_Object Qmodeline;
82Lisp_Object Qname; 82Lisp_Object Qname;
83Lisp_Object Qnone;
84Lisp_Object Qonly; 83Lisp_Object Qonly;
85Lisp_Object Qunsplittable; 84Lisp_Object Qunsplittable;
86Lisp_Object Qwidth; 85Lisp_Object Qwidth;
@@ -1110,7 +1109,7 @@ If FRAME is omitted, return information on the currently selected frame.")
1110 store_in_alist (&alist, Qwidth, make_number (f->width)); 1109 store_in_alist (&alist, Qwidth, make_number (f->width));
1111 store_in_alist (&alist, Qmodeline, (f->wants_modeline ? Qt : Qnil)); 1110 store_in_alist (&alist, Qmodeline, (f->wants_modeline ? Qt : Qnil));
1112 store_in_alist (&alist, Qminibuffer, 1111 store_in_alist (&alist, Qminibuffer,
1113 (! FRAME_HAS_MINIBUF_P (f) ? Qnone 1112 (! FRAME_HAS_MINIBUF_P (f) ? Qnil
1114 : (FRAME_MINIBUF_ONLY_P (f) ? Qonly 1113 : (FRAME_MINIBUF_ONLY_P (f) ? Qonly
1115 : FRAME_MINIBUF_WINDOW (f)))); 1114 : FRAME_MINIBUF_WINDOW (f))));
1116 store_in_alist (&alist, Qunsplittable, (f->no_split ? Qt : Qnil)); 1115 store_in_alist (&alist, Qunsplittable, (f->no_split ? Qt : Qnil));
@@ -1396,8 +1395,6 @@ syms_of_frame ()
1396 staticpro (&Qmodeline); 1395 staticpro (&Qmodeline);
1397 Qname = intern ("name"); 1396 Qname = intern ("name");
1398 staticpro (&Qname); 1397 staticpro (&Qname);
1399 Qnone = intern ("none");
1400 staticpro (&Qnone);
1401 Qonly = intern ("only"); 1398 Qonly = intern ("only");
1402 staticpro (&Qonly); 1399 staticpro (&Qonly);
1403 Qunsplittable = intern ("unsplittable"); 1400 Qunsplittable = intern ("unsplittable");