Function: display-startup-screen
display-startup-screen is a byte-compiled function defined in
startup.el.gz.
Signature
(display-startup-screen &optional CONCISE)
Documentation
Display startup screen according to display.
A fancy display is used on graphic displays, normal otherwise.
If CONCISE is non-nil, display a concise version of the startup screen.
Aliases
Source Code
;; Defined in /usr/src/emacs/lisp/startup.el.gz
(defun display-startup-screen (&optional concise)
"Display startup screen according to display.
A fancy display is used on graphic displays, normal otherwise.
If CONCISE is non-nil, display a concise version of the startup
screen."
;; Prevent recursive calls from server-process-filter.
(if (not (get-buffer "*GNU Emacs*"))
(if (use-fancy-splash-screens-p)
(fancy-startup-screen concise)
(normal-splash-screen t concise))))