# HG changeset patch # User Eli Zaretskii # Date 1010924371 0 # Node ID 112393bdb5f94c2fe697018f15cb09f64db21417 # Parent b4d0ec5062ad18b6cdf87c293ddb6eff38137985 (USAGE2): Add the new full-screen arguments. (standard_args): Ditto. diff -r b4d0ec5062ad -r 112393bdb5f9 src/emacs.c --- 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 },