aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-01-14 13:52:50 +0000
committerEli Zaretskii2002-01-14 13:52:50 +0000
commite15044ea829b86c6a909c604f301b7396b5f9328 (patch)
treec7540536e6a2fd751cf52b59a22f42348d5fe7e4
parente0c124ce537e185f44ae806cd3ff85c4ca124956 (diff)
downloademacs-e15044ea829b86c6a909c604f301b7396b5f9328.tar.gz
emacs-e15044ea829b86c6a909c604f301b7396b5f9328.zip
(Colors): Rename from "Colors X". All cross-references changed.
Document the new --color command-line argument.
-rw-r--r--man/cmdargs.texi34
1 files changed, 32 insertions, 2 deletions
diff --git a/man/cmdargs.texi b/man/cmdargs.texi
index 3e757d325a9..2da9304b843 100644
--- a/man/cmdargs.texi
+++ b/man/cmdargs.texi
@@ -62,7 +62,7 @@ the action arguments in the order they are written.
62* Environment:: Environment variables that Emacs uses. 62* Environment:: Environment variables that Emacs uses.
63* Display X:: Changing the default display and using remote login. 63* Display X:: Changing the default display and using remote login.
64* Font X:: Choosing a font for text, under X. 64* Font X:: Choosing a font for text, under X.
65* Colors X:: Choosing colors, under X. 65* Colors:: Choosing display colors.
66* Window Size X:: Start-up window size, under X. 66* Window Size X:: Start-up window size, under X.
67* Borders X:: Internal and external borders, under X. 67* Borders X:: Internal and external borders, under X.
68* Title X:: Specifying the initial frame's title. 68* Title X:: Specifying the initial frame's title.
@@ -707,7 +707,7 @@ displays the entire font @samp{6x13}.
707(@pxref{Frame Parameters}) or for a specific kind of text 707(@pxref{Frame Parameters}) or for a specific kind of text
708(@pxref{Faces}). 708(@pxref{Faces}).
709 709
710@node Colors X 710@node Colors
711@appendixsec Window Color Options 711@appendixsec Window Color Options
712@cindex color of window 712@cindex color of window
713@cindex text colors, from command line 713@cindex text colors, from command line
@@ -767,6 +767,36 @@ Specify the color for the mouse cursor when the mouse is in the Emacs window.
767@opindex --reverse-video 767@opindex --reverse-video
768@cindex reverse video, command-line argument 768@cindex reverse video, command-line argument
769Reverse video---swap the foreground and background colors. 769Reverse video---swap the foreground and background colors.
770@item --color=@var{mode}
771@opindex --color
772@cindex standard colors on a character terminal
773For a character terminal only, specify the mode of color support. The
774parameter @var{mode} can be one of the following:
775@table @samp
776@item never
777@itemx no
778Don't use colors even if the terminal's capabilities specify color
779support.
780@item default
781@itemx auto
782Same as when @option{--color} is not used at all: Emacs detects at
783startup whether the terminal supports colors, and if it does, turns on
784colored display.
785@item always
786@itemx yes
787@itemx ansi8
788Turn on the color support unconditionally, and use color commands
789specified by the ANSI escape sequences for the 8 standard colors.
790@item @var{num}
791Use color mode for @var{num} colors. If @var{num} is -1, turn off
792color support (equivalent to @samp{never}); if it is 0, use the
793default color support for this terminal (equivalent to @samp{auto});
794otherwise use an appropriate standard mode for @var{num} colors. If
795there is no mode that supports @var{num} colors, Emacs acts as if
796@var{num} were 0, i.e.@: it uses the terminal's default color support
797mode.
798@end table
799If @var{mode} is omitted, it defaults to @var{ansi8}.
770@end table 800@end table
771 801
772 For example, to use a coral mouse cursor and a slate blue text cursor, 802 For example, to use a coral mouse cursor and a slate blue text cursor,