changeset 42723:112393bdb5f9

(USAGE2): Add the new full-screen arguments. (standard_args): Ditto.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 13 Jan 2002 12:19:31 +0000
parents b4d0ec5062ad
children 6d3fb8c8283b
files src/emacs.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/emacs.c	Sun Jan 13 12:18:29 2002 +0000
+++ b/src/emacs.c	Sun Jan 13 12:19:31 2002 +0000
@@ -267,6 +267,9 @@
 --display, -d DISPLAY		use X server DISPLAY\n\
 --font, -fn FONT		default font; must be fixed-width\n\
 --foreground-color, -fg COLOR	window foreground color\n\
+--fullscreen, -fs	        make first frame fullscreen\n\
+--fullwidth, -fw	        make the first frame wide as the screen\n\
+--fullheight, -fh	        make the first frame high as the screen\n\
 --geometry, -g GEOMETRY		window geometry\n\
 --iconic			start Emacs in iconified state\n\
 --icon-type, -i			use picture of gnu for Emacs icon\n\
@@ -1660,6 +1663,9 @@
   { "-cr", "--cursor-color", 10, 1 },
   { "-fn", "--font", 10, 1 },
   { "-font", 0, 10, 1 },
+  { "-fs", "--fullscreen", 10, 0 },
+  { "-fw", "--fullwidth", 10, 0 },
+  { "-fh", "--fullheight", 10, 0 },
   { "-g", "--geometry", 10, 1 },
   { "-geometry", 0, 10, 1 },
   { "-T", "--title", 10, 1 },