aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2002-01-13 12:19:31 +0000
committerEli Zaretskii2002-01-13 12:19:31 +0000
commit944525308ed8c73b869fb7c21203abdd01566a48 (patch)
treec335d34d4c6f8d5d550b675a6e2111e66dea07c0 /src
parent4f1b1854ed1d2a11b8dd51497dbc80f7853432ed (diff)
downloademacs-944525308ed8c73b869fb7c21203abdd01566a48.tar.gz
emacs-944525308ed8c73b869fb7c21203abdd01566a48.zip
(USAGE2): Add the new full-screen arguments.
(standard_args): Ditto.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 826e00b7058..c38bb302a6e 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -267,6 +267,9 @@ Display options:\n\
267--display, -d DISPLAY use X server DISPLAY\n\ 267--display, -d DISPLAY use X server DISPLAY\n\
268--font, -fn FONT default font; must be fixed-width\n\ 268--font, -fn FONT default font; must be fixed-width\n\
269--foreground-color, -fg COLOR window foreground color\n\ 269--foreground-color, -fg COLOR window foreground color\n\
270--fullscreen, -fs make first frame fullscreen\n\
271--fullwidth, -fw make the first frame wide as the screen\n\
272--fullheight, -fh make the first frame high as the screen\n\
270--geometry, -g GEOMETRY window geometry\n\ 273--geometry, -g GEOMETRY window geometry\n\
271--iconic start Emacs in iconified state\n\ 274--iconic start Emacs in iconified state\n\
272--icon-type, -i use picture of gnu for Emacs icon\n\ 275--icon-type, -i use picture of gnu for Emacs icon\n\
@@ -1660,6 +1663,9 @@ struct standard_args standard_args[] =
1660 { "-cr", "--cursor-color", 10, 1 }, 1663 { "-cr", "--cursor-color", 10, 1 },
1661 { "-fn", "--font", 10, 1 }, 1664 { "-fn", "--font", 10, 1 },
1662 { "-font", 0, 10, 1 }, 1665 { "-font", 0, 10, 1 },
1666 { "-fs", "--fullscreen", 10, 0 },
1667 { "-fw", "--fullwidth", 10, 0 },
1668 { "-fh", "--fullheight", 10, 0 },
1663 { "-g", "--geometry", 10, 1 }, 1669 { "-g", "--geometry", 10, 1 },
1664 { "-geometry", 0, 10, 1 }, 1670 { "-geometry", 0, 10, 1 },
1665 { "-T", "--title", 10, 1 }, 1671 { "-T", "--title", 10, 1 },