From 49ca717b682f82e34b1e6f6e751fc0ab6cbb110c Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sat, 5 Mar 2005 04:34:59 +0000 Subject: [PATCH] (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. --- src/emacs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/emacs.c b/src/emacs.c index eef51a5696..b2310c0a4c 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -250,7 +250,7 @@ Run Emacs, the extensible, customizable, self-documenting real-time\n\ display editor. The recommended way to start Emacs for normal editing\n\ is with no options at all.\n\ \n\ -Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\ +Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\ read the main documentation for these command-line arguments.\n\ \n\ Initialization options:\n\ @@ -296,7 +296,7 @@ Display options:\n\ --background-color, -bg COLOR window background color\n\ --border-color, -bd COLOR main border color\n\ --border-width, -bw WIDTH width of main border\n\ ---color MODE color mode for character terminals;\n\ +--color, --color=MODE color mode for character terminals;\n\ MODE defaults to `auto', and can also\n\ be `never', `auto', `always',\n\ or a mode name like `ansi8'\n\ @@ -313,6 +313,7 @@ Display options:\n\ --line-spacing, -lsp PIXELS additional space to put between lines\n\ --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\ --name NAME title for initial Emacs frame\n\ +--no-blinking-cursor, -nbc disable blinking cursor\n\ --reverse-video, -r, -rv switch foreground and background\n\ --title, -T TITLE title for initial Emacs frame\n\ --vertical-scroll-bars, -vb enable vertical scroll bars\n\ @@ -1824,6 +1825,7 @@ struct standard_args standard_args[] = { "-ib", "--internal-border", 10, 1 }, { "-ms", "--mouse-color", 10, 1 }, { "-cr", "--cursor-color", 10, 1 }, + { "-nbc", "--no-blinking-cursor", 10, 0 }, { "-fn", "--font", 10, 1 }, { "-font", 0, 10, 1 }, { "-fs", "--fullscreen", 10, 0 }, -- 2.20.1