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