# HG changeset patch # User Jim Blandy # Date 729700699 0 # Node ID d90e9fecad48f4e0fc1a0714e4c9762c48394ede # Parent 30eb06b22ae4885cc0580dfb55355f0299139b24 * 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. diff -r 30eb06b22ae4 -r d90e9fecad48 src/frame.c --- a/src/frame.c Sun Feb 14 14:37:33 1993 +0000 +++ b/src/frame.c Sun Feb 14 14:38:19 1993 +0000 @@ -80,7 +80,6 @@ Lisp_Object Qminibuffer; Lisp_Object Qmodeline; Lisp_Object Qname; -Lisp_Object Qnone; Lisp_Object Qonly; Lisp_Object Qunsplittable; Lisp_Object Qwidth; @@ -1110,7 +1109,7 @@ store_in_alist (&alist, Qwidth, make_number (f->width)); store_in_alist (&alist, Qmodeline, (f->wants_modeline ? Qt : Qnil)); store_in_alist (&alist, Qminibuffer, - (! FRAME_HAS_MINIBUF_P (f) ? Qnone + (! FRAME_HAS_MINIBUF_P (f) ? Qnil : (FRAME_MINIBUF_ONLY_P (f) ? Qonly : FRAME_MINIBUF_WINDOW (f)))); store_in_alist (&alist, Qunsplittable, (f->no_split ? Qt : Qnil)); @@ -1396,8 +1395,6 @@ staticpro (&Qmodeline); Qname = intern ("name"); staticpro (&Qname); - Qnone = intern ("none"); - staticpro (&Qnone); Qonly = intern ("only"); staticpro (&Qonly); Qunsplittable = intern ("unsplittable");