Checked emacs.texi
[bpt/emacs.git] / doc / emacs / cmdargs.texi
CommitLineData
8cf51b2c 1@c This is part of the Emacs manual.
acaf905b 2@c Copyright (C) 1985-1987, 1993-1995, 1997, 2001-2012
73b0cd50 3@c Free Software Foundation, Inc.
8cf51b2c
GM
4@c See file emacs.texi for copying conditions.
5@node Emacs Invocation, X Resources, GNU Free Documentation License, Top
6@appendix Command Line Arguments for Emacs Invocation
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)
12@cindex invocation (command line arguments)
13
63961e6a
CY
14 Emacs supports command line arguments to request various actions
15when invoking Emacs. These are for compatibility with other editors
16and for sophisticated activities. We don't recommend using them for
17ordinary editing (@xref{Emacs Server}, for a way to access an existing
18Emacs job from the command line).
8cf51b2c
GM
19
20 Arguments starting with @samp{-} are @dfn{options}, and so is
21@samp{+@var{linenum}}. All other arguments specify files to visit.
22Emacs visits the specified files while it starts up. The last file
63961e6a
CY
23specified on the command line becomes the current buffer; the other
24files are also visited in other buffers. As with most programs, the
25special argument @samp{--} says that all subsequent arguments are file
26names, not options, even if they start with @samp{-}.
8cf51b2c
GM
27
28 Emacs command options can specify many things, such as the size and
29position of the X window Emacs uses, its colors, and so on. A few
30options support advanced usage, such as running Lisp functions on files
31in batch mode. The sections of this chapter describe the available
32options, arranged according to their purpose.
33
34 There are two ways of writing options: the short forms that start with
35a single @samp{-}, and the long forms that start with @samp{--}. For
36example, @samp{-d} is a short form and @samp{--display} is the
37corresponding long form.
38
39 The long forms with @samp{--} are easier to remember, but longer to
40type. However, you don't have to spell out the whole option name; any
41unambiguous abbreviation is enough. When a long option takes an
42argument, you can use either a space or an equal sign to separate the
43option name and the argument. Thus, you can write either
44@samp{--display sugar-bombs:0.0} or @samp{--display=sugar-bombs:0.0}.
45We recommend an equal sign because it makes the relationship clearer,
46and the tables below always show an equal sign.
47
48@cindex initial options (command line)
49@cindex action options (command line)
50@vindex command-line-args
51 Most options specify how to initialize Emacs, or set parameters for
52the Emacs session. We call them @dfn{initial options}. A few options
63961e6a
CY
53specify things to do, such as loading libraries or calling Lisp
54functions. These are called @dfn{action options}. These and file
55names together are called @dfn{action arguments}. The action
56arguments are stored as a list of strings in the variable
57@code{command-line-args}. (Actually, when Emacs starts up,
58@code{command-line-args} contains all the arguments passed from the
59command line; during initialization, the initial arguments are removed
60from this list when they are processed, leaving only the action
61arguments.)
8cf51b2c
GM
62
63@menu
64* Action Arguments:: Arguments to visit files, load libraries,
65 and call functions.
66* Initial Options:: Arguments that take effect while starting Emacs.
67* Command Example:: Examples of using command line arguments.
8cf51b2c
GM
68* Environment:: Environment variables that Emacs uses.
69* Display X:: Changing the default display and using remote login.
70* Font X:: Choosing a font for text, under X.
8863a584 71* Colors X:: Choosing display colors.
8cf51b2c
GM
72* Window Size X:: Start-up window size, under X.
73* Borders X:: Internal and external borders, under X.
74* Title X:: Specifying the initial frame's title.
75* Icons X:: Choosing what sort of icon to use, under X.
76* Misc X:: Other display options.
77@end menu
78
79@node Action Arguments
80@appendixsec Action Arguments
81
63961e6a 82 Here is a table of action arguments:
8cf51b2c
GM
83
84@table @samp
85@item @var{file}
86@opindex --file
87@itemx --file=@var{file}
88@opindex --find-file
89@itemx --find-file=@var{file}
90@opindex --visit
91@itemx --visit=@var{file}
92@cindex visiting files, command-line argument
93@vindex inhibit-startup-buffer-menu
94Visit @var{file} using @code{find-file}. @xref{Visiting}.
63961e6a
CY
95
96When Emacs starts up, it displays the startup buffer in one window,
97and the buffer visiting @var{file} in another window
98(@pxref{Windows}). If you supply more than one file argument, the
99displayed file is the last one specified on the command line; the
100other files are visited but their buffers are not shown.
101
102If the startup buffer is disabled (@pxref{Entering Emacs}), then
103@var{file} is visited in a single window if one file argument was
104supplied; with two file arguments, Emacs displays the files in two
105different windows; with more than two file argument, Emacs displays
106the last file specified in one window, plus a Buffer Menu in a
107different window (@pxref{Several Buffers}). To inhibit using the
108Buffer Menu for this, change the variable
109@code{inhibit-startup-buffer-menu} to @code{t}.
8cf51b2c
GM
110
111@item +@var{linenum} @var{file}
112@opindex +@var{linenum}
113Visit @var{file} using @code{find-file}, then go to line number
114@var{linenum} in it.
115
116@item +@var{linenum}:@var{columnnum} @var{file}
117Visit @var{file} using @code{find-file}, then go to line number
118@var{linenum} and put point at column number @var{columnnum}.
119
8cf51b2c
GM
120@item -l @var{file}
121@opindex -l
122@itemx --load=@var{file}
123@opindex --load
124@cindex loading Lisp libraries, command-line argument
125Load a Lisp library named @var{file} with the function @code{load}.
a73a3461
CY
126If @var{file} is not an absolute file name, Emacs first looks for it
127in the current directory, then in the directories listed in
128@code{load-path} (@pxref{Lisp Libraries}).
8cf51b2c
GM
129
130@strong{Warning:} If previous command-line arguments have visited
131files, the current directory is the directory of the last file
132visited.
133
134@item -L @var{dir}
135@opindex -L
136@itemx --directory=@var{dir}
137@opindex --directory
138Add directory @var{dir} to the variable @code{load-path}.
139
140@item -f @var{function}
141@opindex -f
142@itemx --funcall=@var{function}
143@opindex --funcall
144@cindex call Lisp functions, command-line argument
145Call Lisp function @var{function}. If it is an interactive function
146(a command), it reads the arguments interactively just as if you had
147called the same function with a key sequence. Otherwise, it calls the
148function with no arguments.
149
150@item --eval=@var{expression}
151@opindex --eval
152@itemx --execute=@var{expression}
153@opindex --execute
154@cindex evaluate expression, command-line argument
155Evaluate Lisp expression @var{expression}.
156
157@item --insert=@var{file}
158@opindex --insert
159@cindex insert file contents, command-line argument
63961e6a
CY
160Insert the contents of @var{file} into the @samp{*scratch*} buffer
161(@pxref{Lisp Interaction}). This is like what @kbd{M-x insert-file}
162does (@pxref{Misc File Ops}).
8cf51b2c
GM
163
164@item --kill
165@opindex --kill
166Exit from Emacs without asking for confirmation.
167
168@item --help
169@opindex --help
170Print a usage message listing all available options, then exit
171successfully.
172
173@item --version
174@opindex --version
175Print Emacs version, then exit successfully.
176@end table
177
178@node Initial Options
179@appendixsec Initial Options
180
181 The initial options specify parameters for the Emacs session. This
182section describes the more general initial options; some other options
183specifically related to the X Window System appear in the following
184sections.
185
63961e6a 186 Some initial options affect the loading of the initialization file.
a73a3461
CY
187Normally, Emacs first loads @file{site-start.el} if it exists, then
188your own initialization file if it exists, and finally the default
189initialization file @file{default.el} if it exists (@pxref{Init
190File}). Certain options prevent loading of some of these files or
191substitute other files for them.
8cf51b2c
GM
192
193@table @samp
f63d0028
JD
194@item -chdir @var{directory}
195@opindex -chdir
196@itemx --chdir=@var{directory}
197@opindex --chdir
198@cindex change Emacs directory
199Change to @var{directory} before doing anything else. This is mainly used
200by session management in X so that Emacs starts in the same directory as it
201stopped. This makes desktop saving and restoring easier.
202
8cf51b2c
GM
203@item -t @var{device}
204@opindex -t
205@itemx --terminal=@var{device}
206@opindex --terminal
207@cindex device for Emacs terminal I/O
a73a3461
CY
208Use @var{device} as the device for terminal input and output. This
209option implies @samp{--no-window-system}.
8cf51b2c
GM
210
211@item -d @var{display}
212@opindex -d
213@itemx --display=@var{display}
214@opindex --display
215@cindex display for Emacs frame
216Use the X Window System and use the display named @var{display} to open
217the initial Emacs frame. @xref{Display X}, for more details.
218
219@item -nw
220@opindex -nw
221@itemx --no-window-system
222@opindex --no-window-system
223@cindex disable window system
224Don't communicate directly with the window system, disregarding the
225@env{DISPLAY} environment variable even if it is set. This means that
226Emacs uses the terminal from which it was launched for all its display
227and input.
228
8cf51b2c
GM
229@cindex batch mode
230@item -batch
231@opindex --batch
232@itemx --batch
233Run Emacs in @dfn{batch mode}. Batch mode is used for running
234programs written in Emacs Lisp from shell scripts, makefiles, and so
63961e6a
CY
235on. To invoke a Lisp program, use the @samp{-batch} option in
236conjunction with one or more of @samp{-l}, @samp{-f} or @samp{--eval}
237(@pxref{Action Arguments}). @xref{Command Example}, for an example.
8cf51b2c
GM
238
239In batch mode, Emacs does not display the text being edited, and the
240standard terminal interrupt characters such as @kbd{C-z} and @kbd{C-c}
63961e6a
CY
241have their usual effect. Emacs functions that normally print a
242message in the echo area will print to either the standard output
243stream (@code{stdout}) or the standard error stream (@code{stderr})
244instead. (To be precise, functions like @code{prin1}, @code{princ}
245and @code{print} print to @code{stdout}, while @code{message} and
246@code{error} print to @code{stderr}.) Functions that normally read
247keyboard input from the minibuffer take their input from the
248terminal's standard input stream (@code{stdin}) instead.
249
250@samp{--batch} implies @samp{-q} (do not load an initialization file),
251but @file{site-start.el} is loaded nonetheless. It also causes Emacs
252to exit after processing all the command options. In addition, it
a73a3461 253disables auto-saving except in buffers for which auto-saving is
8cf51b2c
GM
254explicitly requested.
255
256@item --script @var{file}
257@opindex --script
258@cindex script mode
259Run Emacs in batch mode, like @samp{--batch}, and then read and
260execute the Lisp code in @var{file}.
261
262The normal use of this option is in executable script files that run
263Emacs. They can start with this text on the first line
264
265@example
266#!/usr/bin/emacs --script
267@end example
268
269@noindent
270which will invoke Emacs with @samp{--script} and supply the name of
a73a3461
CY
271the script file as @var{file}. Emacs Lisp then treats the @samp{#!}
272on this first line as a comment delimiter.
8cf51b2c
GM
273
274@item -q
275@opindex -q
276@itemx --no-init-file
277@opindex --no-init-file
278@cindex bypassing init and @file{default.el} file
279@cindex init file, not loading
280@cindex @file{default.el} file, not loading
a73a3461
CY
281Do not load any initialization file (@pxref{Init File}). When Emacs
282is invoked with this option, the Customize facility does not allow
283options to be saved (@pxref{Easy Customization}). This option does
284not disable loading @file{site-start.el}.
8cf51b2c
GM
285
286@item --no-site-file
287@opindex --no-site-file
288@cindex @file{site-start.el} file, not loading
fdeb32ec
CY
289Do not load @file{site-start.el} (@pxref{Init File}). The @samp{-Q}
290option does this too, but other options like @samp{-q} do not.
291
292@item --no-site-lisp
293@opindex --no-site-lisp
294@cindex @file{site-start.el} file, not loading
295Do not include the @file{site-lisp} directories in @code{load-path}
296(@pxref{Init File}). The @samp{-Q} option does this too.
8cf51b2c 297
63961e6a
CY
298@item --no-splash
299@opindex --no-splash
300@vindex inhibit-startup-screen
301@cindex splash screen
302@cindex startup message
303Do not display a startup screen. You can also achieve this effect by
304setting the variable @code{inhibit-startup-screen} to non-@code{nil}
305in your initialization file (@pxref{Entering Emacs}).
306
8cf51b2c
GM
307@item -Q
308@opindex -Q
309@itemx --quick
310@opindex --quick
91ed7ea8 311Start emacs with minimum customizations, similar to using @samp{-q},
fdeb32ec
CY
312@samp{--no-site-file}, @samp{--no-site-lisp}, and @samp{--no-splash}
313together. This also stops Emacs from processing X resources by
314setting @code{inhibit-x-resources} to @code{t} (@pxref{Resources}).
8cf51b2c 315
eab2ee89
DN
316@item -daemon
317@opindex -daemon
318@itemx --daemon
319@opindex --daemon
63961e6a
CY
320Start Emacs as a daemon---after Emacs starts up, it starts the Emacs
321server and disconnects from the terminal without opening any frames.
322You can then use the @command{emacsclient} command to connect to Emacs
323for editing. @xref{Emacs Server}, for information about using Emacs
324as a daemon.
eab2ee89 325
4ff029f6 326@item -daemon=@var{SERVER-NAME}
63961e6a
CY
327Start emacs in background as a daemon, and use @var{SERVER-NAME} as
328the server name.
8cf51b2c
GM
329
330@item --no-desktop
331@opindex --no-desktop
332Do not reload any saved desktop. @xref{Saving Emacs Sessions}.
333
334@item -u @var{user}
335@opindex -u
336@itemx --user=@var{user}
337@opindex --user
338@cindex load init file of another user
63961e6a
CY
339Load @var{user}'s initialization file instead of your
340own@footnote{This option has no effect on MS-Windows.}.
8cf51b2c
GM
341
342@item --debug-init
343@opindex --debug-init
344@cindex errors in init file
345Enable the Emacs Lisp debugger for errors in the init file.
346@xref{Error Debugging,, Entering the Debugger on an Error, elisp, The
347GNU Emacs Lisp Reference Manual}.
76a87a4d 348@end table
8cf51b2c 349
8cf51b2c
GM
350@node Command Example
351@appendixsec Command Argument Example
352
353 Here is an example of using Emacs with arguments and options. It
354assumes you have a Lisp program file called @file{hack-c.el} which, when
355loaded, performs some useful operation on the current buffer, expected
356to be a C program.
357
358@example
359emacs --batch foo.c -l hack-c -f save-buffer >& log
360@end example
361
362@noindent
363This says to visit @file{foo.c}, load @file{hack-c.el} (which makes
364changes in the visited file), save @file{foo.c} (note that
365@code{save-buffer} is the function that @kbd{C-x C-s} is bound to), and
366then exit back to the shell (because of @samp{--batch}). @samp{--batch}
367also guarantees there will be no problem redirecting output to
368@file{log}, because Emacs will not assume that it has a display terminal
369to work with.
370
8cf51b2c
GM
371@node Environment
372@appendixsec Environment Variables
373@cindex environment variables
374
375 The @dfn{environment} is a feature of the operating system; it
376consists of a collection of variables with names and values. Each
377variable is called an @dfn{environment variable}; environment variable
378names are case-sensitive, and it is conventional to use upper case
379letters only. The values are all text strings.
380
381 What makes the environment useful is that subprocesses inherit the
382environment automatically from their parent process. This means you
383can set up an environment variable in your login shell, and all the
384programs you run (including Emacs) will automatically see it.
a73a3461
CY
385Subprocesses of Emacs (such as shells, compilers, and version control
386programs) inherit the environment from Emacs, too.
8cf51b2c
GM
387
388@findex setenv
389@findex getenv
63961e6a 390@vindex initial-environment
a73a3461
CY
391 Inside Emacs, the command @kbd{M-x getenv} reads the name of an
392environment variable, and prints its value in the echo area. @kbd{M-x
393setenv} sets a variable in the Emacs environment, and @kbd{C-u M-x
394setenv} removes a variable. (Environment variable substitutions with
395@samp{$} work in the value just as in file names; see @ref{File Names
396with $}.) The variable @code{initial-environment} stores the initial
397environment inherited by Emacs.
8cf51b2c
GM
398
399 The way to set environment variables outside of Emacs depends on the
400operating system, and especially the shell that you are using. For
401example, here's how to set the environment variable @env{ORGANIZATION}
402to @samp{not very much} using Bash:
403
404@example
405export ORGANIZATION="not very much"
406@end example
407
408@noindent
409and here's how to do it in csh or tcsh:
410
411@example
412setenv ORGANIZATION "not very much"
413@end example
414
415 When Emacs is using the X Window System, various environment
416variables that control X work for Emacs as well. See the X
417documentation for more information.
418
419@menu
420* General Variables:: Environment variables that all versions of Emacs use.
421* Misc Variables:: Certain system-specific variables.
422* MS-Windows Registry:: An alternative to the environment on MS-Windows.
423@end menu
424
425@node General Variables
426@appendixsubsec General Variables
427
63961e6a
CY
428 Here is an alphabetical list of environment variables that have
429special meanings in Emacs. Most of these variables are also used by
430some other programs. Emacs does not require any of these environment
431variables to be set, but it uses their values if they are set.
8cf51b2c
GM
432
433@table @env
434@item CDPATH
435Used by the @code{cd} command to search for the directory you specify,
436when you specify a relative directory name.
8cf51b2c
GM
437@item EMACSDATA
438Directory for the architecture-independent files that come with Emacs.
439This is used to initialize the Lisp variable @code{data-directory}.
440@item EMACSDOC
ae742cb5
CY
441Directory for the documentation string file, which is used to
442initialize the Lisp variable @code{doc-directory}.
8cf51b2c 443@item EMACSLOADPATH
a73a3461
CY
444A colon-separated list of directories@footnote{ Here and below,
445whenever we say ``colon-separated list of directories,'' it pertains
446to Unix and GNU/Linux systems. On MS-DOS and MS-Windows, the
447directories are separated by semi-colons instead, since DOS/Windows
448file names might include a colon after a drive letter.} to search for
449Emacs Lisp files. If set, it overrides the usual initial value of the
450@code{load-path} variable (@pxref{Lisp Libraries}).
8cf51b2c 451@item EMACSPATH
a73a3461
CY
452A colon-separated list of directories to search for executable files.
453If set, Emacs uses this in addition to @env{PATH} (see below) when
454initializing the variable @code{exec-path} (@pxref{Shell}).
8cf51b2c
GM
455@item EMAIL
456@vindex user-mail-address@r{, initialization}
457Your email address; used to initialize the Lisp variable
a73a3461
CY
458@code{user-mail-address}, which the Emacs mail interface puts into the
459@samp{From} header of outgoing messages (@pxref{Mail Headers}).
8cf51b2c 460@item ESHELL
a73a3461
CY
461Used for shell-mode to override the @env{SHELL} environment variable
462(@pxref{Interactive Shell}).
8cf51b2c
GM
463@item HISTFILE
464The name of the file that shell commands are saved in between logins.
465This variable defaults to @file{~/.bash_history} if you use Bash, to
466@file{~/.sh_history} if you use ksh, and to @file{~/.history}
467otherwise.
468@item HOME
469The location of your files in the directory tree; used for
470expansion of file names starting with a tilde (@file{~}). On MS-DOS,
471it defaults to the directory from which Emacs was started, with
472@samp{/bin} removed from the end if it was present. On Windows, the
473default value of @env{HOME} is the @file{Application Data}
474subdirectory of the user profile directory (normally, this is
475@file{C:/Documents and Settings/@var{username}/Application Data},
476where @var{username} is your user name), though for backwards
477compatibility @file{C:/} will be used instead if a @file{.emacs} file
478is found there.
479@item HOSTNAME
480The name of the machine that Emacs is running on.
481@item INCPATH
482A colon-separated list of directories. Used by the @code{complete} package
483to search for files.
484@item INFOPATH
485A colon-separated list of directories in which to search for Info files.
486@item LC_ALL
487@itemx LC_COLLATE
488@itemx LC_CTYPE
489@itemx LC_MESSAGES
490@itemx LC_MONETARY
491@itemx LC_NUMERIC
492@itemx LC_TIME
493@itemx LANG
494The user's preferred locale. The locale has six categories, specified
495by the environment variables @env{LC_COLLATE} for sorting,
496@env{LC_CTYPE} for character encoding, @env{LC_MESSAGES} for system
497messages, @env{LC_MONETARY} for monetary formats, @env{LC_NUMERIC} for
498numbers, and @env{LC_TIME} for dates and times. If one of these
499variables is not set, the category defaults to the value of the
500@env{LANG} environment variable, or to the default @samp{C} locale if
501@env{LANG} is not set. But if @env{LC_ALL} is specified, it overrides
502the settings of all the other locale environment variables.
503
504On MS-Windows, if @env{LANG} is not already set in the environment
505when Emacs starts, Emacs sets it based on the system-wide default
506language, which you can set in the @samp{Regional Settings} Control Panel
507on some versions of MS-Windows.
508
509The value of the @env{LC_CTYPE} category is
510matched against entries in @code{locale-language-names},
511@code{locale-charset-language-names}, and
512@code{locale-preferred-coding-systems}, to select a default language
513environment and coding system. @xref{Language Environments}.
514@item LOGNAME
515The user's login name. See also @env{USER}.
516@item MAIL
517The name of your system mail inbox.
a73a3461 518@ifnottex
8cf51b2c 519@item MH
a73a3461
CY
520Name of setup file for the mh system. @xref{Top,,MH-E,mh-e, The Emacs
521Interface to MH}.
522@end ifnottex
8cf51b2c 523@item NAME
a73a3461
CY
524Your real-world name. This is used to initialize the variable
525@code{user-full-name} (@pxref{Mail Headers}).
8cf51b2c
GM
526@item NNTPSERVER
527The name of the news server. Used by the mh and Gnus packages.
528@item ORGANIZATION
529The name of the organization to which you belong. Used for setting the
530`Organization:' header in your posts from the Gnus package.
531@item PATH
a73a3461
CY
532A colon-separated list of directories containing executable files.
533This is used to initialize the variable @code{exec-path}
534(@pxref{Shell}).
8cf51b2c
GM
535@item PWD
536If set, this should be the default directory when Emacs was started.
537@item REPLYTO
538If set, this specifies an initial value for the variable
a73a3461 539@code{mail-default-reply-to} (@pxref{Mail Headers}).
8cf51b2c
GM
540@item SAVEDIR
541The name of a directory in which news articles are saved by default.
542Used by the Gnus package.
543@item SHELL
544The name of an interpreter used to parse and execute programs run from
545inside Emacs.
546@item SMTPSERVER
a73a3461
CY
547The name of the outgoing mail server. This is used to initialize the
548variable @code{smtpmail-smtp-server} (@pxref{Mail Sending}).
8cf51b2c
GM
549@cindex background mode, on @command{xterm}
550@item TERM
551The type of the terminal that Emacs is using. This variable must be
552set unless Emacs is run in batch mode. On MS-DOS, it defaults to
553@samp{internal}, which specifies a built-in terminal emulation that
a73a3461 554handles the machine's own display.
8cf51b2c
GM
555@item TERMCAP
556The name of the termcap library file describing how to program the
a73a3461 557terminal specified by @env{TERM}. This defaults to
8cf51b2c
GM
558@file{/etc/termcap}.
559@item TMPDIR
a73a3461
CY
560@itemx TMP
561@itemx TEMP
562These environment variables are used to initialize the variable
563@code{temporary-file-directory}, which specifies a directory in which
564to put temporary files (@pxref{Backup}). Emacs tries to use
565@env{TMPDIR} first; if that is unset, it tries @env{TMP}, then
566@env{TEMP}, and finally @file{/tmp}. But on MS-Windows and MS-DOS,
567Emacs tries @env{TEMP}, then @env{TMPDIR}, then @env{TMP}, and finally
568@file{c:/temp}.
569
8cf51b2c
GM
570@item TZ
571This specifies the current time zone and possibly also daylight
572saving time information. On MS-DOS, if @env{TZ} is not set in the
573environment when Emacs starts, Emacs defines a default value as
574appropriate for the country code returned by DOS. On MS-Windows, Emacs
575does not use @env{TZ} at all.
576@item USER
577The user's login name. See also @env{LOGNAME}. On MS-DOS, this
578defaults to @samp{root}.
579@item VERSION_CONTROL
9cfd6308 580Used to initialize the @code{version-control} variable (@pxref{Backup Names}).
8cf51b2c
GM
581@end table
582
583@node Misc Variables
584@appendixsubsec Miscellaneous Variables
585
586These variables are used only on particular configurations:
587
588@table @env
589@item COMSPEC
590On MS-DOS and MS-Windows, the name of the command interpreter to use
591when invoking batch files and commands internal to the shell. On MS-DOS
592this is also used to make a default value for the @env{SHELL} environment
593variable.
594
595@item NAME
596On MS-DOS, this variable defaults to the value of the @env{USER}
597variable.
598
8cf51b2c
GM
599@item EMACSTEST
600On MS-DOS, this specifies a file to use to log the operation of the
601internal terminal emulator. This feature is useful for submitting bug
602reports.
603
604@item EMACSCOLORS
605On MS-DOS, this specifies the screen colors. It is useful to set them
606this way, since otherwise Emacs would display the default colors
607momentarily when it starts up.
608
609The value of this variable should be the two-character encoding of the
610foreground (the first character) and the background (the second
611character) colors of the default face. Each character should be the
612hexadecimal code for the desired color on a standard PC text-mode
613display. For example, to get blue text on a light gray background,
614specify @samp{EMACSCOLORS=17}, since 1 is the code of the blue color and
6157 is the code of the light gray color.
616
617The PC display usually supports only eight background colors. However,
618Emacs switches the DOS display to a mode where all 16 colors can be used
619for the background, so all four bits of the background color are
620actually used.
621
8cf51b2c
GM
622@item PRELOAD_WINSOCK
623On MS-Windows, if you set this variable, Emacs will load and initialize
624the network library at startup, instead of waiting until the first
625time it is required.
626
627@item emacs_dir
628On MS-Windows, @env{emacs_dir} is a special environment variable, which
629indicates the full path of the directory in which Emacs is installed.
630If Emacs is installed in the standard directory structure, it
631calculates this value automatically. It is not much use setting this
632variable yourself unless your installation is non-standard, since
633unlike other environment variables, it will be overridden by Emacs at
634startup. When setting other environment variables, such as
635@env{EMACSLOADPATH}, you may find it useful to use @env{emacs_dir}
636rather than hard-coding an absolute path. This allows multiple
637versions of Emacs to share the same environment variable settings, and
638it allows you to move the Emacs installation directory, without
639changing any environment or registry settings.
640@end table
641
642@node MS-Windows Registry
643@appendixsubsec The MS-Windows System Registry
644@pindex addpm, MS-Windows installation program
8034735f 645@cindex registry, setting environment variables (MS-Windows)
8cf51b2c 646
8034735f 647On MS-Windows, the installation program @command{addpm.exe} adds
8cf51b2c
GM
648values for @env{emacs_dir}, @env{EMACSLOADPATH}, @env{EMACSDATA},
649@env{EMACSPATH}, @env{EMACSDOC}, @env{SHELL} and @env{TERM} to the
650@file{HKEY_LOCAL_MACHINE} section of the system registry, under
651@file{/Software/GNU/Emacs}. It does this because there is no standard
652place to set environment variables across different versions of
653Windows. Running @command{addpm.exe} is no longer strictly necessary
654in recent versions of Emacs, but if you are upgrading from an older
655version, running @command{addpm.exe} ensures that you do not have
656older registry entries from a previous installation, which may not be
657compatible with the latest version of Emacs.
658
659When Emacs starts, as well as checking the environment, it also checks
660the System Registry for those variables and for @env{HOME}, @env{LANG}
661and @env{PRELOAD_WINSOCK}.
662
663To determine the value of those variables, Emacs goes through the
664following procedure. First, the environment is checked. If the
665variable is not found there, Emacs looks for registry keys by that
666name under @file{/Software/GNU/Emacs}; first in the
667@file{HKEY_CURRENT_USER} section of the registry, and if not found
668there, in the @file{HKEY_LOCAL_MACHINE} section. Finally, if Emacs
669still cannot determine the values, compiled-in defaults are used.
670
671In addition to the environment variables above, you can also add many
672of the settings which on X belong in the @file{.Xdefaults} file
673(@pxref{X Resources}) to the @file{/Software/GNU/Emacs} registry key.
8cf51b2c
GM
674
675@node Display X
676@appendixsec Specifying the Display Name
677@cindex display name (X Window System)
678@cindex @env{DISPLAY} environment variable
679
a73a3461
CY
680 The environment variable @env{DISPLAY} tells all X clients,
681including Emacs, where to display their windows. Its value is set by
682default in ordinary circumstances, when you start an X server and run
683jobs locally. You can specify the display yourself; one reason to do
684this is if you want to log into another system and run Emacs there,
685and have the window displayed at your local terminal.
8cf51b2c 686
ae742cb5 687 @env{DISPLAY} has the syntax
8cf51b2c
GM
688@samp{@var{host}:@var{display}.@var{screen}}, where @var{host} is the
689host name of the X Window System server machine, @var{display} is an
ae742cb5
CY
690arbitrarily-assigned number that distinguishes your server (X
691terminal) from other servers on the same machine, and @var{screen} is
a73a3461
CY
692a field that allows an X server to control multiple terminal screens.
693The period and the @var{screen} field are optional. If included,
694@var{screen} is usually zero.
8cf51b2c
GM
695
696 For example, if your host is named @samp{glasperle} and your server is
697the first (or perhaps the only) server listed in the configuration, your
698@env{DISPLAY} is @samp{glasperle:0.0}.
699
700 You can specify the display name explicitly when you run Emacs, either
701by changing the @env{DISPLAY} variable, or with the option @samp{-d
702@var{display}} or @samp{--display=@var{display}}. Here is an example:
703
704@smallexample
705emacs --display=glasperle:0 &
706@end smallexample
707
a73a3461
CY
708 You can inhibit the use of the X window system with the @samp{-nw}
709option. Then Emacs uses its controlling text terminal for display.
710@xref{Initial Options}.
8cf51b2c
GM
711
712 Sometimes, security arrangements prevent a program on a remote system
713from displaying on your local system. In this case, trying to run Emacs
714produces messages like this:
715
716@smallexample
717Xlib: connection to "glasperle:0.0" refused by server
718@end smallexample
719
720@noindent
721You might be able to overcome this problem by using the @command{xhost}
722command on the local system to give permission for access from your
723remote machine.
724
725@node Font X
726@appendixsec Font Specification Options
727@cindex font name (X Window System)
728
d68eb23c
CY
729You can use the command line option @samp{-fn @var{font}} (or
730@samp{--font}, which is an alias for @samp{-fn}) to specify a default
731font:
8cf51b2c
GM
732
733@table @samp
0e3f4049 734@item -fn @var{font}
8cf51b2c 735@opindex -fn
0e3f4049 736@itemx --font=@var{font}
8cf51b2c
GM
737@opindex --font
738@cindex specify default font from the command line
0e3f4049 739Use @var{font} as the default font.
8cf51b2c
GM
740@end table
741
a73a3461
CY
742When passing a font name to Emacs on the command line, you may need to
743``quote'' it, by enclosing it in quotation marks, if it contains
744characters that the shell treats specially (e.g.@: spaces). For
745example:
001b5dc9
CY
746
747@smallexample
748emacs -fn "DejaVu Sans Mono-12"
749@end smallexample
750
a73a3461
CY
751@xref{Fonts}, for details about font names and other ways to specify
752the default font.
8cf51b2c 753
8863a584 754@node Colors X
8cf51b2c
GM
755@appendixsec Window Color Options
756@cindex color of window, from command line
757@cindex text colors, from command line
758
8863a584
CY
759 You can use the following command-line options to specify the colors
760to use for various parts of the Emacs display. Colors may be
761specified using either color names or RGB triplets (@pxref{Colors}).
8cf51b2c
GM
762
763@table @samp
764@item -fg @var{color}
765@opindex -fg
766@itemx --foreground-color=@var{color}
767@opindex --foreground-color
768@cindex foreground color, command-line argument
8863a584
CY
769Specify the foreground color, overriding the color specified by the
770@code{default} face (@pxref{Faces}).
8cf51b2c
GM
771@item -bg @var{color}
772@opindex -bg
773@itemx --background-color=@var{color}
774@opindex --background-color
775@cindex background color, command-line argument
8863a584
CY
776Specify the background color, overriding the color specified by the
777@code{default} face.
8cf51b2c
GM
778@item -bd @var{color}
779@opindex -bd
780@itemx --border-color=@var{color}
781@opindex --border-color
782@cindex border color, command-line argument
a73a3461
CY
783Specify the color of the border of the X window. This has no effect
784if Emacs is compiled with GTK+ support.
8cf51b2c
GM
785@item -cr @var{color}
786@opindex -cr
787@itemx --cursor-color=@var{color}
788@opindex --cursor-color
789@cindex cursor color, command-line argument
790Specify the color of the Emacs cursor which indicates where point is.
791@item -ms @var{color}
792@opindex -ms
793@itemx --mouse-color=@var{color}
794@opindex --mouse-color
795@cindex mouse pointer color, command-line argument
796Specify the color for the mouse cursor when the mouse is in the Emacs window.
797@item -r
798@opindex -r
799@itemx -rv
800@opindex -rv
801@itemx --reverse-video
802@opindex --reverse-video
803@cindex reverse video, command-line argument
804Reverse video---swap the foreground and background colors.
805@item --color=@var{mode}
806@opindex --color
807@cindex standard colors on a character terminal
808@cindex override character terminal color support
a73a3461
CY
809Set the @dfn{color support mode} when Emacs is run on a text terminal.
810This option overrides the number of supported colors that the
811character terminal advertises in its @code{termcap} or @code{terminfo}
812database. The parameter @var{mode} can be one of the following:
8cf51b2c
GM
813@table @samp
814@item never
815@itemx no
816Don't use colors even if the terminal's capabilities specify color
817support.
818@item default
819@itemx auto
820Same as when @option{--color} is not used at all: Emacs detects at
821startup whether the terminal supports colors, and if it does, turns on
822colored display.
823@item always
824@itemx yes
825@itemx ansi8
826Turn on the color support unconditionally, and use color commands
827specified by the ANSI escape sequences for the 8 standard colors.
828@item @var{num}
829Use color mode for @var{num} colors. If @var{num} is -1, turn off
830color support (equivalent to @samp{never}); if it is 0, use the
831default color support for this terminal (equivalent to @samp{auto});
832otherwise use an appropriate standard mode for @var{num} colors.
833Depending on your terminal's capabilities, Emacs might be able to turn
834on a color mode for 8, 16, 88, or 256 as the value of @var{num}. If
835there is no mode that supports @var{num} colors, Emacs acts as if
836@var{num} were 0, i.e.@: it uses the terminal's default color support
837mode.
838@end table
839If @var{mode} is omitted, it defaults to @var{ansi8}.
840@end table
841
842 For example, to use a coral mouse cursor and a slate blue text cursor,
843enter:
844
845@example
846emacs -ms coral -cr 'slate blue' &
847@end example
848
849 You can reverse the foreground and background colors through the
850@samp{-rv} option or with the X resource @samp{reverseVideo}.
851
852 The @samp{-fg}, @samp{-bg}, and @samp{-rv} options function on
853text-only terminals as well as on graphical displays.
854
855@node Window Size X
856@appendixsec Options for Window Size and Position
857@cindex geometry of Emacs window
858@cindex position and size of Emacs frame
859@cindex width and height of Emacs frame
860@cindex specifying fullscreen for Emacs frame
861
862 Here is a list of the command-line options for specifying size and
863position of the initial Emacs frame:
864
865@table @samp
866@item -g @var{width}x@var{height}@r{[@{}+-@r{@}}@var{xoffset}@r{@{}+-@r{@}}@var{yoffset}@r{]]}
867@opindex -g
868@itemx --geometry=@var{width}x@var{height}@r{[@{}+-@r{@}}@var{xoffset}@r{@{}+-@r{@}}@var{yoffset}@r{]]}
869@opindex --geometry
870@cindex geometry, command-line argument
871Specify the size @var{width} and @var{height} (measured in character
872columns and lines), and positions @var{xoffset} and @var{yoffset}
873(measured in pixels). The @var{width} and @var{height} parameters
874apply to all frames, whereas @var{xoffset} and @var{yoffset} only to
875the initial frame.
876
877@item -fs
878@opindex -fs
879@itemx --fullscreen
880@opindex --fullscreen
881@cindex fullscreen, command-line argument
3f1c6666
JD
882Specify that width and height shall be the size of the screen. Normally
883no window manager decorations are shown.
884
885@item -mm
886@opindex -mm
887@itemx --maximized
888@opindex --maximized
889@cindex maximized, command-line argument
890Specify that the Emacs frame shall be maximized. This normally
891means that the frame has window manager decorations.
8cf51b2c
GM
892
893@item -fh
894@opindex -fh
895@itemx --fullheight
896@opindex --fullheight
897@cindex fullheight, command-line argument
898Specify that the height shall be the height of the screen.
899
900@item -fw
901@opindex -fw
902@itemx --fullwidth
903@opindex --fullwidth
904@cindex fullwidth, command-line argument
905Specify that the width shall be the width of the screen.
906@end table
907
8cf51b2c
GM
908@noindent
909In the @samp{--geometry} option, @code{@r{@{}+-@r{@}}} means either a plus
910 sign or a minus sign. A plus
911sign before @var{xoffset} means it is the distance from the left side of
912the screen; a minus sign means it counts from the right side. A plus
913sign before @var{yoffset} means it is the distance from the top of the
914screen, and a minus sign there indicates the distance from the bottom.
915The values @var{xoffset} and @var{yoffset} may themselves be positive or
916negative, but that doesn't change their meaning, only their direction.
917
918 Emacs uses the same units as @command{xterm} does to interpret the geometry.
919The @var{width} and @var{height} are measured in characters, so a large font
920creates a larger frame than a small font. (If you specify a proportional
921font, Emacs uses its maximum bounds width as the width unit.) The
922@var{xoffset} and @var{yoffset} are measured in pixels.
923
924 You do not have to specify all of the fields in the geometry
925specification. If you omit both @var{xoffset} and @var{yoffset}, the
926window manager decides where to put the Emacs frame, possibly by
927letting you place it with the mouse. For example, @samp{164x55}
928specifies a window 164 columns wide, enough for two ordinary width
929windows side by side, and 55 lines tall.
930
07c75e57 931 The default frame width is 80 characters and the default height is
8cf51b2c
GM
93240 lines. You can omit either the width or the height or both. If
933you start the geometry with an integer, Emacs interprets it as the
934width. If you start with an @samp{x} followed by an integer, Emacs
07c75e57
CY
935interprets it as the height. Thus, @samp{81} specifies just the
936width; @samp{x45} specifies just the height.
8cf51b2c
GM
937
938 If you start with @samp{+} or @samp{-}, that introduces an offset,
939which means both sizes are omitted. Thus, @samp{-3} specifies the
940@var{xoffset} only. (If you give just one offset, it is always
941@var{xoffset}.) @samp{+3-3} specifies both the @var{xoffset} and the
942@var{yoffset}, placing the frame near the bottom left of the screen.
943
07c75e57
CY
944 You can specify a default for any or all of the fields in your X
945resource file (@pxref{Resources}), and then override selected fields
946with a @samp{--geometry} option.
8cf51b2c
GM
947
948 Since the mode line and the echo area occupy the last 2 lines of the
949frame, the height of the initial text window is 2 less than the height
950specified in your geometry. In non-X-toolkit versions of Emacs, the
951menu bar also takes one line of the specified number. But in the X
952toolkit version, the menu bar is additional and does not count against
953the specified height. The tool bar, if present, is also additional.
954
955 Enabling or disabling the menu bar or tool bar alters the amount of
956space available for ordinary text. Therefore, if Emacs starts up with
957a tool bar (which is the default), and handles the geometry
958specification assuming there is a tool bar, and then your
07c75e57 959initialization file disables the tool bar, you will end up with a
8cf51b2c
GM
960frame geometry different from what you asked for. To get the intended
961size with no tool bar, use an X resource to specify ``no tool bar''
962(@pxref{Table of Resources}); then Emacs will already know there's no
963tool bar when it processes the specified geometry.
964
3f1c6666
JD
965 When using one of @samp{--fullscreen}, @samp{--maximized}, @samp{--fullwidth}
966or @samp{--fullheight} there may be some space around the frame
8cf51b2c
GM
967anyway. That is because Emacs rounds the sizes so they are an
968even number of character heights and widths.
969
970 Some window managers have options that can make them ignore both
07c75e57
CY
971program-specified and user-specified positions. If these are set,
972Emacs fails to position the window correctly.
8cf51b2c
GM
973
974@node Borders X
975@appendixsec Internal and External Borders
976@cindex borders (X Window System)
977
978 An Emacs frame has an internal border and an external border. The
979internal border is an extra strip of the background color around the
980text portion of the frame. Emacs itself draws the internal border.
981The external border is added by the window manager outside the frame;
982depending on the window manager you use, it may contain various boxes
983you can click on to move or iconify the window.
984
985@table @samp
986@item -ib @var{width}
987@opindex -ib
988@itemx --internal-border=@var{width}
989@opindex --internal-border
990@cindex internal border width, command-line argument
991Specify @var{width} as the width of the internal border (between the text
992and the main border), in pixels.
993
994@item -bw @var{width}
995@opindex -bw
996@itemx --border-width=@var{width}
997@opindex --border-width
998@cindex main border width, command-line argument
999Specify @var{width} as the width of the main border, in pixels.
1000@end table
1001
1002 When you specify the size of the frame, that does not count the
1003borders. The frame's position is measured from the outside edge of the
1004external border.
1005
1006 Use the @samp{-ib @var{n}} option to specify an internal border
1007@var{n} pixels wide. The default is 1. Use @samp{-bw @var{n}} to
1008specify the width of the external border (though the window manager may
1009not pay attention to what you specify). The default width of the
1010external border is 2.
1011
1012@node Title X
1013@appendixsec Frame Titles
1014
1015 An Emacs frame may or may not have a specified title. The frame
1016title, if specified, appears in window decorations and icons as the
1017name of the frame. If an Emacs frame has no specified title, the
1018default title has the form @samp{@var{invocation-name}@@@var{machine}}
1019(if there is only one frame) or the selected window's buffer name (if
1020there is more than one frame).
1021
1022 You can specify a title for the initial Emacs frame with a command
1023line option:
1024
1025@table @samp
1026@item -T @var{title}
1027@opindex -T
1028@itemx --title=@var{title}
1029@opindex --title
1030@cindex frame title, command-line argument
1031Specify @var{title} as the title for the initial Emacs frame.
1032@end table
1033
1034 The @samp{--name} option (@pxref{Resources}) also specifies the title
1035for the initial Emacs frame.
1036
1037@node Icons X
1038@appendixsec Icons
1039@cindex icons (X Window System)
07c75e57 1040@cindex minimizing a frame at startup
8cf51b2c
GM
1041
1042@table @samp
07c75e57
CY
1043@item -iconic
1044@opindex --iconic
1045@itemx --iconic
1046@cindex start iconified, command-line argument
1047Start Emacs in an iconified (``minimized'') state.
1048
8cf51b2c
GM
1049@item -nbi
1050@opindex -nbi
1051@itemx --no-bitmap-icon
1052@opindex --no-bitmap-icon
1053@cindex Emacs icon, a gnu
a73a3461 1054Disable the use of the Emacs icon.
8cf51b2c
GM
1055@end table
1056
07c75e57
CY
1057 Most window managers allow you to ``iconify'' (or ``minimize'') an
1058Emacs frame, hiding it from sight. Some window managers replace
1059iconified windows with tiny ``icons'', while others remove them
1060entirely from sight. The @samp{-iconic} option tells Emacs to begin
1061running in an iconified state, rather than showing a frame right away.
1062The text frame doesn't appear until you deiconify (or ``un-minimize'')
1063it.
8cf51b2c 1064
07c75e57 1065 By default, Emacs uses an icon containing the Emacs logo. On
a73a3461
CY
1066desktop environments such as Gnome, this icon is also displayed in
1067other contexts, e.g.@: when switching into an Emacs frame. The
1068@samp{-nbi} or @samp{--no-bitmap-icon} option tells Emacs to let the
1069window manager choose what sort of icon to use---usually just a small
1070rectangle containing the frame's title.
8cf51b2c
GM
1071
1072@node Misc X
1073@appendixsec Other Display Options
1074
1075@table @samp
07c75e57
CY
1076@c @item -hb
1077@c @opindex -hb
1078@c @itemx --horizontal-scroll-bars
1079@c @opindex --horizontal-scroll-bars
1080@c @c @cindex horizontal scroll bars, command-line argument
1081@c Enable horizontal scroll bars. Since horizontal scroll bars
1082@c are not yet implemented, this actually does nothing.
8cf51b2c 1083
fdeb32ec
CY
1084@item --parent-id @var{ID}
1085Open Emacs as a client X window via the XEmbed protocol, with @var{ID}
1086as the parent X window id. Currently, this option is mainly useful
1087for developers.
1088
8cf51b2c
GM
1089@item -vb
1090@opindex -vb
1091@itemx --vertical-scroll-bars
1092@opindex --vertical-scroll-bars
1093@cindex vertical scroll bars, command-line argument
1094Enable vertical scroll bars.
1095
1096@item -lsp @var{pixels}
1097@opindex -lsp
1098@itemx --line-spacing=@var{pixels}
1099@opindex --line-spacing
1100@cindex line spacing, command-line argument
1101Specify @var{pixels} as additional space to put between lines, in pixels.
1102
1103@item -nbc
1104@opindex -nbc
1105@itemx --no-blinking-cursor
1106@opindex --no-blinking-cursor
1107@cindex blinking cursor disable, command-line argument
1108Disable the blinking cursor on graphical displays.
1109
1110@item -D
1111@opindex -D
1112@itemx --basic-display
1113@opindex --basic-display
1114Disable the menu-bar, the tool-bar, the scroll-bars, and tool tips,
1115and turn off the blinking cursor. This can be useful for making a
1116test case that simplifies debugging of display problems.
1117@end table
1118
1119 The @samp{--xrm} option (@pxref{Resources}) specifies additional
1120X resource values.