Variable: special-display-frame-alist
special-display-frame-alist is a customizable variable defined in
window.el.gz.
This variable is obsolete since 24.3; use display-buffer-alist
instead.
Value
((height . 14)
(width . 80)
(unsplittable . t))
Documentation
Alist of parameters for special frames.
Special frames are used for buffers whose names are listed in
special-display-buffer-names and for buffers whose names match
one of the regular expressions in special-display-regexps.
This variable can be set in your init file, like this:
(setq special-display-frame-alist '((width . 80) (height . 20)))
These supersede the values given in default-frame-alist.
Probably introduced at or before Emacs version 19.24.
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defcustom special-display-frame-alist
'((height . 14) (width . 80) (unsplittable . t))
"Alist of parameters for special frames.
Special frames are used for buffers whose names are listed in
`special-display-buffer-names' and for buffers whose names match
one of the regular expressions in `special-display-regexps'.
This variable can be set in your init file, like this:
(setq special-display-frame-alist \\='((width . 80) (height . 20)))
These supersede the values given in `default-frame-alist'."
:type '(repeat (cons :format "%v"
(symbol :tag "Parameter")
(sexp :tag "Value")))
:group 'frames)