comparison src/emacs.c @ 60399:e8bfc9ca45c2

(USAGE1): Replace Info node name "command arguments" with "emacs invocation". (USAGE3): Fix usage of `--color=MODE' which actually doesn't allow arguments `--color' and `MODE' to be separated by space. Add --no-blinking-cursor, -nbc. (standard_args): Add -nbc, --no-blinking-cursor.
author Juri Linkov <juri@jurta.org>
date Sat, 05 Mar 2005 04:34:59 +0000
parents ceeef4169240
children a95b5f47474c 1f334cdd7020 29e773288013
comparison
equal deleted inserted replaced
60398:444829a91578 60399:e8bfc9ca45c2
248 \n\ 248 \n\
249 Run Emacs, the extensible, customizable, self-documenting real-time\n\ 249 Run Emacs, the extensible, customizable, self-documenting real-time\n\
250 display editor. The recommended way to start Emacs for normal editing\n\ 250 display editor. The recommended way to start Emacs for normal editing\n\
251 is with no options at all.\n\ 251 is with no options at all.\n\
252 \n\ 252 \n\
253 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\ 253 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\
254 read the main documentation for these command-line arguments.\n\ 254 read the main documentation for these command-line arguments.\n\
255 \n\ 255 \n\
256 Initialization options:\n\ 256 Initialization options:\n\
257 \n\ 257 \n\
258 --batch do not do interactive display; implies -q\n\ 258 --batch do not do interactive display; implies -q\n\
294 Display options:\n\ 294 Display options:\n\
295 \n\ 295 \n\
296 --background-color, -bg COLOR window background color\n\ 296 --background-color, -bg COLOR window background color\n\
297 --border-color, -bd COLOR main border color\n\ 297 --border-color, -bd COLOR main border color\n\
298 --border-width, -bw WIDTH width of main border\n\ 298 --border-width, -bw WIDTH width of main border\n\
299 --color MODE color mode for character terminals;\n\ 299 --color, --color=MODE color mode for character terminals;\n\
300 MODE defaults to `auto', and can also\n\ 300 MODE defaults to `auto', and can also\n\
301 be `never', `auto', `always',\n\ 301 be `never', `auto', `always',\n\
302 or a mode name like `ansi8'\n\ 302 or a mode name like `ansi8'\n\
303 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\ 303 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
304 --font, -fn FONT default font; must be fixed-width\n\ 304 --font, -fn FONT default font; must be fixed-width\n\
311 --iconic start Emacs in iconified state\n\ 311 --iconic start Emacs in iconified state\n\
312 --internal-border, -ib WIDTH width between text and main border\n\ 312 --internal-border, -ib WIDTH width between text and main border\n\
313 --line-spacing, -lsp PIXELS additional space to put between lines\n\ 313 --line-spacing, -lsp PIXELS additional space to put between lines\n\
314 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\ 314 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
315 --name NAME title for initial Emacs frame\n\ 315 --name NAME title for initial Emacs frame\n\
316 --no-blinking-cursor, -nbc disable blinking cursor\n\
316 --reverse-video, -r, -rv switch foreground and background\n\ 317 --reverse-video, -r, -rv switch foreground and background\n\
317 --title, -T TITLE title for initial Emacs frame\n\ 318 --title, -T TITLE title for initial Emacs frame\n\
318 --vertical-scroll-bars, -vb enable vertical scroll bars\n\ 319 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
319 --xrm XRESOURCES set additional X resources\n\ 320 --xrm XRESOURCES set additional X resources\n\
320 --help display this help and exit\n\ 321 --help display this help and exit\n\
1822 { "-bd", "--border-color", 10, 1 }, 1823 { "-bd", "--border-color", 10, 1 },
1823 { "-bw", "--border-width", 10, 1 }, 1824 { "-bw", "--border-width", 10, 1 },
1824 { "-ib", "--internal-border", 10, 1 }, 1825 { "-ib", "--internal-border", 10, 1 },
1825 { "-ms", "--mouse-color", 10, 1 }, 1826 { "-ms", "--mouse-color", 10, 1 },
1826 { "-cr", "--cursor-color", 10, 1 }, 1827 { "-cr", "--cursor-color", 10, 1 },
1828 { "-nbc", "--no-blinking-cursor", 10, 0 },
1827 { "-fn", "--font", 10, 1 }, 1829 { "-fn", "--font", 10, 1 },
1828 { "-font", 0, 10, 1 }, 1830 { "-font", 0, 10, 1 },
1829 { "-fs", "--fullscreen", 10, 0 }, 1831 { "-fs", "--fullscreen", 10, 0 },
1830 { "-fw", "--fullwidth", 10, 0 }, 1832 { "-fw", "--fullwidth", 10, 0 },
1831 { "-fh", "--fullheight", 10, 0 }, 1833 { "-fh", "--fullheight", 10, 0 },