Mercurial > emacs
changeset 1870:d90e9fecad48
* 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.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sun, 14 Feb 1993 14:38:19 +0000 |
parents | 30eb06b22ae4 |
children | 00bee181f7ed |
files | src/frame.c |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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");