(debug): Call with-timeout-suspend and with-timeout-unsuspend.
[bpt/emacs.git] / man / cmdargs.texi
CommitLineData
6bf7aab6 1@c This is part of the Emacs manual.
48a36003
LK
2@c Copyright (C) 1985, 86, 87, 93, 94, 95, 97,
3@c 2001, 03, 04, 2005 Free Software Foundation, Inc.
6bf7aab6 4@c See file emacs.texi for copying conditions.
b4e112e7
RS
5@node Emacs Invocation, X Resources, GNU Free Documentation License, Top
6@appendix Command Line Arguments for Emacs Invocation
6bf7aab6
DL
7@cindex command line arguments
8@cindex arguments (command line)
9@cindex options (command line)
10@cindex switches (command line)
11@cindex startup (command line arguments)
2b4938c7 12@cindex invocation (command line arguments)
6bf7aab6
DL
13
14 GNU Emacs supports command line arguments to request various actions
15when invoking Emacs. These are for compatibility with other editors and
16for sophisticated activities. We don't recommend using them for
17ordinary editing.
18
e93b7ca6 19 Arguments starting with @samp{-} are @dfn{options}, and so is
d399c309 20@samp{+@var{linenum}}. All other arguments specify files to visit.
e93b7ca6
RS
21Emacs visits the specified files while it starts up. The last file
22name on your command line becomes the current buffer; the other files
23are also visited in other buffers. If there are two files, they are
24both displayed; otherwise the last file is displayed along with a
25buffer list that shows what other buffers there are. As with most
26programs, the special argument @samp{--} says that all subsequent
27arguments are file names, not options, even if they start with
28@samp{-}.
6bf7aab6
DL
29
30 Emacs command options can specify many things, such as the size and
31position of the X window Emacs uses, its colors, and so on. A few
32options support advanced usage, such as running Lisp functions on files
33in batch mode. The sections of this chapter describe the available
34options, arranged according to their purpose.
35
36 There are two ways of writing options: the short forms that start with
37a single @samp{-}, and the long forms that start with @samp{--}. For
38example, @samp{-d} is a short form and @samp{--display} is the
39corresponding long form.
40
41 The long forms with @samp{--} are easier to remember, but longer to
42type. However, you don't have to spell out the whole option name; any
43unambiguous abbreviation is enough. When a long option takes an
44argument, you can use either a space or an equal sign to separate the
45option name and the argument. Thus, you can write either
46@samp{--display sugar-bombs:0.0} or @samp{--display=sugar-bombs:0.0}.
47We recommend an equal sign because it makes the relationship clearer,
48and the tables below always show an equal sign.
49
50@cindex initial options (command line)
51@cindex action options (command line)
b77b6b5c 52@vindex command-line-args
6bf7aab6
DL
53 Most options specify how to initialize Emacs, or set parameters for
54the Emacs session. We call them @dfn{initial options}. A few options
55specify things to do: for example, load libraries, call functions, or
0ec1f115 56terminate Emacs. These are called @dfn{action options}. These and file
6bf7aab6 57names together are called @dfn{action arguments}. Emacs processes all
b77b6b5c
EZ
58the action arguments in the order they are written. The @file{.emacs} file
59can access the values of the action arguments as the elements of a list in
60the variable @code{command-line-args}.
61
62
6bf7aab6
DL
63
64@menu
b77b6b5c
EZ
65* Action Arguments:: Arguments to visit files, load libraries,
66 and call functions.
6bf7aab6
DL
67* Initial Options:: Arguments that take effect while starting Emacs.
68* Command Example:: Examples of using command line arguments.
b77b6b5c 69* Resume Arguments:: Specifying arguments when you resume a running Emacs.
6bf7aab6 70* Environment:: Environment variables that Emacs uses.
e428626a 71* Display X:: Changing the default display and using remote login.
b77b6b5c
EZ
72* Font X:: Choosing a font for text, under X.
73* Colors:: Choosing display colors.
e428626a 74* Window Size X:: Start-up window size, under X.
b77b6b5c 75* Borders X:: Internal and external borders, under X.
e428626a
RS
76* Title X:: Specifying the initial frame's title.
77* Icons X:: Choosing what sort of icon to use, under X.
b77b6b5c 78* Misc X:: Other display options.
6bf7aab6
DL
79@end menu
80
81@node Action Arguments
82@appendixsec Action Arguments
83
84 Here is a table of the action arguments and options:
85
86@table @samp
87@item @var{file}
a8575fe5 88@opindex --file
ec22060b 89@itemx --file=@var{file}
b77b6b5c
EZ
90@opindex --find-file
91@itemx --find-file=@var{file}
92@opindex --visit
93@itemx --visit=@var{file}
a8575fe5 94@cindex visiting files, command-line argument
6da55907 95@vindex inhibit-startup-buffer-menu
6bf7aab6 96Visit @var{file} using @code{find-file}. @xref{Visiting}.
6da55907
RS
97If you visit several files at startup in this way, Emacs
98also displays a Buffer Menu buffer to show you what files it
99has visited. You can inhibit that by setting @code{inhibit-startup-buffer-menu} to @code{t}.
6bf7aab6
DL
100
101@item +@var{linenum} @var{file}
a8575fe5 102@opindex +@var{linenum}
6bf7aab6
DL
103Visit @var{file} using @code{find-file}, then go to line number
104@var{linenum} in it.
105
660872b6 106@item +@var{linenum}:@var{columnnum} @var{file}
660872b6 107Visit @var{file} using @code{find-file}, then go to line number
0ec1f115 108@var{linenum} and put point at column number @var{columnnum}.
660872b6 109
6bf7aab6
DL
110@need 3000
111@item -l @var{file}
a8575fe5 112@opindex -l
6bf7aab6 113@itemx --load=@var{file}
a8575fe5
EZ
114@opindex --load
115@cindex loading Lisp libraries, command-line argument
6bf7aab6 116Load a Lisp library named @var{file} with the function @code{load}.
e93b7ca6
RS
117@xref{Lisp Libraries}. If @var{file} is not an absolute file name,
118the library can be found either in the current directory, or in the
119Emacs library search path as specified with @env{EMACSLOADPATH}
120(@pxref{General Variables}).
6bf7aab6 121
227c36fb
RS
122@strong{Warning:} If previous command-line arguments have visited
123files, the current directory is the directory of the last file
124visited.
125
b77b6b5c
EZ
126@item -L @var{dir}
127@opindex -L
128@itemx --directory=@var{dir}
129@opindex --directory
130Add directory @var{dir} to the variable @code{load-path}.
131
6bf7aab6 132@item -f @var{function}
a8575fe5 133@opindex -f
6bf7aab6 134@itemx --funcall=@var{function}
a8575fe5
EZ
135@opindex --funcall
136@cindex call Lisp functions, command-line argument
e2f140c8
RS
137Call Lisp function @var{function}. If it is an interactive function
138(a command), it reads the arguments interactively just as if you had
139called the same function with a key sequence. Otherwise, it calls the
140function with no arguments.
6bf7aab6 141
ec22060b 142@item --eval=@var{expression}
a8575fe5 143@opindex --eval
ec22060b 144@itemx --execute=@var{expression}
a8575fe5
EZ
145@opindex --execute
146@cindex evaluate expression, command-line argument
6bf7aab6
DL
147Evaluate Lisp expression @var{expression}.
148
149@item --insert=@var{file}
a8575fe5
EZ
150@opindex --insert
151@cindex insert file contents, command-line argument
6bf7aab6
DL
152Insert the contents of @var{file} into the current buffer. This is like
153what @kbd{M-x insert-file} does. @xref{Misc File Ops}.
154
155@item --kill
a8575fe5 156@opindex --kill
6bf7aab6 157Exit from Emacs without asking for confirmation.
6bf7aab6 158
b77b6b5c
EZ
159@item --help
160@opindex --help
161Print a usage message listing all available options, then exit
162successfully.
163
164@item --version
165@opindex --version
166Print Emacs version, then exit successfully.
167@end table
6bf7aab6
DL
168
169@node Initial Options
170@appendixsec Initial Options
171
172 The initial options specify parameters for the Emacs session. This
173section describes the more general initial options; some other options
97878c08
EZ
174specifically related to the X Window System appear in the following
175sections.
6bf7aab6
DL
176
177 Some initial options affect the loading of init files. The normal
178actions of Emacs are to first load @file{site-start.el} if it exists,
179then your own init file @file{~/.emacs} if it exists, and finally
56366094
LK
180@file{default.el} if it exists. @xref{Init File}. Certain options
181prevent loading of some of these files or substitute other files for
182them.
6bf7aab6
DL
183
184@table @samp
185@item -t @var{device}
a8575fe5 186@opindex -t
6bf7aab6 187@itemx --terminal=@var{device}
a8575fe5
EZ
188@opindex --terminal
189@cindex device for Emacs terminal I/O
6bf7aab6 190Use @var{device} as the device for terminal input and output.
b77b6b5c 191@samp{--terminal} implies @samp{--no-window-system}.
6bf7aab6
DL
192
193@item -d @var{display}
a8575fe5 194@opindex -d
6bf7aab6 195@itemx --display=@var{display}
a8575fe5
EZ
196@opindex --display
197@cindex display for Emacs frame
6bf7aab6 198Use the X Window System and use the display named @var{display} to open
a8575fe5 199the initial Emacs frame. @xref{Display X}, for more details.
6bf7aab6
DL
200
201@item -nw
a8575fe5 202@opindex -nw
011185fb
PJ
203@itemx --no-window-system
204@opindex --no-window-system
a8575fe5 205@cindex disable window system
54e33bb3 206Don't communicate directly with the window system, disregarding the
17e9a80b
RS
207@env{DISPLAY} environment variable even if it is set. This means that
208Emacs uses the terminal from which it was launched for all its display
209and input.
6bf7aab6
DL
210
211@need 3000
212@cindex batch mode
213@item -batch
a8575fe5 214@opindex --batch
6bf7aab6 215@itemx --batch
4e4b7d76
RS
216Run Emacs in @dfn{batch mode}. Batch mode is used for running
217programs written in Emacs Lisp from shell scripts, makefiles, and so
218on. You should also use the @samp{-l} option or @samp{-f} option, to
219invoke a Lisp program to do batch processing.
220
221In batch mode, Emacs does not display the text being edited, and the
222standard terminal interrupt characters such as @kbd{C-z} and @kbd{C-c}
223continue to have their normal effect. The functions @code{prin1},
224@code{princ} and @code{print} output to @code{stdout} instead of the
225echo area, while @code{message} and error messages output to
226@code{stderr}. Functions that would normally read from the minibuffer
227take their input from @code{stdin} instead.
6bf7aab6 228
e93b7ca6
RS
229@samp{--batch} implies @samp{-q} (do not load an init file), but
230@file{site-start.el} is loaded nonetheless. It also causes Emacs to
231exit after processing all the command options. In addition, it
232disables auto-saving except in buffers for which it has been
233explicitly requested.
6bf7aab6 234
0a41ca77
RS
235@item --script @var{file}
236@opindex --script
b77b6b5c 237@cindex script mode
0a41ca77
RS
238Run Emacs in batch mode, like @samp{--batch}, and then read and
239execute the Lisp code in @var{file}.
240
241The normal use of this option is in executable script files that run
242Emacs. They can start with this text on the first line
243
244@example
245#!/usr/bin/emacs --script
246@end example
247
248@noindent
249which will invoke Emacs with @samp{--script} and supply the name of
250the script file as @var{file}. Emacs Lisp then treats @samp{#!} as a
251comment delimiter.
252
6bf7aab6 253@item -q
a8575fe5 254@opindex -q
6bf7aab6 255@itemx --no-init-file
a8575fe5 256@opindex --no-init-file
b77b6b5c 257@cindex bypassing init and @file{default.el} file
a8575fe5 258@cindex init file, not loading
3b703ce9 259@cindex @file{default.el} file, not loading
6bf7aab6 260Do not load your Emacs init file @file{~/.emacs}, or @file{default.el}
b77b6b5c
EZ
261either. Regardless of this switch, @file{site-start.el} is still loaded.
262When invoked like this, Emacs does not allow saving options
00e50428
EZ
263changed with the @kbd{M-x customize} command and its variants.
264@xref{Easy Customization}.
6bf7aab6
DL
265
266@item --no-site-file
a8575fe5 267@opindex --no-site-file
3b703ce9 268@cindex @file{site-start.el} file, not loading
6bf7aab6 269Do not load @file{site-start.el}. The options @samp{-q}, @samp{-u}
56366094
LK
270and @samp{--batch} have no effect on the loading of this file---this
271option and @samp{-Q} are the only options that block it.
6bf7aab6 272
c6064be8
KS
273@item -Q
274@opindex -Q
5b99c91c
RS
275@itemx --quick
276@opindex --quick
277Start emacs with minimum customizations. This is like using @samp{-q}
278and @samp{--no-site-file}, but also disables the startup screen.
c6064be8 279
f6a9d2d8
CW
280@item --no-splash
281@opindex --no-splash
908abdfd 282@vindex inhibit-startup-message
6da55907
RS
283Do not display a splash screen on startup; this is equivalent to
284setting the variable @code{inhibit-startup-message} to non-@code{nil}.
908abdfd 285
b77b6b5c
EZ
286@item --no-desktop
287@opindex --no-desktop
288Do not reload any saved desktop. @xref{Saving Emacs Sessions}.
289
6bf7aab6 290@item -u @var{user}
a8575fe5 291@opindex -u
6bf7aab6 292@itemx --user=@var{user}
a8575fe5
EZ
293@opindex --user
294@cindex load init file of another user
6bf7aab6
DL
295Load @var{user}'s Emacs init file @file{~@var{user}/.emacs} instead of
296your own.
297
298@item --debug-init
a8575fe5
EZ
299@opindex --debug-init
300@cindex errors in init file
6bf7aab6 301Enable the Emacs Lisp debugger for errors in the init file.
48a36003
LK
302@xref{Error Debugging,, Entering the Debugger on an Error, elisp, The
303GNU Emacs Lisp Reference Manual}.
6bf7aab6
DL
304
305@item --unibyte
a8575fe5 306@opindex --unibyte
b77b6b5c
EZ
307@itemx --no-multibyte
308@opindex --no-multibyte
56bfaffd 309@cindex unibyte operation, command-line argument
1a1b17bc 310Do almost everything with single-byte buffers and strings.
6bf7aab6 311All buffers and strings are unibyte unless you (or a Lisp program)
4b1ad19a
RS
312explicitly ask for a multibyte buffer or string. (Note that Emacs
313always loads Lisp files in multibyte mode, even if @samp{--unibyte} is
314specified; see @ref{Enabling Multibyte}.) Setting the environment
e93b7ca6
RS
315variable @env{EMACS_UNIBYTE} has the same effect
316(@pxref{General Variables}).
6bf7aab6
DL
317
318@item --multibyte
a8575fe5 319@opindex --multibyte
b77b6b5c
EZ
320@itemx --no-unibyte
321@opindex --no-unibyte
60a96371 322Inhibit the effect of @env{EMACS_UNIBYTE}, so that Emacs
6bf7aab6
DL
323uses multibyte characters by default, as usual.
324@end table
325
326@node Command Example
327@appendixsec Command Argument Example
328
329 Here is an example of using Emacs with arguments and options. It
330assumes you have a Lisp program file called @file{hack-c.el} which, when
331loaded, performs some useful operation on the current buffer, expected
332to be a C program.
333
334@example
e93b7ca6 335emacs --batch foo.c -l hack-c -f save-buffer >& log
6bf7aab6
DL
336@end example
337
338@noindent
339This says to visit @file{foo.c}, load @file{hack-c.el} (which makes
340changes in the visited file), save @file{foo.c} (note that
341@code{save-buffer} is the function that @kbd{C-x C-s} is bound to), and
b77b6b5c 342then exit back to the shell (because of @samp{--batch}). @samp{--batch}
6bf7aab6
DL
343also guarantees there will be no problem redirecting output to
344@file{log}, because Emacs will not assume that it has a display terminal
345to work with.
346
347@node Resume Arguments
348@appendixsec Resuming Emacs with Arguments
349
350 You can specify action arguments for Emacs when you resume it after
351a suspension. To prepare for this, put the following code in your
352@file{.emacs} file (@pxref{Hooks}):
353
515d3b4b 354@c `resume-suspend-hook' is correct. It is the name of a function.
6bf7aab6
DL
355@example
356(add-hook 'suspend-hook 'resume-suspend-hook)
357(add-hook 'suspend-resume-hook 'resume-process-args)
358@end example
359
360 As further preparation, you must execute the shell script
515d3b4b
RS
361@file{emacs.csh} (if you use csh as your shell) or @file{emacs.bash}
362(if you use bash as your shell). These scripts define an alias named
6bf7aab6 363@code{edit}, which will resume Emacs giving it new command line
515d3b4b
RS
364arguments such as files to visit. The scripts are found in the
365@file{etc} subdirectory of the Emacs distribution.
6bf7aab6
DL
366
367 Only action arguments work properly when you resume Emacs. Initial
368arguments are not recognized---it's too late to execute them anyway.
369
370 Note that resuming Emacs (with or without arguments) must be done from
371within the shell that is the parent of the Emacs job. This is why
372@code{edit} is an alias rather than a program or a shell script. It is
373not possible to implement a resumption command that could be run from
1a1b17bc
EZ
374other subjobs of the shell; there is no way to define a command that could
375be made the value of @env{EDITOR}, for example. Therefore, this feature
6bf7aab6
DL
376does not take the place of the Emacs Server feature (@pxref{Emacs
377Server}).
378
379 The aliases use the Emacs Server feature if you appear to have a
380server Emacs running. However, they cannot determine this with complete
381accuracy. They may think that a server is still running when in
382actuality you have killed that Emacs, because the file
515d3b4b 383@file{/tmp/esrv@dots{}} still exists. If this happens, find that
6bf7aab6
DL
384file and delete it.
385
386@node Environment
387@appendixsec Environment Variables
388@cindex environment variables
389
4b1ad19a
RS
390 The @dfn{environment} is a feature of the operating system; it
391consists of a collection of variables with names and values. Each
392variable is called an @dfn{environment variable}; environment variable
393names are case-sensitive, and it is conventional to use upper case
394letters only. The values are all text strings.
6bf7aab6 395
4b1ad19a
RS
396 What makes the environment useful is that subprocesses inherit the
397environment automatically from their parent process. This means you
398can set up an environment variable in your login shell, and all the
399programs you run (including Emacs) will automatically see it.
400Subprocesses of Emacs (such as shells, compilers, and version-control
401software) inherit the environment from Emacs, too.
402
403@findex setenv
404@findex getenv
405 Inside Emacs, the command @kbd{M-x getenv} gets the value of an
406environment variable. @kbd{M-x setenv} sets a variable in the Emacs
26f17e6a
RS
407environment. (Environment variable substitutions with @samp{$} work
408in the value just as in file names; see @ref{File Names with $}.)
409
410 The way to set environment variables outside of Emacs depends on the
411operating system, and especially the shell that you are using. For
412example, here's how to set the environment variable @env{ORGANIZATION}
413to @samp{not very much} using Bash:
6bf7aab6
DL
414
415@example
416export ORGANIZATION="not very much"
417@end example
418
419@noindent
420and here's how to do it in csh or tcsh:
421
422@example
423setenv ORGANIZATION "not very much"
424@end example
425
26f17e6a
RS
426 When Emacs is using the X Window System, various environment
427variables that control X work for Emacs as well. See the X
428documentation for more information.
6bf7aab6
DL
429
430@menu
431* General Variables:: Environment variables that all versions of Emacs use.
432* Misc Variables:: Certain system-specific variables.
afcca90b 433* MS-Windows Registry:: An alternative to the environment on MS-Windows.
6bf7aab6
DL
434@end menu
435
436@node General Variables
437@appendixsubsec General Variables
438
4b1ad19a
RS
439 Here is an alphabetical list of specific environment variables that
440have special meanings in Emacs, giving the name of each variable and
441its meaning. Most of these variables are also used by some other
442programs. Emacs does not require any of these environment variables
443to be set, but it uses their values if they are set.
444
60a96371 445@table @env
f51e949c 446@item CDPATH
6bf7aab6
DL
447Used by the @code{cd} command to search for the directory you specify,
448when you specify a relative directory name.
6bf7aab6 449@item EMACS_UNIBYTE
56bfaffd 450@cindex unibyte operation, environment variable
4b1ad19a
RS
451Defining this environment variable with a nonempty value directs Emacs
452to do almost everything with single-byte buffers and strings. It is
453equivalent to using the @samp{--unibyte} command-line option on each
454invocation. @xref{Initial Options}.
6bf7aab6 455@item EMACSDATA
4b1ad19a
RS
456Directory for the architecture-independent files that come with Emacs.
457This is used to initialize the Lisp variable @code{data-directory}.
18a349f5 458@item EMACSDOC
4b1ad19a
RS
459Directory for the documentation string file,
460@file{DOC-@var{emacsversion}}. This is used to initialize the Lisp
b389557a 461variable @code{doc-directory}.
6bf7aab6 462@item EMACSLOADPATH
5d9b65e0 463A colon-separated list of directories@footnote{
54102d63 464Here and below, whenever we say ``colon-separated list of directories,''
5d9b65e0
EZ
465it pertains to Unix and GNU/Linux systems. On MS-DOS and MS-Windows,
466the directories are separated by semi-colons instead, since DOS/Windows
467file names might include a colon after a drive letter.}
468to search for Emacs Lisp files---used to initialize @code{load-path}.
6bf7aab6 469@item EMACSPATH
4b1ad19a
RS
470A colon-separated list of directories to search for executable
471files---used to initialize @code{exec-path}.
6bf7aab6 472@item ESHELL
60a96371 473Used for shell-mode to override the @env{SHELL} environment variable.
6bf7aab6
DL
474@item HISTFILE
475The name of the file that shell commands are saved in between logins.
ec22060b
EZ
476This variable defaults to @file{~/.bash_history} if you use Bash, to
477@file{~/.sh_history} if you use ksh, and to @file{~/.history}
478otherwise.
6bf7aab6
DL
479@item HOME
480The location of the user's files in the directory tree; used for
481expansion of file names starting with a tilde (@file{~}). On MS-DOS, it
482defaults to the directory from which Emacs was started, with @samp{/bin}
71d0aa0c 483removed from the end if it was present. On Windows, the default value
afcca90b 484of @env{HOME} is @file{C:/}, the root directory of drive @file{C:}.
6bf7aab6
DL
485@item HOSTNAME
486The name of the machine that Emacs is running on.
177c0ea7 487@item INCPATH
6bf7aab6
DL
488A colon-separated list of directories. Used by the @code{complete} package
489to search for files.
490@item INFOPATH
b389557a 491A colon-separated list of directories in which to search for Info files.
fbc164de 492@item LC_ALL
9c6251b6 493@itemx LC_COLLATE
6bf7aab6 494@itemx LC_CTYPE
9c6251b6
EZ
495@itemx LC_MESSAGES
496@itemx LC_MONETARY
497@itemx LC_NUMERIC
498@itemx LC_TIME
fbc164de 499@itemx LANG
9c6251b6
EZ
500The user's preferred locale. The locale has six categories, specified
501by the environment variables @env{LC_COLLATE} for sorting,
502@env{LC_CTYPE} for character encoding, @env{LC_MESSAGES} for system
503messages, @env{LC_MONETARY} for monetary formats, @env{LC_NUMERIC} for
504numbers, and @env{LC_TIME} for dates and times. If one of these
505variables is not set, the category defaults to the value of the
506@env{LANG} environment variable, or to the default @samp{C} locale if
507@env{LANG} is not set. But if @env{LC_ALL} is specified, it overrides
508the settings of all the other locale environment variables.
509
afcca90b
JR
510On MS-Windows, if @env{LANG} is not already set in the environment
511when Emacs starts, Emacs sets it based on the system-wide default
512language, which you can set in the @samp{Regional Settings} Control Panel
513on some versions of MS-Windows.
514
515The value of the @env{LC_CTYPE} category is
4b1ad19a 516matched against entries in @code{locale-language-names},
fbc164de 517@code{locale-charset-language-names}, and
4b1ad19a
RS
518@code{locale-preferred-coding-systems}, to select a default language
519environment and coding system. @xref{Language Environments}.
6bf7aab6 520@item LOGNAME
60a96371 521The user's login name. See also @env{USER}.
6bf7aab6
DL
522@item MAIL
523The name of the user's system mail inbox.
6bf7aab6 524@item MH
4b1ad19a 525Name of setup file for the mh system. (The default is @file{~/.mh_profile}.)
6bf7aab6
DL
526@item NAME
527The real-world name of the user.
528@item NNTPSERVER
5937ea41 529The name of the news server. Used by the mh and Gnus packages.
6bf7aab6
DL
530@item ORGANIZATION
531The name of the organization to which you belong. Used for setting the
5937ea41 532`Organization:' header in your posts from the Gnus package.
6bf7aab6 533@item PATH
5d9b65e0
EZ
534A colon-separated list of directories in which executables reside. This
535is used to initialize the Emacs Lisp variable @code{exec-path}.
6bf7aab6
DL
536@item PWD
537If set, this should be the default directory when Emacs was started.
538@item REPLYTO
539If set, this specifies an initial value for the variable
540@code{mail-default-reply-to}. @xref{Mail Headers}.
541@item SAVEDIR
542The name of a directory in which news articles are saved by default.
5937ea41 543Used by the Gnus package.
6bf7aab6
DL
544@item SHELL
545The name of an interpreter used to parse and execute programs run from
546inside Emacs.
46af94d9
SJ
547@item SMTPSERVER
548The name of the outgoing mail server. Used by the SMTP library
333c5fc5 549(@pxref{Top,,Sending mail via SMTP,smtpmail}).
afcca90b 550@cindex background mode, on @command{xterm}
6bf7aab6 551@item TERM
0ec1f115 552The type of the terminal that Emacs is using. This variable must be
6bf7aab6
DL
553set unless Emacs is run in batch mode. On MS-DOS, it defaults to
554@samp{internal}, which specifies a built-in terminal emulation that
b370b3b0 555handles the machine's own display. If the value of @env{TERM} indicates
afcca90b 556that Emacs runs in non-windowed mode from @command{xterm} or a similar
b370b3b0
EZ
557terminal emulator, the background mode defaults to @samp{light}, and
558Emacs will choose colors that are appropriate for a light background.
6bf7aab6
DL
559@item TERMCAP
560The name of the termcap library file describing how to program the
60a96371 561terminal specified by the @env{TERM} variable. This defaults to
6bf7aab6
DL
562@file{/etc/termcap}.
563@item TMPDIR
564Used by the Emerge package as a prefix for temporary files.
565@item TZ
94c3309f 566This specifies the current time zone and possibly also daylight
afcca90b 567saving time information. On MS-DOS, if @env{TZ} is not set in the
94c3309f 568environment when Emacs starts, Emacs defines a default value as
9c3aede4 569appropriate for the country code returned by DOS. On MS-Windows, Emacs
afcca90b 570does not use @env{TZ} at all.
6bf7aab6 571@item USER
60a96371 572The user's login name. See also @env{LOGNAME}. On MS-DOS, this
6bf7aab6
DL
573defaults to @samp{root}.
574@item VERSION_CONTROL
575Used to initialize the @code{version-control} variable (@pxref{Backup
576Names}).
577@end table
578
579@node Misc Variables
580@appendixsubsec Miscellaneous Variables
581
582These variables are used only on particular configurations:
583
60a96371 584@table @env
6bf7aab6 585@item COMSPEC
ec22060b
EZ
586On MS-DOS and MS-Windows, the name of the command interpreter to use
587when invoking batch files and commands internal to the shell. On MS-DOS
588this is also used to make a default value for the @env{SHELL} environment
589variable.
6bf7aab6
DL
590
591@item NAME
60a96371 592On MS-DOS, this variable defaults to the value of the @env{USER}
6bf7aab6
DL
593variable.
594
595@item TEMP
596@itemx TMP
ec22060b
EZ
597On MS-DOS and MS-Windows, these specify the name of the directory for
598storing temporary files in.
6bf7aab6
DL
599
600@item EMACSTEST
601On MS-DOS, this specifies a file to use to log the operation of the
602internal terminal emulator. This feature is useful for submitting bug
603reports.
604
605@item EMACSCOLORS
9c3aede4
RS
606On MS-DOS, this specifies the screen colors. It is useful to set them
607this way, since otherwise Emacs would display the default colors
608momentarily when it starts up.
609
610The value of this variable should be the two-character encoding of the
6bf7aab6
DL
611foreground (the first character) and the background (the second
612character) colors of the default face. Each character should be the
613hexadecimal code for the desired color on a standard PC text-mode
47d7776c 614display. For example, to get blue text on a light gray background,
ed50f966 615specify @samp{EMACSCOLORS=17}, since 1 is the code of the blue color and
47d7776c 6167 is the code of the light gray color.
6bf7aab6
DL
617
618The PC display usually supports only eight background colors. However,
619Emacs switches the DOS display to a mode where all 16 colors can be used
620for the background, so all four bits of the background color are
621actually used.
622
623@item WINDOW_GFX
624Used when initializing the Sun windows system.
afcca90b
JR
625
626@item PRELOAD_WINSOCK
627On MS-Windows, if you set this variable, Emacs will load and initialize
628the network library at startup, instead of waiting until the first
629time it is required.
630
631@item emacs_dir
632On MS-Windows, @env{emacs_dir} is a special environment variable, which
633indicates the full path of the directory in which Emacs is installed.
634If Emacs is installed in the standard directory structure, it
635calculates this value automatically. It is not much use setting this
636variable yourself unless your installation is non-standard, since
637unlike other environment variables, it will be overridden by Emacs at
638startup. When setting other environment variables, such as
639@env{EMACSLOADPATH}, you may find it useful to use @env{emacs_dir}
640rather than hard-coding an absolute path. This allows multiple
641versions of Emacs to share the same environment variable settings, and
642it allows you to move the Emacs installation directory, without
643changing any environment or registry settings.
6bf7aab6 644@end table
e428626a 645
afcca90b
JR
646@node MS-Windows Registry
647@appendixsubsec The MS-Windows System Registry
648@pindex addpm, MS-Windows installation program
649@cindex registry, setting environment variables and resources on MS-Windows
650
651On MS-Windows, the installation program @command{addpm.exe} adds values
652for @env{emacs_dir}, @env{EMACSLOADPATH}, @env{EMACSDATA},
653@env{EMACSPATH}, @env{EMACSDOC}, @env{SHELL} and @env{TERM} to the
654@file{HKEY_LOCAL_MACHINE} section of the system registry, under
655@file{/Software/GNU/Emacs}. It does this because there is no standard
656place to set environment variables across different versions of
657Windows. Running @command{addpm.exe} is no longer strictly
658necessary in recent versions of Emacs, but if you are upgrading from
659an older version, running @command{addpm.exe} ensures that you do not have
660older registry entries from a previous installation, which may not be
661compatible with the latest version of Emacs.
662
663When Emacs starts, as well as checking the environment, it also checks
664the System Registry for those variables and for @env{HOME}, @env{LANG}
665and @env{PRELOAD_WINSOCK}.
666
667To determine the value of those variables, Emacs goes through the
668following procedure. First, the environment is checked. If the
669variable is not found there, Emacs looks for registry keys by that
670name under @file{/Software/GNU/Emacs}; first in the
671@file{HKEY_CURRENT_USER} section of the registry, and if not found
672there, in the @file{HKEY_LOCAL_MACHINE} section. Finally, if Emacs
673still cannot determine the values, compiled-in defaults are used.
674
675In addition to the environment variables above, you can also add many
676of the settings which on X belong in the @file{.Xdefaults} file
677(@pxref{X Resources}) to the @file{/Software/GNU/Emacs} registry key.
678Settings you add to the @file{HKEY_LOCAL_MACHINE} section will affect
679all users of the machine. Settings you add to the
680@file{HKEY_CURRENT_USER} section will only affect you, and will
681override machine wide settings.
682
e428626a 683@node Display X
177c0ea7 684@appendixsec Specifying the Display Name
e428626a
RS
685@cindex display name (X Window System)
686@cindex @env{DISPLAY} environment variable
687
688 The environment variable @env{DISPLAY} tells all X clients, including
689Emacs, where to display their windows. Its value is set by default
690in ordinary circumstances, when you start an X server and run jobs
691locally. Occasionally you may need to specify the display yourself; for
692example, if you do a remote login and want to run a client program
693remotely, displaying on your local screen.
694
695 With Emacs, the main reason people change the default display is to
696let them log into another system, run Emacs on that system, but have the
697window displayed at their local terminal. You might need to log in
698to another system because the files you want to edit are there, or
699because the Emacs executable file you want to run is there.
700
701 The syntax of the @env{DISPLAY} environment variable is
702@samp{@var{host}:@var{display}.@var{screen}}, where @var{host} is the
703host name of the X Window System server machine, @var{display} is an
704arbitrarily-assigned number that distinguishes your server (X terminal)
705from other servers on the same machine, and @var{screen} is a
706rarely-used field that allows an X server to control multiple terminal
707screens. The period and the @var{screen} field are optional. If
708included, @var{screen} is usually zero.
709
710 For example, if your host is named @samp{glasperle} and your server is
711the first (or perhaps the only) server listed in the configuration, your
712@env{DISPLAY} is @samp{glasperle:0.0}.
713
714 You can specify the display name explicitly when you run Emacs, either
715by changing the @env{DISPLAY} variable, or with the option @samp{-d
716@var{display}} or @samp{--display=@var{display}}. Here is an example:
717
718@smallexample
719emacs --display=glasperle:0 &
720@end smallexample
721
722 You can inhibit the direct use of the window system and GUI with the
76dd3692 723@samp{-nw} option. It tells Emacs to display using ordinary @acronym{ASCII} on
e428626a
RS
724its controlling terminal. This is also an initial option.
725
726 Sometimes, security arrangements prevent a program on a remote system
727from displaying on your local system. In this case, trying to run Emacs
728produces messages like this:
729
730@smallexample
731Xlib: connection to "glasperle:0.0" refused by server
732@end smallexample
733
734@noindent
afcca90b 735You might be able to overcome this problem by using the @command{xhost}
e428626a
RS
736command on the local system to give permission for access from your
737remote machine.
738
739@node Font X
740@appendixsec Font Specification Options
741@cindex font name (X Window System)
742
31572e29
LT
743 By default, Emacs displays text in a twelve point Courier font (when
744using X). You can specify a different font on your command line
745through the option @samp{-fn @var{name}} (or @samp{--font}, which is
746an alias for @samp{-fn}).
e428626a
RS
747
748@table @samp
749@item -fn @var{name}
750@opindex -fn
751@itemx --font=@var{name}
752@opindex --font
753@cindex specify default font from the command line
754Use font @var{name} as the default font.
755@end table
756
31572e29
LT
757 Under X, each font has a long name which consists of fourteen words
758or numbers, separated by dashes. Some fonts also have shorter
759nicknames. For instance, @samp{9x15} is such a nickname. This font
760makes each character nine pixels wide and fifteen pixels high. You
761can use either kind of name. Case is insignificant in both kinds.
762You can use wildcard patterns for the font name; then Emacs lets X
763choose one of the fonts that match the pattern. The wildcard
764character @samp{*} matches any sequence of characters (including none)
765and @samp{?} matches any single character. However, matching is
766implementation-dependent, and can be inaccurate when wildcards match
767dashes in a long name. For reliable results, supply all 14 dashes and
768use wildcards only within a field. Here is an example, which happens
769to specify the font whose nickname is @samp{6x13}:
e428626a
RS
770
771@smallexample
eca274b1
RS
772emacs -fn \
773 "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" &
e428626a
RS
774@end smallexample
775
776@noindent
777You can also specify the font in your @file{.Xdefaults} file:
778
779@smallexample
780emacs.font: -misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1
31572e29
LT
781@end smallexample
782
783 Note that if you use a wildcard pattern on the command line, you
784need to enclose it in single or double quotes, to prevent the shell
785from accidentally expanding it into a list of file names. On the
786other hand, you should not quote the name in the @file{.Xdefaults}
787file.
788
789The default font used by Emacs (under X) is:
790
791@smallexample
792-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1
e428626a
RS
793@end smallexample
794
795 A long font name has the following form:
796
797@smallexample
798-@var{maker}-@var{family}-@var{weight}-@var{slant}-@var{widthtype}-@var{style}@dots{}
31572e29 799@dots{}-@var{pixels}-@var{height}-@var{horiz}-@var{vert}-@var{spacing}-@var{width}-@var{registry}-@var{encoding}
e428626a
RS
800@end smallexample
801
802@table @var
803@item maker
804This is the name of the font manufacturer.
805@item family
806This is the name of the font family---for example, @samp{courier}.
807@item weight
808This is normally @samp{bold}, @samp{medium} or @samp{light}. Other
809words may appear here in some font names.
810@item slant
811This is @samp{r} (roman), @samp{i} (italic), @samp{o} (oblique),
812@samp{ri} (reverse italic), or @samp{ot} (other).
813@item widthtype
814This is normally @samp{condensed}, @samp{extended}, @samp{semicondensed}
815or @samp{normal}. Other words may appear here in some font names.
816@item style
817This is an optional additional style name. Usually it is empty---most
818long font names have two hyphens in a row at this point.
819@item pixels
820This is the font height, in pixels.
821@item height
822This is the font height on the screen, measured in tenths of a printer's
823point---approximately 1/720 of an inch. In other words, it is the point
824size of the font, times ten. For a given vertical resolution,
825@var{height} and @var{pixels} are proportional; therefore, it is common
826to specify just one of them and use @samp{*} for the other.
827@item horiz
828This is the horizontal resolution, in pixels per inch, of the screen for
829which the font is intended.
830@item vert
831This is the vertical resolution, in pixels per inch, of the screen for
832which the font is intended. Normally the resolution of the fonts on
833your system is the right value for your screen; therefore, you normally
834specify @samp{*} for this and @var{horiz}.
835@item spacing
836This is @samp{m} (monospace), @samp{p} (proportional) or @samp{c}
837(character cell).
838@item width
839This is the average character width, in pixels, multiplied by ten.
31572e29
LT
840@item registry
841@itemx encoding
842These together make up the X font character set that the font depicts.
843(X font character sets are not the same as Emacs charsets, but they
844are solutions for the same problem.) You can use the
845@command{xfontsel} program to check which choices you have. However,
846normally you should use @samp{iso8859} for @var{registry} and @samp{1}
847for @var{encoding}.
e428626a
RS
848@end table
849
850@cindex listing system fonts
851 You will probably want to use a fixed-width default font---that is,
852a font in which all characters have the same width. Any font with
853@samp{m} or @samp{c} in the @var{spacing} field of the long name is a
afcca90b 854fixed-width font. Here's how to use the @command{xlsfonts} program to
e428626a
RS
855list all the fixed-width fonts available on your system:
856
857@example
858xlsfonts -fn '*x*' | egrep "^[0-9]+x[0-9]+"
859xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-m*'
860xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-c*'
861@end example
862
863@noindent
afcca90b 864To see what a particular font looks like, use the @command{xfd} command.
e428626a
RS
865For example:
866
867@example
868xfd -fn 6x13
869@end example
870
871@noindent
872displays the entire font @samp{6x13}.
873
874 While running Emacs, you can set the font of the current frame
875(@pxref{Frame Parameters}) or for a specific kind of text
876(@pxref{Faces}).
877
e15044ea 878@node Colors
e428626a
RS
879@appendixsec Window Color Options
880@cindex color of window
881@cindex text colors, from command line
882
883@findex list-colors-display
884@cindex available colors
885 On a color display, you can specify which color to use for various
886parts of the Emacs display. To find out what colors are available on
887your system, type @kbd{M-x list-colors-display}, or press
888@kbd{C-Mouse-2} and select @samp{Display Colors} from the pop-up menu.
75f97d20
EZ
889(A particular window system might support many more colors, but the
890list displayed by @code{list-colors-display} shows their portable
891subset that can be safely used on any display supported by Emacs.)
e428626a
RS
892If you do not specify colors, on windowed displays the default for the
893background is white and the default for all other colors is black. On a
894monochrome display, the foreground is black, the background is white,
895and the border is gray if the display supports that. On terminals, the
896background is usually black and the foreground is white.
897
898 Here is a list of the command-line options for specifying colors:
899
900@table @samp
901@item -fg @var{color}
902@opindex -fg
903@itemx --foreground-color=@var{color}
904@opindex --foreground-color
905@cindex foreground color, command-line argument
906Specify the foreground color. @var{color} should be a standard color
907name, or a numeric specification of the color's red, green, and blue
908components as in @samp{#4682B4} or @samp{RGB:46/82/B4}.
909@item -bg @var{color}
910@opindex -bg
911@itemx --background-color=@var{color}
912@opindex --background-color
913@cindex background color, command-line argument
914Specify the background color.
915@item -bd @var{color}
916@opindex -bd
917@itemx --border-color=@var{color}
918@opindex --border-color
919@cindex border color, command-line argument
920Specify the color of the border of the X window.
921@item -cr @var{color}
922@opindex -cr
923@itemx --cursor-color=@var{color}
924@opindex --cursor-color
925@cindex cursor color, command-line argument
926Specify the color of the Emacs cursor which indicates where point is.
927@item -ms @var{color}
928@opindex -ms
929@itemx --mouse-color=@var{color}
930@opindex --mouse-color
931@cindex mouse pointer color, command-line argument
932Specify the color for the mouse cursor when the mouse is in the Emacs window.
933@item -r
934@opindex -r
935@itemx -rv
936@opindex -rv
937@itemx --reverse-video
938@opindex --reverse-video
939@cindex reverse video, command-line argument
940Reverse video---swap the foreground and background colors.
e15044ea
EZ
941@item --color=@var{mode}
942@opindex --color
943@cindex standard colors on a character terminal
944For a character terminal only, specify the mode of color support. The
945parameter @var{mode} can be one of the following:
946@table @samp
947@item never
948@itemx no
949Don't use colors even if the terminal's capabilities specify color
950support.
951@item default
952@itemx auto
953Same as when @option{--color} is not used at all: Emacs detects at
954startup whether the terminal supports colors, and if it does, turns on
955colored display.
956@item always
957@itemx yes
958@itemx ansi8
959Turn on the color support unconditionally, and use color commands
960specified by the ANSI escape sequences for the 8 standard colors.
961@item @var{num}
962Use color mode for @var{num} colors. If @var{num} is -1, turn off
963color support (equivalent to @samp{never}); if it is 0, use the
964default color support for this terminal (equivalent to @samp{auto});
75f97d20
EZ
965otherwise use an appropriate standard mode for @var{num} colors.
966Depending on your terminal's capabilities, Emacs might be able to turn
967on a color mode for 8, 16, 88, or 256 as the value of @var{num}. If
e15044ea
EZ
968there is no mode that supports @var{num} colors, Emacs acts as if
969@var{num} were 0, i.e.@: it uses the terminal's default color support
970mode.
971@end table
972If @var{mode} is omitted, it defaults to @var{ansi8}.
e428626a
RS
973@end table
974
975 For example, to use a coral mouse cursor and a slate blue text cursor,
976enter:
977
978@example
979emacs -ms coral -cr 'slate blue' &
980@end example
981
982 You can reverse the foreground and background colors through the
983@samp{-rv} option or with the X resource @samp{reverseVideo}.
984
985 The @samp{-fg}, @samp{-bg}, and @samp{-rv} options function on
986text-only terminals as well as on window systems.
987
988@node Window Size X
d7beb4c9 989@appendixsec Options for Window Size and Position
e428626a
RS
990@cindex geometry of Emacs window
991@cindex position and size of Emacs frame
992@cindex width and height of Emacs frame
d7beb4c9 993@cindex specifying fullscreen for Emacs frame
e428626a 994
d7beb4c9 995 Here is a list of the command-line options for specifying size and
177c0ea7 996position of the initial Emacs frame:
e428626a
RS
997
998@table @samp
999@item -g @var{width}x@var{height}@r{[@{}+-@r{@}}@var{xoffset}@r{@{}+-@r{@}}@var{yoffset}@r{]]}
1000@opindex -g
b77b6b5c
EZ
1001@itemx --geometry=@var{width}x@var{height}@r{[@{}+-@r{@}}@var{xoffset}@r{@{}+-@r{@}}@var{yoffset}@r{]]}
1002@opindex --geometry
1003@cindex geometry, command-line argument
26f17e6a 1004Specify the size @var{width} and @var{height} (measured in character
e428626a 1005columns and lines), and positions @var{xoffset} and @var{yoffset}
26f17e6a 1006(measured in pixels). This applies to all frames.
e428626a 1007
d7beb4c9
EZ
1008@item -fs
1009@opindex -fs
1010@itemx --fullscreen
1011@opindex --fullscreen
1012@cindex fullscreen, command-line argument
1013Specify that width and height shall be the size of the screen.
1014
1015@item -fh
1016@opindex -fh
1017@itemx --fullheight
1018@opindex --fullheight
1019@cindex fullheight, command-line argument
1020Specify that the height shall be the height of the screen.
1021
1022@item -fw
1023@opindex -fw
1024@itemx --fullwidth
1025@opindex --fullwidth
1026@cindex fullwidth, command-line argument
1027Specify that the width shall be the width of the screen.
e428626a
RS
1028@end table
1029
d7beb4c9 1030
e428626a 1031@noindent
d7beb4c9
EZ
1032In the @samp{--geometry} option, @code{@r{@{}+-@r{@}}} means either a plus
1033 sign or a minus sign. A plus
e428626a
RS
1034sign before @var{xoffset} means it is the distance from the left side of
1035the screen; a minus sign means it counts from the right side. A plus
1036sign before @var{yoffset} means it is the distance from the top of the
1037screen, and a minus sign there indicates the distance from the bottom.
1038The values @var{xoffset} and @var{yoffset} may themselves be positive or
1039negative, but that doesn't change their meaning, only their direction.
1040
afcca90b 1041 Emacs uses the same units as @command{xterm} does to interpret the geometry.
e428626a
RS
1042The @var{width} and @var{height} are measured in characters, so a large font
1043creates a larger frame than a small font. (If you specify a proportional
1044font, Emacs uses its maximum bounds width as the width unit.) The
1045@var{xoffset} and @var{yoffset} are measured in pixels.
1046
e428626a 1047 You do not have to specify all of the fields in the geometry
5e24bf12
RS
1048specification. If you omit both @var{xoffset} and @var{yoffset}, the
1049window manager decides where to put the Emacs frame, possibly by
1050letting you place it with the mouse. For example, @samp{164x55}
1051specifies a window 164 columns wide, enough for two ordinary width
1052windows side by side, and 55 lines tall.
e428626a
RS
1053
1054 The default width for Emacs is 80 characters and the default height is
105540 lines. You can omit either the width or the height or both. If
1056you start the geometry with an integer, Emacs interprets it as the
1057width. If you start with an @samp{x} followed by an integer, Emacs
1058interprets it as the height. Thus, @samp{81} specifies just the width;
1059@samp{x45} specifies just the height.
1060
1061 If you start with @samp{+} or @samp{-}, that introduces an offset,
1062which means both sizes are omitted. Thus, @samp{-3} specifies the
1063@var{xoffset} only. (If you give just one offset, it is always
1064@var{xoffset}.) @samp{+3-3} specifies both the @var{xoffset} and the
1065@var{yoffset}, placing the frame near the bottom left of the screen.
1066
1067 You can specify a default for any or all of the fields in
1068@file{.Xdefaults} file, and then override selected fields with a
1069@samp{--geometry} option.
1070
5e24bf12
RS
1071 Since the mode line and the echo area occupy the last 2 lines of the
1072frame, the height of the initial text window is 2 less than the height
1073specified in your geometry. In non-X-toolkit versions of Emacs, the
1074menu bar also takes one line of the specified number. But in the X
1075toolkit version, the menu bar is additional and does not count against
1076the specified height. The tool bar, if present, is also additional.
d7beb4c9 1077
5e24bf12
RS
1078 Enabling or disabling the menu bar or tool bar alters the amount of
1079space available for ordinary text. Therefore, if Emacs starts up with
1080a tool bar (which is the default), and handles the geometry
1081specification assuming there is a tool bar, and then your
1082@file{~/.emacs} file disables the tool bar, you will end up with a
1083frame geometry different from what you asked for. To get the intended
1084size with no tool bar, use an X resource to specify ``no tool bar''
b77b6b5c 1085(@pxref{Table of Resources}); then Emacs will already know there's no
5e24bf12
RS
1086tool bar when it processes the specified geometry.
1087
1088 When using one of @samp{--fullscreen}, @samp{--fullwidth} or
d7beb4c9
EZ
1089@samp{--fullheight} there may be some space around the frame
1090anyway. That is because Emacs rounds the sizes so they are an
1091even number of character heights and widths.
1092
1093 Some window managers have options that can make them ignore both
1094program-specified and user-specified positions (sawfish is one).
1095If these are set, Emacs fails to position the window correctly.
1096
e428626a
RS
1097@node Borders X
1098@appendixsec Internal and External Borders
1099@cindex borders (X Window System)
1100
1101 An Emacs frame has an internal border and an external border. The
1102internal border is an extra strip of the background color around the
1103text portion of the frame. Emacs itself draws the internal border.
1104The external border is added by the window manager outside the frame;
1105depending on the window manager you use, it may contain various boxes
1106you can click on to move or iconify the window.
1107
1108@table @samp
1109@item -ib @var{width}
1110@opindex -ib
1111@itemx --internal-border=@var{width}
1112@opindex --internal-border
b77b6b5c
EZ
1113@cindex internal border width, command-line argument
1114Specify @var{width} as the width of the internal border (between the text
1115and the main border), in pixels.
e428626a
RS
1116
1117@item -bw @var{width}
1118@opindex -bw
1119@itemx --border-width=@var{width}
1120@opindex --border-width
b77b6b5c 1121@cindex main border width, command-line argument
e428626a
RS
1122Specify @var{width} as the width of the main border, in pixels.
1123@end table
1124
1125 When you specify the size of the frame, that does not count the
1126borders. The frame's position is measured from the outside edge of the
1127external border.
1128
1129 Use the @samp{-ib @var{n}} option to specify an internal border
1130@var{n} pixels wide. The default is 1. Use @samp{-bw @var{n}} to
1131specify the width of the external border (though the window manager may
1132not pay attention to what you specify). The default width of the
1133external border is 2.
1134
1135@node Title X
1136@appendixsec Frame Titles
1137
1138 An Emacs frame may or may not have a specified title. The frame
1139title, if specified, appears in window decorations and icons as the
1140name of the frame. If an Emacs frame has no specified title, the
1141default title has the form @samp{@var{invocation-name}@@@var{machine}}
1142(if there is only one frame) or the selected window's buffer name (if
1143there is more than one frame).
1144
1145 You can specify a title for the initial Emacs frame with a command
1146line option:
1147
1148@table @samp
b77b6b5c 1149@item -T @var{title}
e428626a 1150@opindex -T
b77b6b5c
EZ
1151@itemx --title=@var{title}
1152@opindex --title
e428626a
RS
1153@cindex frame title, command-line argument
1154Specify @var{title} as the title for the initial Emacs frame.
1155@end table
1156
186e9bcc 1157 The @samp{--name} option (@pxref{Resources}) also specifies the title
e428626a
RS
1158for the initial Emacs frame.
1159
1160@node Icons X
1161@appendixsec Icons
1162@cindex icons (X Window System)
1163
1164 Most window managers allow the user to ``iconify'' a frame, removing
1165it from sight, and leaving a small, distinctive ``icon'' window in its
1166place. Clicking on the icon window makes the frame itself appear again.
1167If you have many clients running at once, you can avoid cluttering up
1168the screen by iconifying most of the clients.
1169
1170@table @samp
1171@item -i
1172@opindex -i
1173@itemx --icon-type
1174@opindex --icon-type
1175@cindex Emacs icon, a gnu
1176Use a picture of a gnu as the Emacs icon.
1177
1178@item -iconic
1179@opindex --iconic
1180@itemx --iconic
1181@cindex start iconified, command-line argument
1182Start Emacs in iconified state.
1183@end table
1184
1185 The @samp{-i} or @samp{--icon-type} option tells Emacs to use an icon
1186window containing a picture of the GNU gnu. If omitted, Emacs lets the
1187window manager choose what sort of icon to use---usually just a small
1188rectangle containing the frame's title.
1189
1190 The @samp{-iconic} option tells Emacs to begin running as an icon,
1191rather than showing a frame right away. In this situation, the icon
1192is the only indication that Emacs has started; the text frame doesn't
1193appear until you deiconify it.
ab5796a9 1194
b77b6b5c
EZ
1195@node Misc X
1196@appendixsec Other Display Options
1197
1198@table @samp
1199@item -hb
1200@opindex -hb
1201@itemx --horizontal-scroll-bars
1202@opindex --horizontal-scroll-bars
7c195b93
RS
1203@c @cindex horizontal scroll bars, command-line argument
1204Enable horizontal scroll bars. Since horizontal scroll bars
1205are not yet implemented, this actually does nothing.
b77b6b5c
EZ
1206
1207@item -vb
1208@opindex -vb
1209@itemx --vertical-scroll-bars
1210@opindex --vertical-scroll-bars
1211@cindex vertical scroll bars, command-line argument
1212Enable vertical scroll bars.
1213
1214@item -lsp @var{pixels}
1215@opindex -lsp
1216@itemx --line-spacing=@var{pixels}
1217@opindex --line-spacing
1218@cindex line spacing, command-line argument
1219Specify @var{pixels} as additional space to put between lines, in pixels.
2b4938c7
JL
1220
1221@item -nbc
1222@opindex -nbc
1223@itemx --no-blinking-cursor
1224@opindex --no-blinking-cursor
1225@cindex blinking cursor disable, command-line argument
1226Disable the blinking cursor on graphical terminals.
5b99c91c
RS
1227
1228@item -D
1229@opindex -D
1230@itemx --basic-display
1231@opindex --basic-display
1232Disable the menu-bar, the tool-bar, the scroll-bars, and tool tips,
1233and turn off the blinking cursor. This can be useful for making a
1234test case that simplifies debugging of display problems.
b77b6b5c
EZ
1235@end table
1236
1237 The @samp{--xrm} option (@pxref{Resources}) specifies additional
1238X resource values.
1239
ab5796a9
MB
1240@ignore
1241 arch-tag: fffecd9e-7329-4a51-a3cc-dd4a9889340e
1242@end ignore