(compilation-setup):
Set `next-error-overlay-arrow-position' to nil. Also set it to
nil in the local hook `kill-buffer-hook'. Make local variable
`overlay-arrow-string' and set it to "=>".
(compilation-goto-locus): Set BOL position to
`next-error-overlay-arrow-position' instead of
`overlay-arrow-position'.
@c This is part of the Emacs manual.@c Copyright (C) 1985, 86, 87, 93, 94, 95, 97,@c 2001, 03, 04, 2005 Free Software Foundation, Inc.@c See file emacs.texi for copying conditions.@node Emacs Invocation, X Resources, GNU Free Documentation License, Top@appendix Command Line Arguments for Emacs Invocation@cindex command line arguments@cindex arguments (command line)@cindex options (command line)@cindex switches (command line)@cindex startup (command line arguments)@cindex invocation (command line arguments) GNU Emacs supports command line arguments to request various actionswhen invoking Emacs. These are for compatibility with other editors andfor sophisticated activities. We don't recommend using them forordinary editing. Arguments starting with @samp{-} are @dfn{options}, and so is@samp{+@var{linenum}}. All other arguments specify files to visit.Emacs visits the specified files while it starts up. The last filename on your command line becomes the current buffer; the other filesare also visited in other buffers. If there are two files, they areboth displayed; otherwise the last file is displayed along with abuffer list that shows what other buffers there are. As with mostprograms, the special argument @samp{--} says that all subsequentarguments are file names, not options, even if they start with@samp{-}. Emacs command options can specify many things, such as the size andposition of the X window Emacs uses, its colors, and so on. A fewoptions support advanced usage, such as running Lisp functions on filesin batch mode. The sections of this chapter describe the availableoptions, arranged according to their purpose. There are two ways of writing options: the short forms that start witha single @samp{-}, and the long forms that start with @samp{--}. Forexample, @samp{-d} is a short form and @samp{--display} is thecorresponding long form. The long forms with @samp{--} are easier to remember, but longer totype. However, you don't have to spell out the whole option name; anyunambiguous abbreviation is enough. When a long option takes anargument, you can use either a space or an equal sign to separate theoption name and the argument. Thus, you can write either@samp{--display sugar-bombs:0.0} or @samp{--display=sugar-bombs:0.0}.We recommend an equal sign because it makes the relationship clearer,and the tables below always show an equal sign.@cindex initial options (command line)@cindex action options (command line)@vindex command-line-args Most options specify how to initialize Emacs, or set parameters forthe Emacs session. We call them @dfn{initial options}. A few optionsspecify things to do: for example, load libraries, call functions, orterminate Emacs. These are called @dfn{action options}. These and filenames together are called @dfn{action arguments}. Emacs processes allthe action arguments in the order they are written. The @file{.emacs} filecan access the values of the action arguments as the elements of a list inthe variable @code{command-line-args}.@menu* Action Arguments:: Arguments to visit files, load libraries, and call functions.* Initial Options:: Arguments that take effect while starting Emacs.* Command Example:: Examples of using command line arguments.* Resume Arguments:: Specifying arguments when you resume a running Emacs.* Environment:: Environment variables that Emacs uses.* Display X:: Changing the default display and using remote login.* Font X:: Choosing a font for text, under X.* Colors:: Choosing display colors.* Window Size X:: Start-up window size, under X.* Borders X:: Internal and external borders, under X.* Title X:: Specifying the initial frame's title.* Icons X:: Choosing what sort of icon to use, under X.* Misc X:: Other display options.@end menu@node Action Arguments@appendixsec Action Arguments Here is a table of the action arguments and options:@table @samp@item @var{file}@opindex --file@itemx --file=@var{file}@opindex --find-file@itemx --find-file=@var{file}@opindex --visit@itemx --visit=@var{file}@cindex visiting files, command-line argument@vindex inhibit-startup-buffer-menuVisit @var{file} using @code{find-file}. @xref{Visiting}.If you visit several files at startup in this way, Emacsalso displays a Buffer Menu buffer to show you what files ithas visited. You can inhibit that by setting @code{inhibit-startup-buffer-menu} to @code{t}.@item +@var{linenum} @var{file}@opindex +@var{linenum}Visit @var{file} using @code{find-file}, then go to line number@var{linenum} in it.@item +@var{linenum}:@var{columnnum} @var{file}Visit @var{file} using @code{find-file}, then go to line number@var{linenum} and put point at column number @var{columnnum}.@need 3000@item -l @var{file}@opindex -l@itemx --load=@var{file}@opindex --load@cindex loading Lisp libraries, command-line argumentLoad a Lisp library named @var{file} with the function @code{load}.@xref{Lisp Libraries}. If @var{file} is not an absolute file name,the library can be found either in the current directory, or in theEmacs library search path as specified with @env{EMACSLOADPATH}(@pxref{General Variables}).@item -L @var{dir}@opindex -L@itemx --directory=@var{dir}@opindex --directoryAdd directory @var{dir} to the variable @code{load-path}.@item -f @var{function}@opindex -f@itemx --funcall=@var{function}@opindex --funcall@cindex call Lisp functions, command-line argumentCall Lisp function @var{function}. If it is an interactive function(a command), it reads the arguments interactively just as if you hadcalled the same function with a key sequence. Otherwise, it calls thefunction with no arguments.@item --eval=@var{expression}@opindex --eval@itemx --execute=@var{expression}@opindex --execute@cindex evaluate expression, command-line argumentEvaluate Lisp expression @var{expression}.@item --insert=@var{file}@opindex --insert@cindex insert file contents, command-line argumentInsert the contents of @var{file} into the current buffer. This is likewhat @kbd{M-x insert-file} does. @xref{Misc File Ops}.@item --kill@opindex --killExit from Emacs without asking for confirmation.@item --help@opindex --helpPrint a usage message listing all available options, then exitsuccessfully.@item --version@opindex --versionPrint Emacs version, then exit successfully.@end table@node Initial Options@appendixsec Initial Options The initial options specify parameters for the Emacs session. Thissection describes the more general initial options; some other optionsspecifically related to the X Window System appear in the followingsections. Some initial options affect the loading of init files. The normalactions of Emacs are to first load @file{site-start.el} if it exists,then your own init file @file{~/.emacs} if it exists, and finally@file{default.el} if it exists. @xref{Init File}. Certain optionsprevent loading of some of these files or substitute other files forthem.@table @samp@item -t @var{device}@opindex -t@itemx --terminal=@var{device}@opindex --terminal@cindex device for Emacs terminal I/OUse @var{device} as the device for terminal input and output.@samp{--terminal} implies @samp{--no-window-system}.@item -d @var{display}@opindex -d@itemx --display=@var{display}@opindex --display@cindex display for Emacs frameUse the X Window System and use the display named @var{display} to openthe initial Emacs frame. @xref{Display X}, for more details.@item -nw@opindex -nw@itemx --no-window-system@opindex --no-window-system@cindex disable window systemDon't communicate directly with the window system, disregarding the@env{DISPLAY} environment variable even if it is set. This means thatEmacs uses the terminal from which it was launched for all its displayand input.@need 3000@cindex batch mode@item -batch@opindex --batch@itemx --batchRun Emacs in @dfn{batch mode}. Batch mode is used for runningprograms written in Emacs Lisp from shell scripts, makefiles, and soon. You should also use the @samp{-l} option or @samp{-f} option, toinvoke a Lisp program to do batch processing.In batch mode, Emacs does not display the text being edited, and thestandard terminal interrupt characters such as @kbd{C-z} and @kbd{C-c}continue to have their normal effect. The functions @code{prin1},@code{princ} and @code{print} output to @code{stdout} instead of theecho area, while @code{message} and error messages output to@code{stderr}. Functions that would normally read from the minibuffertake their input from @code{stdin} instead.@samp{--batch} implies @samp{-q} (do not load an init file), but@file{site-start.el} is loaded nonetheless. It also causes Emacs toexit after processing all the command options. In addition, itdisables auto-saving except in buffers for which it has beenexplicitly requested.@item --script @var{file}@opindex --script@cindex script modeRun Emacs in batch mode, like @samp{--batch}, and then read andexecute the Lisp code in @var{file}.The normal use of this option is in executable script files that runEmacs. They can start with this text on the first line@example#!/usr/bin/emacs --script@end example@noindentwhich will invoke Emacs with @samp{--script} and supply the name ofthe script file as @var{file}. Emacs Lisp then treats @samp{#!} as acomment delimiter.@item -q@opindex -q@itemx --no-init-file@opindex --no-init-file@cindex bypassing init and @file{default.el} file@cindex init file, not loading@cindex @file{default.el} file, not loadingDo not load your Emacs init file @file{~/.emacs}, or @file{default.el}either. Regardless of this switch, @file{site-start.el} is still loaded.When invoked like this, Emacs does not allow saving optionschanged with the @kbd{M-x customize} command and its variants.@xref{Easy Customization}.@item --no-site-file@opindex --no-site-file@cindex @file{site-start.el} file, not loadingDo not load @file{site-start.el}. The options @samp{-q}, @samp{-u}and @samp{--batch} have no effect on the loading of this file---thisoption and @samp{-Q} are the only options that block it.@item -Q@opindex -Q@itemx --bare-bones@opindex --bare-bonesStart emacs with minimum customizations and window decorations.This is like using @samp{-q} and @samp{--no-site-file}, but inaddition it also disables the menu-bar, the tool-bar, the scroll-bars,tool tips, the blinking cursor, and the fancy startup screen.@item --no-splash@opindex --no-splash@vindex inhibit-startup-messageDo not display a splash screen on startup; this is equivalent tosetting the variable @code{inhibit-startup-message} to non-@code{nil}.@item --no-desktop@opindex --no-desktopDo not reload any saved desktop. @xref{Saving Emacs Sessions}.@item -u @var{user}@opindex -u@itemx --user=@var{user}@opindex --user@cindex load init file of another userLoad @var{user}'s Emacs init file @file{~@var{user}/.emacs} instead ofyour own.@item --debug-init@opindex --debug-init@cindex errors in init fileEnable the Emacs Lisp debugger for errors in the init file.@xref{Error Debugging,, Entering the Debugger on an Error, elisp, TheGNU Emacs Lisp Reference Manual}.@item --unibyte@opindex --unibyte@itemx --no-multibyte@opindex --no-multibyte@cindex unibyte operation, command-line argumentDo almost everything with single-byte buffers and strings.All buffers and strings are unibyte unless you (or a Lisp program)explicitly ask for a multibyte buffer or string. (Note that Emacsalways loads Lisp files in multibyte mode, even if @samp{--unibyte} isspecified; see @ref{Enabling Multibyte}.) Setting the environmentvariable @env{EMACS_UNIBYTE} has the same effect(@pxref{General Variables}).@item --multibyte@opindex --multibyte@itemx --no-unibyte@opindex --no-unibyteInhibit the effect of @env{EMACS_UNIBYTE}, so that Emacsuses multibyte characters by default, as usual.@end table@node Command Example@appendixsec Command Argument Example Here is an example of using Emacs with arguments and options. Itassumes you have a Lisp program file called @file{hack-c.el} which, whenloaded, performs some useful operation on the current buffer, expectedto be a C program.@exampleemacs --batch foo.c -l hack-c -f save-buffer >& log@end example@noindentThis says to visit @file{foo.c}, load @file{hack-c.el} (which makeschanges in the visited file), save @file{foo.c} (note that@code{save-buffer} is the function that @kbd{C-x C-s} is bound to), andthen exit back to the shell (because of @samp{--batch}). @samp{--batch}also guarantees there will be no problem redirecting output to@file{log}, because Emacs will not assume that it has a display terminalto work with.@node Resume Arguments@appendixsec Resuming Emacs with Arguments You can specify action arguments for Emacs when you resume it aftera suspension. To prepare for this, put the following code in your@file{.emacs} file (@pxref{Hooks}):@c `resume-suspend-hook' is correct. It is the name of a function.@example(add-hook 'suspend-hook 'resume-suspend-hook)(add-hook 'suspend-resume-hook 'resume-process-args)@end example As further preparation, you must execute the shell script@file{emacs.csh} (if you use csh as your shell) or @file{emacs.bash}(if you use bash as your shell). These scripts define an alias named@code{edit}, which will resume Emacs giving it new command linearguments such as files to visit. The scripts are found in the@file{etc} subdirectory of the Emacs distribution. Only action arguments work properly when you resume Emacs. Initialarguments are not recognized---it's too late to execute them anyway. Note that resuming Emacs (with or without arguments) must be done fromwithin the shell that is the parent of the Emacs job. This is why@code{edit} is an alias rather than a program or a shell script. It isnot possible to implement a resumption command that could be run fromother subjobs of the shell; there is no way to define a command that couldbe made the value of @env{EDITOR}, for example. Therefore, this featuredoes not take the place of the Emacs Server feature (@pxref{EmacsServer}). The aliases use the Emacs Server feature if you appear to have aserver Emacs running. However, they cannot determine this with completeaccuracy. They may think that a server is still running when inactuality you have killed that Emacs, because the file@file{/tmp/esrv@dots{}} still exists. If this happens, find thatfile and delete it.@node Environment@appendixsec Environment Variables@cindex environment variables The @dfn{environment} is a feature of the operating system; itconsists of a collection of variables with names and values. Eachvariable is called an @dfn{environment variable}; environment variablenames are case-sensitive, and it is conventional to use upper caseletters only. The values are all text strings. What makes the environment useful is that subprocesses inherit theenvironment automatically from their parent process. This means youcan set up an environment variable in your login shell, and all theprograms you run (including Emacs) will automatically see it.Subprocesses of Emacs (such as shells, compilers, and version-controlsoftware) inherit the environment from Emacs, too.@findex setenv@findex getenv Inside Emacs, the command @kbd{M-x getenv} gets the value of anenvironment variable. @kbd{M-x setenv} sets a variable in the Emacsenvironment. (Environment variable substitutions with @samp{$} workin the value just as in file names; see @ref{File Names with $}.) The way to set environment variables outside of Emacs depends on theoperating system, and especially the shell that you are using. Forexample, here's how to set the environment variable @env{ORGANIZATION}to @samp{not very much} using Bash:@exampleexport ORGANIZATION="not very much"@end example@noindentand here's how to do it in csh or tcsh:@examplesetenv ORGANIZATION "not very much"@end example When Emacs is using the X Window System, various environmentvariables that control X work for Emacs as well. See the Xdocumentation for more information.@menu* General Variables:: Environment variables that all versions of Emacs use.* Misc Variables:: Certain system-specific variables.* MS-Windows Registry:: An alternative to the environment on MS-Windows.@end menu@node General Variables@appendixsubsec General Variables Here is an alphabetical list of specific environment variables thathave special meanings in Emacs, giving the name of each variable andits meaning. Most of these variables are also used by some otherprograms. Emacs does not require any of these environment variablesto be set, but it uses their values if they are set.@table @env@item CDPATHUsed by the @code{cd} command to search for the directory you specify,when you specify a relative directory name.@item EMACS_UNIBYTE@cindex unibyte operation, environment variableDefining this environment variable with a nonempty value directs Emacsto do almost everything with single-byte buffers and strings. It isequivalent to using the @samp{--unibyte} command-line option on eachinvocation. @xref{Initial Options}.@item EMACSDATADirectory for the architecture-independent files that come with Emacs.This is used to initialize the Lisp variable @code{data-directory}.@item EMACSDOCDirectory for the documentation string file,@file{DOC-@var{emacsversion}}. This is used to initialize the Lispvariable @code{doc-directory}.@item EMACSLOADPATHA colon-separated list of directories@footnote{Here and below, whenever we say ``colon-separated list of directories,''it pertains to Unix and GNU/Linux systems. On MS-DOS and MS-Windows,the directories are separated by semi-colons instead, since DOS/Windowsfile names might include a colon after a drive letter.}to search for Emacs Lisp files---used to initialize @code{load-path}.@item EMACSPATHA colon-separated list of directories to search for executablefiles---used to initialize @code{exec-path}.@item ESHELLUsed for shell-mode to override the @env{SHELL} environment variable.@item HISTFILEThe name of the file that shell commands are saved in between logins.This variable defaults to @file{~/.bash_history} if you use Bash, to@file{~/.sh_history} if you use ksh, and to @file{~/.history}otherwise.@item HOMEThe location of the user's files in the directory tree; used forexpansion of file names starting with a tilde (@file{~}). On MS-DOS, itdefaults to the directory from which Emacs was started, with @samp{/bin}removed from the end if it was present. On Windows, the default valueof @env{HOME} is @file{C:/}, the root directory of drive @file{C:}.@item HOSTNAMEThe name of the machine that Emacs is running on.@item INCPATHA colon-separated list of directories. Used by the @code{complete} packageto search for files.@item INFOPATHA colon-separated list of directories in which to search for Info files.@item LC_ALL@itemx LC_COLLATE@itemx LC_CTYPE@itemx LC_MESSAGES@itemx LC_MONETARY@itemx LC_NUMERIC@itemx LC_TIME@itemx LANGThe user's preferred locale. The locale has six categories, specifiedby the environment variables @env{LC_COLLATE} for sorting,@env{LC_CTYPE} for character encoding, @env{LC_MESSAGES} for systemmessages, @env{LC_MONETARY} for monetary formats, @env{LC_NUMERIC} fornumbers, and @env{LC_TIME} for dates and times. If one of thesevariables is not set, the category defaults to the value of the@env{LANG} environment variable, or to the default @samp{C} locale if@env{LANG} is not set. But if @env{LC_ALL} is specified, it overridesthe settings of all the other locale environment variables.On MS-Windows, if @env{LANG} is not already set in the environmentwhen Emacs starts, Emacs sets it based on the system-wide defaultlanguage, which you can set in the @samp{Regional Settings} Control Panelon some versions of MS-Windows.The value of the @env{LC_CTYPE} category ismatched against entries in @code{locale-language-names},@code{locale-charset-language-names}, and@code{locale-preferred-coding-systems}, to select a default languageenvironment and coding system. @xref{Language Environments}.@item LOGNAMEThe user's login name. See also @env{USER}.@item MAILThe name of the user's system mail inbox.@item MHName of setup file for the mh system. (The default is @file{~/.mh_profile}.)@item NAMEThe real-world name of the user.@item NNTPSERVERThe name of the news server. Used by the mh and Gnus packages.@item ORGANIZATIONThe name of the organization to which you belong. Used for setting the`Organization:' header in your posts from the Gnus package.@item PATHA colon-separated list of directories in which executables reside. Thisis used to initialize the Emacs Lisp variable @code{exec-path}.@item PWDIf set, this should be the default directory when Emacs was started.@item REPLYTOIf set, this specifies an initial value for the variable@code{mail-default-reply-to}. @xref{Mail Headers}.@item SAVEDIRThe name of a directory in which news articles are saved by default.Used by the Gnus package.@item SHELLThe name of an interpreter used to parse and execute programs run frominside Emacs.@item SMTPSERVERThe name of the outgoing mail server. Used by the SMTP library(@pxref{Top,,Sending mail via SMTP,smtpmail}).@cindex background mode, on @command{xterm}@item TERMThe type of the terminal that Emacs is using. This variable must beset unless Emacs is run in batch mode. On MS-DOS, it defaults to@samp{internal}, which specifies a built-in terminal emulation thathandles the machine's own display. If the value of @env{TERM} indicatesthat Emacs runs in non-windowed mode from @command{xterm} or a similarterminal emulator, the background mode defaults to @samp{light}, andEmacs will choose colors that are appropriate for a light background.@item TERMCAPThe name of the termcap library file describing how to program theterminal specified by the @env{TERM} variable. This defaults to@file{/etc/termcap}.@item TMPDIRUsed by the Emerge package as a prefix for temporary files.@item TZThis specifies the current time zone and possibly also daylightsaving time information. On MS-DOS, if @env{TZ} is not set in theenvironment when Emacs starts, Emacs defines a default value asappropriate for the country code returned by DOS. On MS-Windows, Emacsdoes not use @env{TZ} at all.@item USERThe user's login name. See also @env{LOGNAME}. On MS-DOS, thisdefaults to @samp{root}.@item VERSION_CONTROLUsed to initialize the @code{version-control} variable (@pxref{BackupNames}).@end table@node Misc Variables@appendixsubsec Miscellaneous VariablesThese variables are used only on particular configurations:@table @env@item COMSPECOn MS-DOS and MS-Windows, the name of the command interpreter to usewhen invoking batch files and commands internal to the shell. On MS-DOSthis is also used to make a default value for the @env{SHELL} environmentvariable.@item NAMEOn MS-DOS, this variable defaults to the value of the @env{USER}variable.@item TEMP@itemx TMPOn MS-DOS and MS-Windows, these specify the name of the directory forstoring temporary files in.@item EMACSTESTOn MS-DOS, this specifies a file to use to log the operation of theinternal terminal emulator. This feature is useful for submitting bugreports.@item EMACSCOLORSOn MS-DOS, this specifies the screen colors. It is useful to set themthis way, since otherwise Emacs would display the default colorsmomentarily when it starts up.The value of this variable should be the two-character encoding of theforeground (the first character) and the background (the secondcharacter) colors of the default face. Each character should be thehexadecimal code for the desired color on a standard PC text-modedisplay. For example, to get blue text on a light gray background,specify @samp{EMACSCOLORS=17}, since 1 is the code of the blue color and7 is the code of the light gray color.The PC display usually supports only eight background colors. However,Emacs switches the DOS display to a mode where all 16 colors can be usedfor the background, so all four bits of the background color areactually used.@item WINDOW_GFXUsed when initializing the Sun windows system.@item PRELOAD_WINSOCKOn MS-Windows, if you set this variable, Emacs will load and initializethe network library at startup, instead of waiting until the firsttime it is required.@item emacs_dirOn MS-Windows, @env{emacs_dir} is a special environment variable, whichindicates the full path of the directory in which Emacs is installed.If Emacs is installed in the standard directory structure, itcalculates this value automatically. It is not much use setting thisvariable yourself unless your installation is non-standard, sinceunlike other environment variables, it will be overridden by Emacs atstartup. When setting other environment variables, such as@env{EMACSLOADPATH}, you may find it useful to use @env{emacs_dir}rather than hard-coding an absolute path. This allows multipleversions of Emacs to share the same environment variable settings, andit allows you to move the Emacs installation directory, withoutchanging any environment or registry settings.@end table@node MS-Windows Registry@appendixsubsec The MS-Windows System Registry@pindex addpm, MS-Windows installation program@cindex registry, setting environment variables and resources on MS-WindowsOn MS-Windows, the installation program @command{addpm.exe} adds valuesfor @env{emacs_dir}, @env{EMACSLOADPATH}, @env{EMACSDATA},@env{EMACSPATH}, @env{EMACSDOC}, @env{SHELL} and @env{TERM} to the@file{HKEY_LOCAL_MACHINE} section of the system registry, under@file{/Software/GNU/Emacs}. It does this because there is no standardplace to set environment variables across different versions ofWindows. Running @command{addpm.exe} is no longer strictlynecessary in recent versions of Emacs, but if you are upgrading froman older version, running @command{addpm.exe} ensures that you do not haveolder registry entries from a previous installation, which may not becompatible with the latest version of Emacs.When Emacs starts, as well as checking the environment, it also checksthe System Registry for those variables and for @env{HOME}, @env{LANG}and @env{PRELOAD_WINSOCK}.To determine the value of those variables, Emacs goes through thefollowing procedure. First, the environment is checked. If thevariable is not found there, Emacs looks for registry keys by thatname under @file{/Software/GNU/Emacs}; first in the@file{HKEY_CURRENT_USER} section of the registry, and if not foundthere, in the @file{HKEY_LOCAL_MACHINE} section. Finally, if Emacsstill cannot determine the values, compiled-in defaults are used.In addition to the environment variables above, you can also add manyof the settings which on X belong in the @file{.Xdefaults} file(@pxref{X Resources}) to the @file{/Software/GNU/Emacs} registry key.Settings you add to the @file{HKEY_LOCAL_MACHINE} section will affectall users of the machine. Settings you add to the@file{HKEY_CURRENT_USER} section will only affect you, and willoverride machine wide settings.@node Display X@appendixsec Specifying the Display Name@cindex display name (X Window System)@cindex @env{DISPLAY} environment variable The environment variable @env{DISPLAY} tells all X clients, includingEmacs, where to display their windows. Its value is set by defaultin ordinary circumstances, when you start an X server and run jobslocally. Occasionally you may need to specify the display yourself; forexample, if you do a remote login and want to run a client programremotely, displaying on your local screen. With Emacs, the main reason people change the default display is tolet them log into another system, run Emacs on that system, but have thewindow displayed at their local terminal. You might need to log into another system because the files you want to edit are there, orbecause the Emacs executable file you want to run is there. The syntax of the @env{DISPLAY} environment variable is@samp{@var{host}:@var{display}.@var{screen}}, where @var{host} is thehost name of the X Window System server machine, @var{display} is anarbitrarily-assigned number that distinguishes your server (X terminal)from other servers on the same machine, and @var{screen} is ararely-used field that allows an X server to control multiple terminalscreens. The period and the @var{screen} field are optional. Ifincluded, @var{screen} is usually zero. For example, if your host is named @samp{glasperle} and your server isthe first (or perhaps the only) server listed in the configuration, your@env{DISPLAY} is @samp{glasperle:0.0}. You can specify the display name explicitly when you run Emacs, eitherby changing the @env{DISPLAY} variable, or with the option @samp{-d@var{display}} or @samp{--display=@var{display}}. Here is an example:@smallexampleemacs --display=glasperle:0 &@end smallexample You can inhibit the direct use of the window system and GUI with the@samp{-nw} option. It tells Emacs to display using ordinary @acronym{ASCII} onits controlling terminal. This is also an initial option. Sometimes, security arrangements prevent a program on a remote systemfrom displaying on your local system. In this case, trying to run Emacsproduces messages like this:@smallexampleXlib: connection to "glasperle:0.0" refused by server@end smallexample@noindentYou might be able to overcome this problem by using the @command{xhost}command on the local system to give permission for access from yourremote machine.@node Font X@appendixsec Font Specification Options@cindex font name (X Window System) By default, Emacs displays text in a twelve point Courier font (whenusing X). You can specify a different font on your command linethrough the option @samp{-fn @var{name}} (or @samp{--font}, which isan alias for @samp{-fn}).@table @samp@item -fn @var{name}@opindex -fn@itemx --font=@var{name}@opindex --font@cindex specify default font from the command lineUse font @var{name} as the default font.@end table Under X, each font has a long name which consists of fourteen wordsor numbers, separated by dashes. Some fonts also have shorternicknames. For instance, @samp{9x15} is such a nickname. This fontmakes each character nine pixels wide and fifteen pixels high. Youcan use either kind of name. Case is insignificant in both kinds.You can use wildcard patterns for the font name; then Emacs lets Xchoose one of the fonts that match the pattern. The wildcardcharacter @samp{*} matches any sequence of characters (including none)and @samp{?} matches any single character. However, matching isimplementation-dependent, and can be inaccurate when wildcards matchdashes in a long name. For reliable results, supply all 14 dashes anduse wildcards only within a field. Here is an example, which happensto specify the font whose nickname is @samp{6x13}:@smallexampleemacs -fn \ "-misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1" &@end smallexample@noindentYou can also specify the font in your @file{.Xdefaults} file:@smallexampleemacs.font: -misc-fixed-medium-r-semicondensed--13-*-*-*-c-60-iso8859-1@end smallexample Note that if you use a wildcard pattern on the command line, youneed to enclose it in single or double quotes, to prevent the shellfrom accidentally expanding it into a list of file names. On theother hand, you should not quote the name in the @file{.Xdefaults}file.The default font used by Emacs (under X) is:@smallexample-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1@end smallexample A long font name has the following form:@smallexample-@var{maker}-@var{family}-@var{weight}-@var{slant}-@var{widthtype}-@var{style}@dots{}@dots{}-@var{pixels}-@var{height}-@var{horiz}-@var{vert}-@var{spacing}-@var{width}-@var{registry}-@var{encoding}@end smallexample@table @var@item makerThis is the name of the font manufacturer.@item familyThis is the name of the font family---for example, @samp{courier}.@item weightThis is normally @samp{bold}, @samp{medium} or @samp{light}. Otherwords may appear here in some font names.@item slantThis is @samp{r} (roman), @samp{i} (italic), @samp{o} (oblique),@samp{ri} (reverse italic), or @samp{ot} (other).@item widthtypeThis is normally @samp{condensed}, @samp{extended}, @samp{semicondensed}or @samp{normal}. Other words may appear here in some font names.@item styleThis is an optional additional style name. Usually it is empty---mostlong font names have two hyphens in a row at this point.@item pixelsThis is the font height, in pixels.@item heightThis is the font height on the screen, measured in tenths of a printer'spoint---approximately 1/720 of an inch. In other words, it is the pointsize of the font, times ten. For a given vertical resolution,@var{height} and @var{pixels} are proportional; therefore, it is commonto specify just one of them and use @samp{*} for the other.@item horizThis is the horizontal resolution, in pixels per inch, of the screen forwhich the font is intended.@item vertThis is the vertical resolution, in pixels per inch, of the screen forwhich the font is intended. Normally the resolution of the fonts onyour system is the right value for your screen; therefore, you normallyspecify @samp{*} for this and @var{horiz}.@item spacingThis is @samp{m} (monospace), @samp{p} (proportional) or @samp{c}(character cell).@item widthThis is the average character width, in pixels, multiplied by ten.@item registry@itemx encodingThese together make up the X font character set that the font depicts.(X font character sets are not the same as Emacs charsets, but theyare solutions for the same problem.) You can use the@command{xfontsel} program to check which choices you have. However,normally you should use @samp{iso8859} for @var{registry} and @samp{1}for @var{encoding}.@end table@cindex listing system fonts You will probably want to use a fixed-width default font---that is,a font in which all characters have the same width. Any font with@samp{m} or @samp{c} in the @var{spacing} field of the long name is afixed-width font. Here's how to use the @command{xlsfonts} program tolist all the fixed-width fonts available on your system:@examplexlsfonts -fn '*x*' | egrep "^[0-9]+x[0-9]+"xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-m*'xlsfonts -fn '*-*-*-*-*-*-*-*-*-*-*-c*'@end example@noindentTo see what a particular font looks like, use the @command{xfd} command.For example:@examplexfd -fn 6x13@end example@noindentdisplays the entire font @samp{6x13}. While running Emacs, you can set the font of the current frame(@pxref{Frame Parameters}) or for a specific kind of text(@pxref{Faces}).@node Colors@appendixsec Window Color Options@cindex color of window@cindex text colors, from command line@findex list-colors-display@cindex available colors On a color display, you can specify which color to use for variousparts of the Emacs display. To find out what colors are available onyour system, type @kbd{M-x list-colors-display}, or press@kbd{C-Mouse-2} and select @samp{Display Colors} from the pop-up menu.(A particular window system might support many more colors, but thelist displayed by @code{list-colors-display} shows their portablesubset that can be safely used on any display supported by Emacs.)If you do not specify colors, on windowed displays the default for thebackground is white and the default for all other colors is black. On amonochrome display, the foreground is black, the background is white,and the border is gray if the display supports that. On terminals, thebackground is usually black and the foreground is white. Here is a list of the command-line options for specifying colors:@table @samp@item -fg @var{color}@opindex -fg@itemx --foreground-color=@var{color}@opindex --foreground-color@cindex foreground color, command-line argumentSpecify the foreground color. @var{color} should be a standard colorname, or a numeric specification of the color's red, green, and bluecomponents as in @samp{#4682B4} or @samp{RGB:46/82/B4}.@item -bg @var{color}@opindex -bg@itemx --background-color=@var{color}@opindex --background-color@cindex background color, command-line argumentSpecify the background color.@item -bd @var{color}@opindex -bd@itemx --border-color=@var{color}@opindex --border-color@cindex border color, command-line argumentSpecify the color of the border of the X window.@item -cr @var{color}@opindex -cr@itemx --cursor-color=@var{color}@opindex --cursor-color@cindex cursor color, command-line argumentSpecify the color of the Emacs cursor which indicates where point is.@item -ms @var{color}@opindex -ms@itemx --mouse-color=@var{color}@opindex --mouse-color@cindex mouse pointer color, command-line argumentSpecify the color for the mouse cursor when the mouse is in the Emacs window.@item -r@opindex -r@itemx -rv@opindex -rv@itemx --reverse-video@opindex --reverse-video@cindex reverse video, command-line argumentReverse video---swap the foreground and background colors.@item --color=@var{mode}@opindex --color@cindex standard colors on a character terminalFor a character terminal only, specify the mode of color support. Theparameter @var{mode} can be one of the following:@table @samp@item never@itemx noDon't use colors even if the terminal's capabilities specify colorsupport.@item default@itemx autoSame as when @option{--color} is not used at all: Emacs detects atstartup whether the terminal supports colors, and if it does, turns oncolored display.@item always@itemx yes@itemx ansi8Turn on the color support unconditionally, and use color commandsspecified by the ANSI escape sequences for the 8 standard colors.@item @var{num}Use color mode for @var{num} colors. If @var{num} is -1, turn offcolor support (equivalent to @samp{never}); if it is 0, use thedefault color support for this terminal (equivalent to @samp{auto});otherwise use an appropriate standard mode for @var{num} colors.Depending on your terminal's capabilities, Emacs might be able to turnon a color mode for 8, 16, 88, or 256 as the value of @var{num}. Ifthere is no mode that supports @var{num} colors, Emacs acts as if@var{num} were 0, i.e.@: it uses the terminal's default color supportmode.@end tableIf @var{mode} is omitted, it defaults to @var{ansi8}.@end table For example, to use a coral mouse cursor and a slate blue text cursor,enter:@exampleemacs -ms coral -cr 'slate blue' &@end example You can reverse the foreground and background colors through the@samp{-rv} option or with the X resource @samp{reverseVideo}. The @samp{-fg}, @samp{-bg}, and @samp{-rv} options function ontext-only terminals as well as on window systems.@node Window Size X@appendixsec Options for Window Size and Position@cindex geometry of Emacs window@cindex position and size of Emacs frame@cindex width and height of Emacs frame@cindex specifying fullscreen for Emacs frame Here is a list of the command-line options for specifying size andposition of the initial Emacs frame:@table @samp@item -g @var{width}x@var{height}@r{[@{}+-@r{@}}@var{xoffset}@r{@{}+-@r{@}}@var{yoffset}@r{]]}@opindex -g@itemx --geometry=@var{width}x@var{height}@r{[@{}+-@r{@}}@var{xoffset}@r{@{}+-@r{@}}@var{yoffset}@r{]]}@opindex --geometry@cindex geometry, command-line argumentSpecify the size @var{width} and @var{height} (measured in charactercolumns and lines), and positions @var{xoffset} and @var{yoffset}(measured in pixels). This applies to all frames.@item -fs@opindex -fs@itemx --fullscreen@opindex --fullscreen@cindex fullscreen, command-line argumentSpecify that width and height shall be the size of the screen.@item -fh@opindex -fh@itemx --fullheight@opindex --fullheight@cindex fullheight, command-line argumentSpecify that the height shall be the height of the screen.@item -fw@opindex -fw@itemx --fullwidth@opindex --fullwidth@cindex fullwidth, command-line argumentSpecify that the width shall be the width of the screen.@end table@noindentIn the @samp{--geometry} option, @code{@r{@{}+-@r{@}}} means either a plus sign or a minus sign. A plussign before @var{xoffset} means it is the distance from the left side ofthe screen; a minus sign means it counts from the right side. A plussign before @var{yoffset} means it is the distance from the top of thescreen, and a minus sign there indicates the distance from the bottom.The values @var{xoffset} and @var{yoffset} may themselves be positive ornegative, but that doesn't change their meaning, only their direction. Emacs uses the same units as @command{xterm} does to interpret the geometry.The @var{width} and @var{height} are measured in characters, so a large fontcreates a larger frame than a small font. (If you specify a proportionalfont, Emacs uses its maximum bounds width as the width unit.) The@var{xoffset} and @var{yoffset} are measured in pixels. You do not have to specify all of the fields in the geometryspecification. If you omit both @var{xoffset} and @var{yoffset}, thewindow manager decides where to put the Emacs frame, possibly byletting you place it with the mouse. For example, @samp{164x55}specifies a window 164 columns wide, enough for two ordinary widthwindows side by side, and 55 lines tall. The default width for Emacs is 80 characters and the default height is40 lines. You can omit either the width or the height or both. Ifyou start the geometry with an integer, Emacs interprets it as thewidth. If you start with an @samp{x} followed by an integer, Emacsinterprets it as the height. Thus, @samp{81} specifies just the width;@samp{x45} specifies just the height. If you start with @samp{+} or @samp{-}, that introduces an offset,which means both sizes are omitted. Thus, @samp{-3} specifies the@var{xoffset} only. (If you give just one offset, it is always@var{xoffset}.) @samp{+3-3} specifies both the @var{xoffset} and the@var{yoffset}, placing the frame near the bottom left of the screen. You can specify a default for any or all of the fields in@file{.Xdefaults} file, and then override selected fields with a@samp{--geometry} option. Since the mode line and the echo area occupy the last 2 lines of theframe, the height of the initial text window is 2 less than the heightspecified in your geometry. In non-X-toolkit versions of Emacs, themenu bar also takes one line of the specified number. But in the Xtoolkit version, the menu bar is additional and does not count againstthe specified height. The tool bar, if present, is also additional. Enabling or disabling the menu bar or tool bar alters the amount ofspace available for ordinary text. Therefore, if Emacs starts up witha tool bar (which is the default), and handles the geometryspecification assuming there is a tool bar, and then your@file{~/.emacs} file disables the tool bar, you will end up with aframe geometry different from what you asked for. To get the intendedsize with no tool bar, use an X resource to specify ``no tool bar''(@pxref{Table of Resources}); then Emacs will already know there's notool bar when it processes the specified geometry. When using one of @samp{--fullscreen}, @samp{--fullwidth} or@samp{--fullheight} there may be some space around the frameanyway. That is because Emacs rounds the sizes so they are aneven number of character heights and widths. Some window managers have options that can make them ignore bothprogram-specified and user-specified positions (sawfish is one).If these are set, Emacs fails to position the window correctly.@node Borders X@appendixsec Internal and External Borders@cindex borders (X Window System) An Emacs frame has an internal border and an external border. Theinternal border is an extra strip of the background color around thetext portion of the frame. Emacs itself draws the internal border.The external border is added by the window manager outside the frame;depending on the window manager you use, it may contain various boxesyou can click on to move or iconify the window.@table @samp@item -ib @var{width}@opindex -ib@itemx --internal-border=@var{width}@opindex --internal-border@cindex internal border width, command-line argumentSpecify @var{width} as the width of the internal border (between the textand the main border), in pixels.@item -bw @var{width}@opindex -bw@itemx --border-width=@var{width}@opindex --border-width@cindex main border width, command-line argumentSpecify @var{width} as the width of the main border, in pixels.@end table When you specify the size of the frame, that does not count theborders. The frame's position is measured from the outside edge of theexternal border. Use the @samp{-ib @var{n}} option to specify an internal border@var{n} pixels wide. The default is 1. Use @samp{-bw @var{n}} tospecify the width of the external border (though the window manager maynot pay attention to what you specify). The default width of theexternal border is 2.@node Title X@appendixsec Frame Titles An Emacs frame may or may not have a specified title. The frametitle, if specified, appears in window decorations and icons as thename of the frame. If an Emacs frame has no specified title, thedefault title has the form @samp{@var{invocation-name}@@@var{machine}}(if there is only one frame) or the selected window's buffer name (ifthere is more than one frame). You can specify a title for the initial Emacs frame with a commandline option:@table @samp@item -T @var{title}@opindex -T@itemx --title=@var{title}@opindex --title@cindex frame title, command-line argumentSpecify @var{title} as the title for the initial Emacs frame.@end table The @samp{--name} option (@pxref{Resources}) also specifies the titlefor the initial Emacs frame.@node Icons X@appendixsec Icons@cindex icons (X Window System) Most window managers allow the user to ``iconify'' a frame, removingit from sight, and leaving a small, distinctive ``icon'' window in itsplace. Clicking on the icon window makes the frame itself appear again.If you have many clients running at once, you can avoid cluttering upthe screen by iconifying most of the clients.@table @samp@item -i@opindex -i@itemx --icon-type@opindex --icon-type@cindex Emacs icon, a gnuUse a picture of a gnu as the Emacs icon.@item -iconic@opindex --iconic@itemx --iconic@cindex start iconified, command-line argumentStart Emacs in iconified state.@end table The @samp{-i} or @samp{--icon-type} option tells Emacs to use an iconwindow containing a picture of the GNU gnu. If omitted, Emacs lets thewindow manager choose what sort of icon to use---usually just a smallrectangle containing the frame's title. The @samp{-iconic} option tells Emacs to begin running as an icon,rather than showing a frame right away. In this situation, the iconis the only indication that Emacs has started; the text frame doesn'tappear until you deiconify it.@node Misc X@appendixsec Other Display Options@table @samp@item -hb@opindex -hb@itemx --horizontal-scroll-bars@opindex --horizontal-scroll-bars@c @cindex horizontal scroll bars, command-line argumentEnable horizontal scroll bars. Since horizontal scroll barsare not yet implemented, this actually does nothing.@item -vb@opindex -vb@itemx --vertical-scroll-bars@opindex --vertical-scroll-bars@cindex vertical scroll bars, command-line argumentEnable vertical scroll bars.@item -lsp @var{pixels}@opindex -lsp@itemx --line-spacing=@var{pixels}@opindex --line-spacing@cindex line spacing, command-line argumentSpecify @var{pixels} as additional space to put between lines, in pixels.@item -nbc@opindex -nbc@itemx --no-blinking-cursor@opindex --no-blinking-cursor@cindex blinking cursor disable, command-line argumentDisable the blinking cursor on graphical terminals.@end table The @samp{--xrm} option (@pxref{Resources}) specifies additionalX resource values.@ignore arch-tag: fffecd9e-7329-4a51-a3cc-dd4a9889340e@end ignore