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