diff options
| author | Jim Blandy | 1993-02-14 14:38:19 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-02-14 14:38:19 +0000 |
| commit | 39acc701e677d5054548bc3e3479560e83f52215 (patch) | |
| tree | 5510aeec4d8ce58ba9f8e08273f2cf6509ac0d2b /src | |
| parent | f14b1c68f4634d4c43d45f5a566d5bf7601b4efc (diff) | |
| download | emacs-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.c | 5 |
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; | |||
| 80 | Lisp_Object Qminibuffer; | 80 | Lisp_Object Qminibuffer; |
| 81 | Lisp_Object Qmodeline; | 81 | Lisp_Object Qmodeline; |
| 82 | Lisp_Object Qname; | 82 | Lisp_Object Qname; |
| 83 | Lisp_Object Qnone; | ||
| 84 | Lisp_Object Qonly; | 83 | Lisp_Object Qonly; |
| 85 | Lisp_Object Qunsplittable; | 84 | Lisp_Object Qunsplittable; |
| 86 | Lisp_Object Qwidth; | 85 | Lisp_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"); |