Function: display-about-screen

display-about-screen is an interactive and byte-compiled function defined in startup.el.gz.

Signature

(display-about-screen)

Documentation

Display the *About GNU Emacs* buffer.

A fancy display is used on graphic displays, normal otherwise.

Key Bindings

Aliases

about-emacs

Source Code

;; Defined in /usr/src/emacs/lisp/startup.el.gz
(defun display-about-screen ()
  "Display the *About GNU Emacs* buffer.
A fancy display is used on graphic displays, normal otherwise."
  (interactive)
  (if (use-fancy-splash-screens-p)
      (fancy-about-screen)
    (normal-splash-screen nil)))