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