aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-08-16 19:20:14 +0000
committerDave Love2000-08-16 19:20:14 +0000
commit751411540872b611e5e7138faba92bd8e48537f9 (patch)
tree34b28762b245efd0f1051ccc9d913273213a181e
parent329d7667c81baa9a718d102d892df9e96d4df908 (diff)
downloademacs-751411540872b611e5e7138faba92bd8e48537f9.tar.gz
emacs-751411540872b611e5e7138faba92bd8e48537f9.zip
(Environment): setenv.
(Resources X): lineSpacing, privateColormap, screenGamma, synchronous, visualClass.
-rw-r--r--man/cmdargs.texi47
1 files changed, 44 insertions, 3 deletions
diff --git a/man/cmdargs.texi b/man/cmdargs.texi
index b82649aa2f2..f6bdb34b896 100644
--- a/man/cmdargs.texi
+++ b/man/cmdargs.texi
@@ -282,6 +282,10 @@ When Emacs is set-up to use the X windowing system, it inherits the
282use of a large number of environment variables from the X library. See 282use of a large number of environment variables from the X library. See
283the X documentation for more information. 283the X documentation for more information.
284 284
285The command @kbd{M-x setenv} sets a variable in the environment of the
286Emacs process and its subprocesses and @kbd{M-x getenv} gets the value
287of a variable.
288
285@menu 289@menu
286* General Variables:: Environment variables that all versions of Emacs use. 290* General Variables:: Environment variables that all versions of Emacs use.
287* Misc Variables:: Certain system-specific variables. 291* Misc Variables:: Certain system-specific variables.
@@ -945,6 +949,11 @@ Name to display in the icon.
945@item @code{internalBorder} (class @code{BorderWidth}) 949@item @code{internalBorder} (class @code{BorderWidth})
946Width in pixels of the internal border. 950Width in pixels of the internal border.
947 951
952@item @code{lineSpacing} (class LineSpacing)
953@cindex line spacing
954@cindex leading
955Additional space (@dfn{leading}) between lines in pixels.
956
948@item @code{menuBar} (class @code{MenuBar}) 957@item @code{menuBar} (class @code{MenuBar})
949Give frames menu bars if @samp{on}; don't have menu bars if @samp{off}. 958Give frames menu bars if @samp{on}; don't have menu bars if @samp{off}.
950 959
@@ -958,21 +967,53 @@ Font name for menu pane titles, in non-toolkit versions of Emacs.
958@item @code{pointerColor} (class @code{Foreground}) 967@item @code{pointerColor} (class @code{Foreground})
959Color of the mouse cursor. 968Color of the mouse cursor.
960 969
970@item @code{privateColormap} (class @code{PrivateColormap})
971Specify that Emacs should use a private colormap if it is using the
972default visual, and that visual is of class PseudoColor. Recognized
973resource values are @samp{true} and @samp{on}.
974
961@item @code{reverseVideo} (class @code{ReverseVideo}) 975@item @code{reverseVideo} (class @code{ReverseVideo})
962Switch foreground and background default colors if @samp{on}, use colors as 976Switch foreground and background default colors if @samp{on}, use colors as
963specified if @samp{off}. 977specified if @samp{off}.
964 978
965@item @code{verticalScrollBars} (class @code{ScrollBars}) 979@item @code{screenGamma} (class @code{ScreenGamma})
966Give frames scroll bars if @samp{on}; don't have scroll bars if 980@cindex gamma correction
967@samp{off}. 981Specify the gamma correction for colors, equivalent to the frame
982parameter @code{screen-gamma}.
968 983
969@item @code{selectionFont} (class @code{Font}) 984@item @code{selectionFont} (class @code{Font})
970Font name for pop-up menu items, in non-toolkit versions of Emacs. (For 985Font name for pop-up menu items, in non-toolkit versions of Emacs. (For
971toolkit versions, see @ref{Lucid Resources}, also see @ref{Motif 986toolkit versions, see @ref{Lucid Resources}, also see @ref{Motif
972Resources}.) 987Resources}.)
973 988
989@item @code{synchronous} (class @code{Synchronous})
990Specify whether Emacs should run in synchronous mode if @samp{true}.
991Synchronous mode is useful for debugging X problems.
992
974@item @code{title} (class @code{Title}) 993@item @code{title} (class @code{Title})
975Name to display in the title bar of the initial Emacs frame. 994Name to display in the title bar of the initial Emacs frame.
995
996@item @code{verticalScrollBars} (class @code{ScrollBars})
997Give frames scroll bars if @samp{on}; don't have scroll bars if
998@samp{off}.
999
1000@item @code{visualClass} (class @code{VisualClass})
1001Specify the visual Emacs should use. The resource's value should be a
1002string of the form @samp{@var{CLASS}-@var{DEPTH}}, where @var{class} is
1003the name of the visual class, and @var{depth} is the requested color
1004depth as a decimal number. Valid visual class names are
1005@samp{TrueColor}, @samp{PseudoColor}, @samp{DirectColor},
1006@samp{StaticColor}, @samp{GrayScale} and @samp{StaticGray}.
1007
1008Visual class names specified as X resource are case-insensitive, i.e.@:
1009@samp{pseudocolor}, @samp{Pseudocolor} and @samp{PseudoColor} all have
1010the same meaning.
1011
1012@pindex xdpyinfo
1013The program @command{xdpyinfo} can be used to list the visual classes
1014supported on your display, and which depths they have. If
1015@code{visualClass} is not specified, Emacs uses the display's default
1016visual.
976@end table 1017@end table
977 1018
978 Here are resources for controlling the appearance of particular faces 1019 Here are resources for controlling the appearance of particular faces