@c This is part of the Emacs manual.@c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002,@c 2003, 2004, 2005 Free Software Foundation, Inc.@c See file emacs.texi for copying conditions.@node Glossary, Key Index, Intro, Top@unnumbered Glossary@table @asis@item AbbrevAn abbrev is a text string which expands into a different text stringwhen present in the buffer. For example, you might define a few lettersas an abbrev for a long phrase that you want to insert frequently.@xref{Abbrevs}.@item AbortingAborting means getting out of a recursive edit (q.v.@:). Thecommands @kbd{C-]} and @kbd{M-x top-level} are used for this.@xref{Quitting}.@item AltAlt is the name of a modifier bit which a keyboard input character mayhave. To make a character Alt, type it while holding down the @key{ALT}key. Such characters are given names that start with @kbd{Alt-}(usually written @kbd{A-} for short). (Note that many terminals have akey labeled @key{ALT} which is really a @key{META} key.) @xref{UserInput, Alt}.@item ArgumentSee `numeric argument.'@item @acronym{ASCII} characterAn @acronym{ASCII} character is either an @acronym{ASCII} control character or an @acronym{ASCII}printing character. @xref{User Input}.@item @acronym{ASCII} control characterAn @acronym{ASCII} control character is the Control version of an upper-caseletter, or the Control version of one of the characters @samp{@@[\]^_?}.@item @acronym{ASCII} printing character@acronym{ASCII} printing characters include letters, digits, space, and thesepunctuation characters: @samp{!@@#$%^& *()_-+=|\~` @{@}[]:;"' <>,.?/}.@item Auto Fill ModeAuto Fill mode is a minor mode in which text that you insert isautomatically broken into lines of a given maximum width.@xref{Filling}.@item Auto SavingAuto saving is the practice of saving the contents of an Emacs buffer ina specially-named file, so that the information will not be lost if thebuffer is lost due to a system error or user error. @xref{Auto Save}.@item AutoloadingEmacs automatically loads Lisp libraries when a Lisp program requests afunction or a variable from those libraries. This is called`autoloading'. @xref{Lisp Libraries}.@item BacktraceA backtrace is a trace of a series of function calls showing how aprogram arrived to a certain point. It is used mainly for finding andcorrecting bugs (q.v.@:). Emacs can display a backtrace when it signalsan error or when you type @kbd{C-g} (see `quitting'). @xref{Checklist}.@item Backup FileA backup file records the contents that a file had before the currentediting session. Emacs makes backup files automatically to help youtrack down or cancel changes you later regret making. @xref{Backup}.@item Balancing ParenthesesEmacs can balance parentheses (or other matching delimiters) eithermanually or automatically. You do manual balancing with the commandsto move over parenthetical groupings (@pxref{Moving by Parens}).Automatic balancing works by blinking or highlighting the delimiterthat matches the one you just inserted (@pxref{Matching,,MatchingParens}).@item Balanced ExpressionsA balanced expression is a syntactically recognizable expression, suchas a symbol, number, string constant, block, or parenthesized expressionin C. @xref{Expressions,Balanced Expressions}.@item Balloon HelpSee `tooltips.'@item Base BufferA base buffer is a buffer whose text is shared by an indirect buffer(q.v.@:).@item BindTo bind a key sequence means to give it a binding (q.v.@:).@xref{Rebinding}.@item BindingA key sequence gets its meaning in Emacs by having a binding, which is acommand (q.v.@:), a Lisp function that is run when the user types thatsequence. @xref{Commands,Binding}. Customization often involvesrebinding a character to a different command function. The bindings ofall key sequences are recorded in the keymaps (q.v.@:). @xref{Keymaps}.@item Blank LinesBlank lines are lines that contain only whitespace. Emacs has severalcommands for operating on the blank lines in the buffer.@item BookmarkBookmarks are akin to registers (q.v.@:) in that they record positionsin buffers to which you can return later. Unlike registers, bookmarkspersist between Emacs sessions.@item BorderA border is a thin space along the edge of the frame, used just forspacing, not for displaying anything. An Emacs frame has an ordinaryexternal border, outside of everything including the menu bar, plus aninternal border that surrounds the text windows and their scroll barsand separates them from the menu bar and tool bar. You can customizeboth borders with options and resources (@pxref{Borders X}). Bordersare not the same as fringes (q.v.@:).@item BufferThe buffer is the basic editing unit; one buffer corresponds to one textbeing edited. You can have several buffers, but at any time you areediting only one, the `current buffer,' though several can be visiblewhen you are using multiple windows (q.v.@:). Most buffers are visiting(q.v.@:) some file. @xref{Buffers}.@item Buffer Selection HistoryEmacs keeps a buffer selection history which records how recently eachEmacs buffer has been selected. This is used for choosing a buffer toselect. @xref{Buffers}.@item BugA bug is an incorrect or unreasonable behavior of a program, orinaccurate or confusing documentation. Emacs developers treat bugreports, both in Emacs code and its documentation, very seriously andask you to report any bugs you find. @xref{Bugs}.@item Button Down EventA button down event is the kind of input event generated right away whenyou press down on a mouse button. @xref{Mouse Buttons}.@item By DefaultSee `default.'@item Byte CompilationSee `compilation.'@item @kbd{C-}@kbd{C-} in the name of a character is an abbreviation for Control.@xref{User Input,C-}.@item @kbd{C-M-}@kbd{C-M-} in the name of a character is an abbreviation forControl-Meta. @xref{User Input,C-M-}.@item Case ConversionCase conversion means changing text from upper case to lower case orvice versa. @xref{Case}, for the commands for case conversion.@item CharacterCharacters form the contents of an Emacs buffer; see @ref{TextCharacters}. Also, key sequences (q.v.@:) are usually made up ofcharacters (though they may include other input events as well).@xref{User Input}.@item Character SetEmacs supports a number of character sets, each of which represents aparticular alphabet or script. @xref{International}.@item Character TerminalSee `text-only terminal.'@item Click EventA click event is the kind of input event generated when you press amouse button and release it without moving the mouse. @xref{Mouse Buttons}.@item ClipboardA clipboard is a buffer provided by the window system for transferringtext between applications. On the X Window system, the clipboard isprovided in addition to the primary selection (q.v.@:); on MS-Windows,the clipboard is used @emph{instead} of the primary selection.@xref{Clipboard}.@item Coding SystemA coding system is an encoding for representing text characters in afile or in a stream of information. Emacs has the ability to converttext to or from a variety of coding systems when reading or writing it.@xref{Coding Systems}.@item CommandA command is a Lisp function specially defined to be able to serve as akey binding in Emacs. When you type a key sequence (q.v.@:), itsbinding (q.v.@:) is looked up in the relevant keymaps (q.v.@:) to findthe command to run. @xref{Commands}.@item Command HistorySee `minibuffer history.'@item Command NameA command name is the name of a Lisp symbol which is a command(@pxref{Commands}). You can invoke any command by its name using@kbd{M-x} (@pxref{M-x,M-x,Running Commands by Name}).@item CommentA comment is text in a program which is intended only for humans readingthe program, and which is marked specially so that it will be ignoredwhen the program is loaded or compiled. Emacs offers special commandsfor creating, aligning and killing comments. @xref{Comments}.@item Common LispCommon Lisp is a dialect of Lisp (q.v.@:) much larger and more powerfulthan Emacs Lisp. Emacs provides a subset of Common Lisp in the CLpackage. @xref{Top, Common Lisp, Overview, cl, Common Lisp Extensions}.@item CompilationCompilation is the process of creating an executable program from sourcecode. Emacs has commands for compiling files of Emacs Lisp code(@pxref{Byte Compilation,,, elisp, the Emacs LispReference Manual}) and programs in C and other languages(@pxref{Compilation}).@item Complete KeyA complete key is a key sequence which fully specifies one action to beperformed by Emacs. For example, @kbd{X} and @kbd{C-f} and @kbd{C-x m}are complete keys. Complete keys derive their meanings from being bound(q.v.@:) to commands (q.v.@:). Thus, @kbd{X} is conventionally bound toa command to insert @samp{X} in the buffer; @kbd{C-x m} isconventionally bound to a command to begin composing a mail message.@xref{Keys}.@item CompletionCompletion is what Emacs does when it automatically fills out anabbreviation for a name into the entire name. Completion is done forminibuffer (q.v.@:) arguments when the set of possible valid inputsis known; for example, on command names, buffer names, andfile names. Completion occurs when @key{TAB}, @key{SPC} or @key{RET}is typed. @xref{Completion}.@refill@item Continuation LineWhen a line of text is longer than the width of the window, ittakes up more than one screen line when displayed. We say that thetext line is continued, and all screen lines used for it after thefirst are called continuation lines. @xref{Continuation Lines}.A related Emacs feature is `filling' (q.v.@:).@item Control CharacterA control character is a character that you type by holding down the@key{CTRL} key. Some control characters also have their own keys, sothat you can type them without using @key{CTRL}. For example,@key{RET}, @key{TAB}, @key{ESC} and @key{DEL} are all controlcharacters. @xref{User Input}.@item CopyleftA copyleft is a notice giving the public legal permission toredistribute and modify a program or other work of art, but requiringmodified versions to carry similar permission. Copyright is normallyused to keep users divided and helpless; with copyleft we turn thataround to empower users and encourage them to cooperate.The particular form of copyleft used by the GNU project is called theGNU General Public License. @xref{Copying}.@item @key{CTRL}The @key{CTRL} or ``control'' key is what you hold downin order to enter a control character (q.v.).@item Current BufferThe current buffer in Emacs is the Emacs buffer on which most editingcommands operate. You can select any Emacs buffer as the current one.@xref{Buffers}.@item Current LineThe current line is the line that point is on (@pxref{Point}).@item Current ParagraphThe current paragraph is the paragraph that point is in. If point isbetween two paragraphs, the current paragraph is the one that followspoint. @xref{Paragraphs}.@item Current DefunThe current defun is the defun (q.v.@:) that point is in. If point isbetween defuns, the current defun is the one that follows point.@xref{Defuns}.@item CursorThe cursor is the rectangle on the screen which indicates the positioncalled point (q.v.@:) at which insertion and deletion takes place.The cursor is on or under the character that follows point. Oftenpeople speak of `the cursor' when, strictly speaking, they mean`point.' @xref{Point,Cursor}.@item CustomizationCustomization is making minor changes in the way Emacs works. It isoften done by setting variables (@pxref{Variables}) or faces(@pxref{Face Customization}), or by rebinding key sequences(@pxref{Keymaps}).@cindex cut and paste@item Cut and PasteSee `killing' and `yanking.'@item Default ArgumentThe default for an argument is the value that will be assumed if youdo not specify one. When the minibuffer is used to read an argument,the default argument is used if you just type @key{RET}.@xref{Minibuffer}.@item DefaultA default is the value that is used for a certain purpose if and whenyou do not specify a value to use.@item Default DirectoryWhen you specify a file name that does not start with @samp{/} or @samp{~},it is interpreted relative to the current buffer's default directory.(On MS-Windows and MS-DOS, file names which start with a drive letter@samp{@var{x}:} are treated as absolute, not relative.)@xref{Minibuffer File,Default Directory}.@item DefunA defun is a major definition at the top level in a program. The name`defun' comes from Lisp, where most such definitions use the construct@code{defun}. @xref{Defuns}.@item @key{DEL}@key{DEL} is a character that runs the command to delete one characterof text before the cursor. It is typically either the @key{DELETE}key or the @key{BACKSPACE} key, whichever one is easy to type.@xref{Erasing,DEL}.@item DeletionDeletion means erasing text without copying it into the kill ring(q.v.@:). The alternative is killing (q.v.@:). @xref{Killing,Deletion}.@item Deletion of FilesDeleting a file means erasing it from the file system.@xref{Misc File Ops,Misc File Ops,Miscellaneous File Operations}.@item Deletion of MessagesDeleting a message means flagging it to be eliminated from your mailfile. Until you expunge (q.v.@:) the Rmail file, you can still undeletethe messages you have deleted. @xref{Rmail Deletion}.@item Deletion of WindowsDeleting a window means eliminating it from the screen. Other windowsexpand to use up the space. The deleted window can never come back,but no actual text is thereby lost. @xref{Windows}.@item DirectoryFile directories are named collections in the file system, within whichyou can place individual files or subdirectories. @xref{Directories}.@item DiredDired is the Emacs facility that displays the contents of a filedirectory and allows you to ``edit the directory,'' performingoperations on the files in the directory. @xref{Dired}.@item Disabled CommandA disabled command is one that you may not run without specialconfirmation. The usual reason for disabling a command is that it isconfusing for beginning users. @xref{Disabling}.@item Down EventShort for `button down event' (q.v.@:).@item Drag EventA drag event is the kind of input event generated when you press a mousebutton, move the mouse, and then release the button. @xref{MouseButtons}.@item Dribble FileA dribble file is a file into which Emacs writes all the characters thatthe user types on the keyboard. Dribble files are used to make a recordfor debugging Emacs bugs. Emacs does not make a dribble file unless youtell it to. @xref{Bugs}.@item Echo AreaThe echo area is the bottom line of the screen, used for echoing thearguments to commands, for asking questions, and showing brief messages(including error messages). The messages are stored in the buffer@samp{*Messages*} so you can review them later. @xref{Echo Area}.@item EchoingEchoing is acknowledging the receipt of input events by displayingthem (in the echo area). Emacs never echoes single-character keysequences; longer key sequences echo only if you pause while typingthem.@item ElectricWe say that a character is electric if it is normally self-inserting(q.v.@:), but the current major mode (q.v.@:) redefines it to do somethingelse as well. For example, some programming language major modes defineparticular delimiter characters to reindent the line or insert one ormore newlines in addition to self-insertion.@item End Of LineEnd of line is a character or a sequence of characters that indicatethe end of a text line. On GNU and Unix systems, this is a newline(q.v.@:), but other systems have other conventions. @xref{CodingSystems,end-of-line}. Emacs can recognize several end-of-lineconventions in files and convert between them.@item Environment VariableAn environment variable is one of a collection of variables stored bythe operating system, each one having a name and a value. Emacs canaccess environment variables set by its parent shell, and it can setvariables in the environment it passes to programs it invokes.@xref{Environment}.@item EOLSee `end of line.'@item ErrorAn error occurs when an Emacs command cannot execute in the currentcircumstances. When an error occurs, execution of the command stops(unless the command has been programmed to do otherwise) and Emacsreports the error by displaying an error message (q.v.@:). Type-aheadis discarded. Then Emacs is ready to read another editing command.@item Error MessageAn error message is a single line of output displayed by Emacs when theuser asks for something impossible to do (such as, killing textforward when point is at the end of the buffer). They appear in theecho area, accompanied by a beep.@item @key{ESC}@key{ESC} is a character used as a prefix for typing Meta characters onkeyboards lacking a @key{META} key. Unlike the @key{META} key (which,like the @key{SHIFT} key, is held down while another character istyped), you press the @key{ESC} key as you would press a letter key, andit applies to the next character you type.@item ExpressionSee `balanced expression.'@item ExpungingExpunging an Rmail file or Dired buffer or a Gnus newsgroup buffer is anoperation that truly discards the messages or files you have previouslyflagged for deletion.@item FaceA face is a style of displaying characters. It specifies attributessuch as font family and size, foreground and background colors,underline and strike-through, background stipple, etc. Emacs providesfeatures to associate specific faces with portions of buffer text, inorder to display that text as specified by the face attributes.@xref{Faces}.@item File LockingEmacs uses file locking to notice when two different usersstart to edit one file at the same time. @xref{Interlocking}.@item File NameA file name is a name that refers to a file. File names may be relativeor absolute; the meaning of a relative file name depends on the currentdirectory, but an absolute file name refers to the same file regardlessof which directory is current. On GNU and Unix systems, an absolutefile name starts with a slash (the root directory) or with @samp{~/} or@samp{~@var{user}/} (a home directory). On MS-Windows/MS-DOS, andabsolute file name can also start with a drive letter and a colon@samp{@var{d}:}.Some people use the term ``pathname'' for file names, but we do not;we use the word ``path'' only in the term ``search path'' (q.v.@:).@item File-Name ComponentA file-name component names a file directly within a particulardirectory. On GNU and Unix systems, a file name is a sequence offile-name components, separated by slashes. For example, @file{foo/bar}is a file name containing two components, @samp{foo} and @samp{bar}; itrefers to the file named @samp{bar} in the directory named @samp{foo} inthe current directory. MS-DOS/MS-Windows file names can also usebackslashes to separate components, as in @file{foo\bar}.@item Fill PrefixThe fill prefix is a string that should be expected at the beginningof each line when filling is done. It is not regarded as part of thetext to be filled. @xref{Filling}.@item FillingFilling text means shifting text between consecutive lines so that allthe lines are approximately the same length. @xref{Filling}. Someother editors call this feature `line wrapping.'@item Font LockFont Lock is a mode that highlights parts of buffer text according toits syntax. @xref{Font Lock}.@item FontsetA fontset is a named collection of fonts. A fontset specification listscharacter sets and which font to use to display each of them. Fontsetsmake it easy to change several fonts at once by specifying the name of afontset, rather than changing each font separately. @xref{Fontsets}.@item Formatted TextFormatted text is text that displays with formatting information whileyou edit. Formatting information includes fonts, colors, and specifiedmargins. @xref{Formatted Text}.@item Formfeed CharacterSee `page.'@item FrameA frame is a rectangular cluster of Emacs windows. Emacs starts outwith one frame, but you can create more. You can subdivide each frameinto Emacs windows (q.v.@:). When you are using a window system(q.v.@:), all the frames can be visible at the same time.@xref{Frames}. Some other editors use the term ``window'' for this,but in Emacs a window means something else.@item FringeOn a graphical terminal (q.v.@:), there's a narrow portion of theframe (q.v.@:) between the text area and the window's border. Emacsdisplays the fringe using a special face (q.v.@:) called@code{fringe}. @xref{Faces,fringe}.@item FTPFTP is an acronym for File Transfer Protocol. Emacs uses an FTP clientprogram to provide access to remote files (q.v.@:).@item Function KeyA function key is a key on the keyboard that sends input but does notcorrespond to any character. @xref{Function Keys}.@item GlobalGlobal means ``independent of the current environment; in effectthroughout Emacs.'' It is the opposite of local (q.v.@:). Particularexamples of the use of `global' appear below.@item Global AbbrevA global definition of an abbrev (q.v.@:) is effective in all majormodes that do not have local (q.v.@:) definitions for the same abbrev.@xref{Abbrevs}.@item Global KeymapThe global keymap (q.v.@:) contains key bindings that are in effectexcept when overridden by local key bindings in a major mode's localkeymap (q.v.@:). @xref{Keymaps}.@item Global Mark RingThe global mark ring records the series of buffers you have recentlyset a mark (q.v.@:) in. In many cases you can use this to backtrackthrough buffers you have been editing in, or in which you have foundtags (see `tags table'). @xref{Global Mark Ring}.@item Global SubstitutionGlobal substitution means replacing each occurrence of one string byanother string throughout a large amount of text. @xref{Replace}.@item Global VariableThe global value of a variable (q.v.@:) takes effect in all buffersthat do not have their own local (q.v.@:) values for the variable.@xref{Variables}.@item Graphic CharacterGraphic characters are those assigned pictorial images rather thanjust names. All the non-Meta (q.v.@:) characters except for theControl (q.v.@:) characters are graphic characters. These includeletters, digits, punctuation, and spaces; they do not include@key{RET} or @key{ESC}. In Emacs, typing a graphic character insertsthat character (in ordinary editing modes). @xref{Inserting Text}.@item Graphical TerminalA graphical terminal is one that can display images and multiple fonts.Usually it also has a window system (q.v.@:).@item HighlightingHighlighting text means displaying it with a different foreground and/orbackground color to make it stand out from the rest of the text in thebuffer.Emacs uses highlighting in several ways. When you mark a region withthe mouse, the region is always highlighted. Optionally Emacs canalso highlight the region whenever it is active (@pxref{TransientMark}). Incremental search also highlights matches (@pxref{IncrementalSearch}). See also `font lock'.@item HardcopyHardcopy means printed output. Emacs has commands for making printedlistings of text in Emacs buffers. @xref{Printing}.@item @key{HELP}@key{HELP} is the Emacs name for @kbd{C-h} or @key{F1}. You can type@key{HELP} at any time to ask what options you have, or to ask what anycommand does. @xref{Help}.@item Help EchoHelp echo is a short message displayed in the echo area when the mousepointer is located on portions of display that require someexplanations. Emacs displays help echo for menu items, parts of themode line, tool-bar buttons, etc. On graphics displays, the messagescan be displayed as tooltips (q.v.@:). @xref{Tooltips}.@item HookA hook is a list of functions to be called on specific occasions, suchas saving a buffer in a file, major mode activation, etc. Bycustomizing the various hooks, you can modify Emacs's behavior withoutchanging any of its code. @xref{Hooks}.@item HyperHyper is the name of a modifier bit which a keyboard input character mayhave. To make a character Hyper, type it while holding down the@key{HYPER} key. Such characters are given names that start with@kbd{Hyper-} (usually written @kbd{H-} for short). @xref{User Input,Hyper}.@item InboxAn inbox is a file in which mail is delivered by the operating system.Rmail transfers mail from inboxes to Rmail files (q.v.@:) in which themail is then stored permanently or until explicitly deleted.@xref{Rmail Inbox}.@item Incremental SearchEmacs provides an incremental search facility, whereby Emacs searchesfor the string as you type it. @xref{Incremental Search}.@item IndentationIndentation means blank space at the beginning of a line. Mostprogramming languages have conventions for using indentation toilluminate the structure of the program, and Emacs has specialcommands to adjust indentation.@xref{Indentation}.@item Indirect BufferAn indirect buffer is a buffer that shares the text of another buffer,called its base buffer (q.v.@:). @xref{Indirect Buffers}.@item InfoInfo is the hypertext format used by the GNU project for writingdocumentation.@item Input EventAn input event represents, within Emacs, one action taken by the user onthe terminal. Input events include typing characters, typing functionkeys, pressing or releasing mouse buttons, and switching between Emacsframes. @xref{User Input}.@item Input MethodAn input method is a system for entering non-@acronym{ASCII} text characters bytyping sequences of @acronym{ASCII} characters (q.v.@:). @xref{Input Methods}.@item InsertionInsertion means copying text into the buffer, either from the keyboardor from some other place in Emacs.@item InterlockingInterlocking is a feature for warning when you start to alter a filethat someone else is already editing.@xref{Interlocking,Interlocking,Simultaneous Editing}.@item IsearchSee `incremental search.'@item JustificationJustification means adding extra spaces within lines of text to makethem extend exactly to a specified width.@xref{Format Justification}.@item KeybindingSee `binding.'@item Keyboard MacroKeyboard macros are a way of defining new Emacs commands fromsequences of existing ones, with no need to write a Lisp program.@xref{Keyboard Macros}.@cindex keyboard shortcuts@item Keyboard ShortcutA keyboard shortcut is a key sequence (q.v.@:) which invokes acommand. What some programs call ``assigning a keyboard shortcut,''Emacs calls ``binding a key sequence''. See `binding.'@item Key SequenceA key sequence (key, for short) is a sequence of input events (q.v.@:)that are meaningful as a single unit. If the key sequence is enough tospecify one action, it is a complete key (q.v.@:); if it is not enough,it is a prefix key (q.v.@:). @xref{Keys}.@item KeymapThe keymap is the data structure that records the bindings (q.v.@:) ofkey sequences to the commands that they run. For example, the globalkeymap binds the character @kbd{C-n} to the command function@code{next-line}. @xref{Keymaps}.@item Keyboard Translation TableThe keyboard translation table is an array that translates the charactercodes that come from the terminal into the character codes that make upkey sequences.@item Kill RingThe kill ring is where all text you have killed recently is saved.You can reinsert any of the killed text still in the ring; this iscalled yanking (q.v.@:). @xref{Yanking}.@item KillingKilling means erasing text and saving it on the kill ring so it can beyanked (q.v.@:) later. Some other systems call this ``cutting.''Most Emacs commands that erase text perform killing, as opposed todeletion (q.v.@:). @xref{Killing}.@item Killing a JobKilling a job (such as, an invocation of Emacs) means making it ceaseto exist. Any data within it, if not saved in a file, is lost.@xref{Exiting}.@item Language EnvironmentYour choice of language environment specifies defaults for the inputmethod (q.v.@:) and coding system (q.v.@:). @xref{LanguageEnvironments}. These defaults are relevant if you edit non-@acronym{ASCII} text(@pxref{International}).@item Line WrappingSee `filling.'@item LispLisp is a programming language. Most of Emacs is written in a dialectof Lisp, called Emacs Lisp, that is extended with special features whichmake it especially suitable for text editing tasks.@item ListA list is, approximately, a text string beginning with an openparenthesis and ending with the matching close parenthesis. In C modeand other non-Lisp modes, groupings surrounded by other kinds of matcheddelimiters appropriate to the language, such as braces, are alsoconsidered lists. Emacs has special commands for many operations onlists. @xref{Moving by Parens}.@item LocalLocal means ``in effect only in a particular context''; the relevantkind of context is a particular function execution, a particularbuffer, or a particular major mode. It is the opposite of `global'(q.v.@:). Specific uses of `local' in Emacs terminology appear below.@item Local AbbrevA local abbrev definition is effective only if a particular major modeis selected. In that major mode, it overrides any global definitionfor the same abbrev. @xref{Abbrevs}.@item Local KeymapA local keymap is used in a particular major mode; the key bindings(q.v.@:) in the current local keymap override global bindings of thesame key sequences. @xref{Keymaps}.@item Local VariableA local value of a variable (q.v.@:) applies to only one buffer.@xref{Locals}.@item @kbd{M-}@kbd{M-} in the name of a character is an abbreviation for @key{META},one of the modifier keys that can accompany any character.@xref{User Input,M-}.@item @kbd{M-C-}@kbd{M-C-} in the name of a character is an abbreviation forControl-Meta; it means the same thing as @kbd{C-M-}. If yourterminal lacks a real @key{META} key, you type a Control-Meta character bytyping @key{ESC} and then typing the corresponding Control character.@xref{User Input,C-M-}.@item @kbd{M-x}@kbd{M-x} is the key sequence which is used to call an Emacs command byname. This is how you run commands that are not bound to key sequences.@xref{M-x,M-x,Running Commands by Name}.@item MailMail means messages sent from one user to another through the computersystem, to be read at the recipient's convenience. Emacs has commands forcomposing and sending mail, and for reading and editing the mail you havereceived. @xref{Sending Mail}. @xref{Rmail}, for how to read mail.@item Mail Composition MethodA mail composition method is a program runnable within Emacs for editingand sending a mail message. Emacs lets you select from severalalternative mail composition methods. @xref{Mail Methods}.@item Major ModeThe Emacs major modes are a mutually exclusive set of options, each ofwhich configures Emacs for editing a certain sort of text. Ideally,each programming language has its own major mode. @xref{Major Modes}.@item MarginThe space between the usable part of a window (including thefringe) and the window edge.@item MarkThe mark points to a position in the text. It specifies one end of theregion (q.v.@:), point being the other end. Many commands operate onall the text from point to the mark. Each buffer has its own mark.@xref{Mark}.@item Mark RingThe mark ring is used to hold several recent previous locations of themark, just in case you want to move back to them. Each buffer has itsown mark ring; in addition, there is a single global mark ring (q.v.@:).@xref{Mark Ring}.@item Menu BarThe menu bar is the line at the top of an Emacs frame. It containswords you can click on with the mouse to bring up menus, or you can usea keyboard interface to navigate it. @xref{Menu Bars}.@item MessageSee `mail.'@item MetaMeta is the name of a modifier bit which you can use in a commandcharacter. To enter a meta character, you hold down the @key{META}key while typing the character. We refer to such characters withnames that start with @kbd{Meta-} (usually written @kbd{M-} forshort). For example, @kbd{M-<} is typed by holding down @key{META}and at the same time typing @kbd{<} (which itself is done, on mostterminals, by holding down @key{SHIFT} and typing @kbd{,}).@xref{User Input,Meta}.On some terminals, the @key{META} key is actually labeled @key{ALT}or @key{EDIT}.@item Meta CharacterA Meta character is one whose character code includes the Meta bit.@item MinibufferThe minibuffer is the window that appears when necessary inside theecho area (q.v.@:), used for reading arguments to commands.@xref{Minibuffer}.@item Minibuffer HistoryThe minibuffer history records the text you have specified in the pastfor minibuffer arguments, so you can conveniently use the same textagain. @xref{Minibuffer History}.@item Minor ModeA minor mode is an optional feature of Emacs which can be switched onor off independently of all other features. Each minor mode has acommand to turn it on or off. @xref{Minor Modes}.@item Minor Mode KeymapA minor mode keymap is a keymap that belongs to a minor mode and isactive when that mode is enabled. Minor mode keymaps take precedenceover the buffer's local keymap, just as the local keymap takesprecedence over the global keymap. @xref{Keymaps}.@item Mode LineThe mode line is the line at the bottom of each window (q.v.@:), givingstatus information on the buffer displayed in that window. @xref{ModeLine}.@item Modified BufferA buffer (q.v.@:) is modified if its text has been changed since thelast time the buffer was saved (or since when it was created, if ithas never been saved). @xref{Saving}.@item Moving TextMoving text means erasing it from one place and inserting it inanother. The usual way to move text by killing (q.v.@:) and thenyanking (q.v.@:). @xref{Killing}.@item MULEMULE refers to the Emacs features for editing multilingual non-@acronym{ASCII} textusing multibyte characters (q.v.@:). @xref{International}.@item Multibyte CharacterA multibyte character is a character that takes up several bytes in abuffer. Emacs uses multibyte characters to represent non-@acronym{ASCII} text,since the number of non-@acronym{ASCII} characters is much more than 256.@xref{International Chars, International Characters}.@item Named MarkA named mark is a register (q.v.@:) in its role of recording alocation in text so that you can move point to that location.@xref{Registers}.@item NarrowingNarrowing means creating a restriction (q.v.@:) that limits editing inthe current buffer to only a part of the text in the buffer. Textoutside that part is inaccessible to the user until the boundaries arewidened again, but it is still there, and saving the file saves itall. @xref{Narrowing}.@item NewlineControl-J characters in the buffer terminate lines of text and aretherefore also called newlines. @xref{Text Characters,Newline}.@cindex nil@cindex t@item @code{nil}@code{nil} is a value usually interpreted as a logical ``false.'' Itsopposite is @code{t}, interpreted as ``true.''@item Numeric ArgumentA numeric argument is a number, specified before a command, to changethe effect of the command. Often the numeric argument serves as arepeat count. @xref{Arguments}.@item Overwrite ModeOverwrite mode is a minor mode. When it is enabled, ordinary textcharacters replace the existing text after point rather than pushingit to the right. @xref{Minor Modes}.@item PageA page is a unit of text, delimited by formfeed characters (@acronym{ASCII}control-L, code 014) coming at the beginning of a line. Some Emacscommands are provided for moving over and operating on pages.@xref{Pages}.@item ParagraphParagraphs are the medium-size unit of human-language text. There arespecial Emacs commands for moving over and operating on paragraphs.@xref{Paragraphs}.@item ParsingWe say that certain Emacs commands parse words or expressions in thetext being edited. Really, all they know how to do is find the otherend of a word or expression. @xref{Syntax}.@item PointPoint is the place in the buffer at which insertion and deletionoccur. Point is considered to be between two characters, not at onecharacter. The terminal's cursor (q.v.@:) indicates the location ofpoint. @xref{Point}.@item Prefix ArgumentSee `numeric argument.'@item Prefix KeyA prefix key is a key sequence (q.v.@:) whose sole function is tointroduce a set of longer key sequences. @kbd{C-x} is an example ofprefix key; any two-character sequence starting with @kbd{C-x} istherefore a legitimate key sequence. @xref{Keys}.@item Primary Rmail FileYour primary Rmail file is the file named @samp{RMAIL} in your homedirectory. That's where Rmail stores your incoming mail, unless youspecify a different file name. @xref{Rmail}.@item Primary SelectionThe primary selection is one particular X selection (q.v.@:); it is theselection that most X applications use for transferring text to and fromother applications.The Emacs kill commands set the primary selection and the yank commanduses the primary selection when appropriate. @xref{Killing}.@item PromptA prompt is text used to ask the user for input. Displaying a promptis called prompting. Emacs prompts always appear in the echo area(q.v.@:). One kind of prompting happens when the minibuffer is used toread an argument (@pxref{Minibuffer}); the echoing which happens whenyou pause in the middle of typing a multi-character key sequence is alsoa kind of prompting (@pxref{Echo Area}).@item Query-ReplaceQuery-replace is an interactive string replacement feature provided byEmacs. @xref{Query Replace}.@item QuittingQuitting means canceling a partially typed command or a runningcommand, using @kbd{C-g} (or @kbd{C-@key{BREAK}} on MS-DOS). @xref{Quitting}.@item QuotingQuoting means depriving a character of its usual special significance.The most common kind of quoting in Emacs is with @kbd{C-q}. Whatconstitutes special significance depends on the context and onconvention. For example, an ``ordinary'' character as an Emacs commandinserts itself; so in this context, a special character is any characterthat does not normally insert itself (such as @key{DEL}, for example),and quoting it makes it insert itself as if it were not special. Notall contexts allow quoting. @xref{Inserting Text,Quoting}.@item Quoting File NamesQuoting a file name turns off the special significance of constructssuch as @samp{$}, @samp{~} and @samp{:}. @xref{Quoted File Names}.@item Read-Only BufferA read-only buffer is one whose text you are not allowed to change.Normally Emacs makes buffers read-only when they contain text whichhas a special significance to Emacs; for example, Dired buffers.Visiting a file that is write-protected also makes a read-only buffer.@xref{Buffers}.@item RectangleA rectangle consists of the text in a given range of columns on a givenrange of lines. Normally you specify a rectangle by putting point atone corner and putting the mark at the diagonally opposite corner.@xref{Rectangles}.@item Recursive Editing LevelA recursive editing level is a state in which part of the execution ofa command involves asking the user to edit some text. This text mayor may not be the same as the text to which the command was applied.The mode line indicates recursive editing levels with square brackets(@samp{[} and @samp{]}). @xref{Recursive Edit}.@item RedisplayRedisplay is the process of correcting the image on the screen tocorrespond to changes that have been made in the text being edited.@xref{Screen,Redisplay}.@item RegexpSee `regular expression.'@item RegionThe region is the text between point (q.v.@:) and the mark (q.v.@:).Many commands operate on the text of the region. @xref{Mark,Region}.@item RegisterRegisters are named slots in which text or buffer positions orrectangles can be saved for later use. @xref{Registers}. A relatedEmacs feature is `bookmarks' (q.v.@:).@item Regular ExpressionA regular expression is a pattern that can match various text strings;for example, @samp{a[0-9]+} matches @samp{a} followed by one or moredigits. @xref{Regexps}.@item Remote FileA remote file is a file that is stored on a system other than your own.Emacs can access files on other computers provided that they areconnected to the same network as your machine, and (obviously) thatyou have a supported method to gain access to those files.@xref{Remote Files}.@item Repeat CountSee `numeric argument.'@item ReplacementSee `global substitution.'@item RestrictionA buffer's restriction is the amount of text, at the beginning or theend of the buffer, that is temporarily inaccessible. Giving a buffer anonzero amount of restriction is called narrowing (q.v.@:); removinga restriction is called widening (q.v.@:). @xref{Narrowing}.@item @key{RET}@key{RET} is a character that in Emacs runs the command to insert anewline into the text. It is also used to terminate most argumentsread in the minibuffer (q.v.@:). @xref{User Input,Return}.@item RevertingReverting means returning to the original state. Emacs lets yourevert a buffer by re-reading its file from disk. @xref{Reverting}.@item Rmail FileAn Rmail file is a file containing text in a special format used byRmail for storing mail. @xref{Rmail}.@item SavingSaving a buffer means copying its text into the file that was visited(q.v.@:) in that buffer. This is the way text in files actually getschanged by your Emacs editing. @xref{Saving}.@item Scroll BarA scroll bar is a tall thin hollow box that appears at the side of awindow. You can use mouse commands in the scroll bar to scroll thewindow. The scroll bar feature is supported only under windowingsystems. @xref{Scroll Bars}.@item ScrollingScrolling means shifting the text in the Emacs window so as to see adifferent part of the buffer. @xref{Scrolling}.@item SearchingSearching means moving point to the next occurrence of a specifiedstring or the next match for a specified regular expression.@xref{Search}.@item Search PathA search path is a list of directory names, to be used for searching forfiles for certain purposes. For example, the variable @code{load-path}holds a search path for finding Lisp library files. @xref{Lisp Libraries}.@item Secondary SelectionThe secondary selection is one particular X selection; some Xapplications can use it for transferring text to and from otherapplications. Emacs has special mouse commands for transferring textusing the secondary selection. @xref{Secondary Selection}.@item Selected FrameThe selected frame is the one your input currently operates on.@xref{Frames}.@item Selected WindowThe selected frame is the one your input currently operates on.@xref{Basic Window}.@item Selecting a BufferSelecting a buffer means making it the current (q.v.@:) buffer.@xref{Select Buffer}.@item SelectionWindowing systems allow an application program to specifyselections whose values are text. A program can also read theselections that other programs have set up. This is the principal wayof transferring text between window applications. Emacs has commands towork with the primary (q.v.@:) selection and the secondary (q.v.@:)selection, and also with the clipboard (q.v.@:).@item Self-DocumentationSelf-documentation is the feature of Emacs which can tell you what anycommand does, or give you a list of all commands related to a topicyou specify. You ask for self-documentation with the help character,@kbd{C-h}. @xref{Help}.@item Self-Inserting CharacterA character is self-inserting if typing that character inserts thatcharacter in the buffer. Ordinary printing and whitespace charactersare self-inserting in Emacs, except in certain special major modes.@item SentencesEmacs has commands for moving by or killing by sentences.@xref{Sentences}.@item SexpA sexp (short for ``s-expression'') is the basic syntactic unit ofLisp in its textual form: either a list, or Lisp atom. Sexps are alsothe balanced expressions (q.v.@:) of the Lisp language; this is whythe commands for editing balanced expressions have `sexp' in theirname. @xref{Expressions,Sexps}.@item Simultaneous EditingSimultaneous editing means two users modifying the same file at once.Simultaneous editing, if not detected, can cause one user to lose hisor her work. Emacs detects all cases of simultaneous editing, andwarns one of the users to investigate.@xref{Interlocking,Interlocking,Simultaneous Editing}.@item @key{SPC}@key{SPC} is the space character, which you enter by pressing thespace bar.@item SpeedbarThe speedbar is a special tall frame that provides fast access to Emacsbuffers, functions within those buffers, Info nodes, and otherinteresting parts of text within Emacs. @xref{Speedbar}.@item Spell CheckingSpell checking means checking correctness of the written form of eachone of the words in a text. Emacs uses the Ispell spelling-checkerprogram to check the spelling of parts of a buffer via a convenient userinterface. @xref{Spelling}.@item StringA string is a kind of Lisp data object which contains a sequence ofcharacters. Many Emacs variables are intended to have strings asvalues. The Lisp syntax for a string consists of the characters in thestring with a @samp{"} before and another @samp{"} after. A @samp{"}that is part of the string must be written as @samp{\"} and a @samp{\}that is part of the string must be written as @samp{\\}. All othercharacters, including newline, can be included just by writing theminside the string; however, backslash sequences as in C, such as@samp{\n} for newline or @samp{\241} using an octal character code, areallowed as well.@item String SubstitutionSee `global substitution'.@item Syntax HighlightingSee `font lock.'@item Syntax TableThe syntax table tells Emacs which characters are part of a word,which characters balance each other like parentheses, etc.@xref{Syntax}.@item SuperSuper is the name of a modifier bit which a keyboard input character mayhave. To make a character Super, type it while holding down the@key{SUPER} key. Such characters are given names that start with@kbd{Super-} (usually written @kbd{s-} for short). @xref{User Input,Super}.@item SuspendingSuspending Emacs means stopping it temporarily and returning controlto its parent process, which is usually a shell. Unlike killing a job(q.v.@:), you can later resume the suspended Emacs job without losingyour buffers, unsaved edits, undo history, etc. @xref{Exiting}.@item @key{TAB}@key{TAB} is the tab character. In Emacs it is typically used forindentation or completion.@item Tags TableA tags table is a file that serves as an index to the functiondefinitions in one or more other files. @xref{Tags}.@item Termscript FileA termscript file contains a record of all characters sent by Emacs tothe terminal. It is used for tracking down bugs in Emacs redisplay.Emacs does not make a termscript file unless you tell it to.@xref{Bugs}.@item Text`Text' has two meanings (@pxref{Text}):@itemize @bullet@itemData consisting of a sequence of characters, as opposed to binarynumbers, executable programs, and the like. The basic contents of anEmacs buffer (aside from the text properties, q.v.@:) are always textin this sense.@itemData consisting of written human language, as opposed to programs,or following the stylistic conventions of human language.@end itemize@item Text-only TerminalA text-only terminal is a display that is limited to displaying text incharacter units. Such a terminal cannot control individual pixels itdisplays. Emacs supports a subset of display features on text-onlyterminals.@item Text PropertiesText properties are annotations recorded for particular characters inthe buffer. Images in the buffer are recorded as text properties;they also specify formatting information. @xref{Editing Format Info}.@item Tool BarThe tool bar is a line (sometimes multiple lines) of icons at the topof an Emacs frame. Clicking on one of these icons executes a command.You can think of this as a graphical relative of the menu bar (q.v.@:).@xref{Tool Bars}.@item TooltipsTooltips are small windows displaying a help echo (q.v.@:) text thatexplains parts of the display, lists useful options available via mouseclicks, etc. @xref{Tooltips}.@item Top LevelTop level is the normal state of Emacs, in which you are editing thetext of the file you have visited. You are at top level whenever youare not in a recursive editing level (q.v.@:) or the minibuffer(q.v.@:), and not in the middle of a command. You can get back to toplevel by aborting (q.v.@:) and quitting (q.v.@:). @xref{Quitting}.@item TranspositionTransposing two units of text means putting each one into the placeformerly occupied by the other. There are Emacs commands to transposetwo adjacent characters, words, balanced expressions (q.v.@:) or lines(@pxref{Transpose}).@item TruncationTruncating text lines in the display means leaving out any text on aline that does not fit within the right margin of the windowdisplaying it. See also `continuation line.'@xref{Continuation Lines,Truncation}.@item TTYSee `text-only terminal.'@item UndoingUndoing means making your previous editing go in reverse, bringingback the text that existed earlier in the editing session.@xref{Undo}.@item User OptionA user option is a face (q.v.@:) or a variable (q.v.@:) that exists sothat you can customize Emacs by setting it to a new value.@xref{Easy Customization}.@item VariableA variable is an object in Lisp that can store an arbitrary value.Emacs uses some variables for internal purposes, and has others (knownas `user options' (q.v.@:)) just so that you can set their values tocontrol the behavior of Emacs. The variables used in Emacs that youare likely to be interested in are listed in the Variables Index inthis manual (@pxref{Variable Index}). @xref{Variables}, forinformation on variables.@item Version ControlVersion control systems keep track of multiple versions of a source file.They provide a more powerful alternative to keeping backup files (q.v.@:).@xref{Version Control}.@item VisitingVisiting a file means loading its contents into a buffer (q.v.@:)where they can be edited. @xref{Visiting}.@item WhitespaceWhitespace is any run of consecutive formatting characters (space,tab, newline, and backspace).@item WideningWidening is removing any restriction (q.v.@:) on the current buffer;it is the opposite of narrowing (q.v.@:). @xref{Narrowing}.@item WindowEmacs divides a frame (q.v.@:) into one or more windows, each of whichcan display the contents of one buffer (q.v.@:) at any time.@xref{Screen}, for basic information on how Emacs uses the screen.@xref{Windows}, for commands to control the use of windows. Someother editors use the term ``window'' for what we call a `frame'(q.v.@:) in Emacs.@item Window SystemA window system is a graphical terminal (q.v.@:) that can display multiplewindows for different programs at the same time.@item Word AbbrevSee `abbrev.'@item Word SearchWord search is searching for a sequence of words, considering thepunctuation between them as insignificant. @xref{Word Search}.@item WYSIWYGWYSIWYG stands for ``What you see is what you get.'' Emacs generallyprovides WYSIWYG editing for files of characters; in Enriched mode(@pxref{Formatted Text}), it provides WYSIWYG editing for files thatinclude text formatting information.@item YankingYanking means reinserting text previously killed. It can be used toundo a mistaken kill, or for copying or moving text. Some othersystems call this ``pasting.'' @xref{Yanking}.@end table@ignore arch-tag: 0dd53ce1-5f09-4ac2-b13b-cf22b0f28d23@end ignore