From: Eli Zaretskii Date: Sun, 13 Jan 2002 11:47:08 +0000 (+0000) Subject: (command-line-x-option-alist): New options "-fs", X-Git-Tag: ttn-vms-21-2-B4~17175 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=188b6a5e07d0ff2b0cfc303eb945897c8f6fd886;p=emacs.git (command-line-x-option-alist): New options "-fs", "-fw", "-fh", "--fullscreen", "--fullwidth", and "--fullheight". --- diff --git a/lisp/startup.el b/lisp/startup.el index 75cbc15d07f..bc732deb8b5 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -196,6 +196,9 @@ This is normally copied from `default-directory' when Emacs starts.") ("-reverse-video" 0 x-handle-switch reverse t) ("-fn" 1 x-handle-switch font) ("-font" 1 x-handle-switch font) + ("-fs" 0 x-handle-initial-switch fullscreen fullboth) + ("-fw" 0 x-handle-initial-switch fullscreen fullwidth) + ("-fh" 0 x-handle-initial-switch fullscreen fullheight) ("-ib" 1 x-handle-numeric-switch internal-border-width) ("-g" 1 x-handle-geometry) ("-lsp" 1 x-handle-numeric-switch line-spacing) @@ -219,6 +222,9 @@ This is normally copied from `default-directory' when Emacs starts.") ("--title" 1 x-handle-switch title) ("--reverse-video" 0 x-handle-switch reverse t) ("--font" 1 x-handle-switch font) + ("--fullscreen" 0 x-handle-initial-switch fullscreen fullboth) + ("--fullwidth" 0 x-handle-initial-switch fullscreen fullwidth) + ("--fullheight" 0 x-handle-initial-switch fullscreen fullheight) ("--internal-border" 1 x-handle-numeric-switch internal-border-width) ("--geometry" 1 x-handle-geometry) ("--foreground-color" 1 x-handle-switch foreground-color)