Add 2007 to copyright years.
[bpt/emacs.git] / man / glossary.texi
CommitLineData
6bf7aab6 1@c This is part of the Emacs manual.
b65d8176 2@c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002,
4e6835db 3@c 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6bf7aab6
DL
4@c See file emacs.texi for copying conditions.
5@node Glossary, Key Index, Intro, Top
6@unnumbered Glossary
7
8@table @asis
9@item Abbrev
10An abbrev is a text string which expands into a different text string
11when present in the buffer. For example, you might define a few letters
12as an abbrev for a long phrase that you want to insert frequently.
13@xref{Abbrevs}.
14
15@item Aborting
16Aborting means getting out of a recursive edit (q.v.@:). The
17commands @kbd{C-]} and @kbd{M-x top-level} are used for this.
18@xref{Quitting}.
19
20@item Alt
21Alt is the name of a modifier bit which a keyboard input character may
22have. To make a character Alt, type it while holding down the @key{ALT}
23key. Such characters are given names that start with @kbd{Alt-}
24(usually written @kbd{A-} for short). (Note that many terminals have a
25key labeled @key{ALT} which is really a @key{META} key.) @xref{User
26Input, Alt}.
27
08aa7220
EZ
28@item Argument
29See `numeric argument.'
30
76dd3692
EZ
31@item @acronym{ASCII} character
32An @acronym{ASCII} character is either an @acronym{ASCII} control character or an @acronym{ASCII}
6bf7aab6
DL
33printing character. @xref{User Input}.
34
76dd3692
EZ
35@item @acronym{ASCII} control character
36An @acronym{ASCII} control character is the Control version of an upper-case
6bf7aab6
DL
37letter, or the Control version of one of the characters @samp{@@[\]^_?}.
38
76dd3692
EZ
39@item @acronym{ASCII} printing character
40@acronym{ASCII} printing characters include letters, digits, space, and these
6bf7aab6
DL
41punctuation characters: @samp{!@@#$%^& *()_-+=|\~` @{@}[]:;"' <>,.?/}.
42
43@item Auto Fill Mode
44Auto Fill mode is a minor mode in which text that you insert is
64429953
RS
45automatically broken into lines of a given maximum width.
46@xref{Filling}.
6bf7aab6
DL
47
48@item Auto Saving
49Auto saving is the practice of saving the contents of an Emacs buffer in
50a specially-named file, so that the information will not be lost if the
51buffer is lost due to a system error or user error. @xref{Auto Save}.
52
08aa7220
EZ
53@item Autoloading
54Emacs automatically loads Lisp libraries when a Lisp program requests a
55function or a variable from those libraries. This is called
56`autoloading'. @xref{Lisp Libraries}.
57
58@item Backtrace
59A backtrace is a trace of a series of function calls showing how a
60program arrived to a certain point. It is used mainly for finding and
61correcting bugs (q.v.@:). Emacs can display a backtrace when it signals
62an error or when you type @kbd{C-g} (see `quitting'). @xref{Checklist}.
63
6bf7aab6
DL
64@item Backup File
65A backup file records the contents that a file had before the current
66editing session. Emacs makes backup files automatically to help you
67track down or cancel changes you later regret making. @xref{Backup}.
68
f7246d2f 69@item Balancing Parentheses
06c25386 70Emacs can balance parentheses (or other matching delimiters) either
0ec1f115 71manually or automatically. You do manual balancing with the commands
06c25386 72to move over parenthetical groupings (@pxref{Moving by Parens}).
0ec1f115 73Automatic balancing works by blinking or highlighting the delimiter
06c25386
RS
74that matches the one you just inserted (@pxref{Matching,,Matching
75Parens}).
76
77@item Balanced Expressions
78A balanced expression is a syntactically recognizable expression, such
0ec1f115 79as a symbol, number, string constant, block, or parenthesized expression
06c25386 80in C. @xref{Expressions,Balanced Expressions}.
6bf7aab6 81
08aa7220
EZ
82@item Balloon Help
83See `tooltips.'
84
85@item Base Buffer
86A base buffer is a buffer whose text is shared by an indirect buffer
87(q.v.@:).
88
6bf7aab6
DL
89@item Bind
90To bind a key sequence means to give it a binding (q.v.@:).
91@xref{Rebinding}.
92
93@item Binding
94A key sequence gets its meaning in Emacs by having a binding, which is a
95command (q.v.@:), a Lisp function that is run when the user types that
96sequence. @xref{Commands,Binding}. Customization often involves
97rebinding a character to a different command function. The bindings of
98all key sequences are recorded in the keymaps (q.v.@:). @xref{Keymaps}.
99
100@item Blank Lines
101Blank lines are lines that contain only whitespace. Emacs has several
102commands for operating on the blank lines in the buffer.
103
08aa7220
EZ
104@item Bookmark
105Bookmarks are akin to registers (q.v.@:) in that they record positions
63b2eb5c 106in buffers to which you can return later. Unlike registers, bookmarks
08aa7220
EZ
107persist between Emacs sessions.
108
0776c3a8
RS
109@item Border
110A border is a thin space along the edge of the frame, used just for
111spacing, not for displaying anything. An Emacs frame has an ordinary
112external border, outside of everything including the menu bar, plus an
113internal border that surrounds the text windows and their scroll bars
114and separates them from the menu bar and tool bar. You can customize
115both borders with options and resources (@pxref{Borders X}). Borders
116are not the same as fringes (q.v.@:).
117
6bf7aab6
DL
118@item Buffer
119The buffer is the basic editing unit; one buffer corresponds to one text
120being edited. You can have several buffers, but at any time you are
0efda3ff 121editing only one, the `current buffer,' though several can be visible
08aa7220 122when you are using multiple windows (q.v.@:). Most buffers are visiting
6bf7aab6
DL
123(q.v.@:) some file. @xref{Buffers}.
124
125@item Buffer Selection History
126Emacs keeps a buffer selection history which records how recently each
127Emacs buffer has been selected. This is used for choosing a buffer to
128select. @xref{Buffers}.
129
08aa7220
EZ
130@item Bug
131A bug is an incorrect or unreasonable behavior of a program, or
132inaccurate or confusing documentation. Emacs developers treat bug
133reports, both in Emacs code and its documentation, very seriously and
134ask you to report any bugs you find. @xref{Bugs}.
135
6bf7aab6
DL
136@item Button Down Event
137A button down event is the kind of input event generated right away when
58fa012d 138you press down on a mouse button. @xref{Mouse Buttons}.
6bf7aab6 139
08aa7220
EZ
140@item By Default
141See `default.'
142
f7246d2f
RS
143@item Byte Compilation
144See `compilation.'
145
6bf7aab6
DL
146@item @kbd{C-}
147@kbd{C-} in the name of a character is an abbreviation for Control.
148@xref{User Input,C-}.
149
150@item @kbd{C-M-}
151@kbd{C-M-} in the name of a character is an abbreviation for
152Control-Meta. @xref{User Input,C-M-}.
153
154@item Case Conversion
155Case conversion means changing text from upper case to lower case or
156vice versa. @xref{Case}, for the commands for case conversion.
157
158@item Character
159Characters form the contents of an Emacs buffer; see @ref{Text
160Characters}. Also, key sequences (q.v.@:) are usually made up of
161characters (though they may include other input events as well).
162@xref{User Input}.
163
164@item Character Set
165Emacs supports a number of character sets, each of which represents a
166particular alphabet or script. @xref{International}.
167
08aa7220
EZ
168@item Character Terminal
169See `text-only terminal.'
170
6bf7aab6
DL
171@item Click Event
172A click event is the kind of input event generated when you press a
173mouse button and release it without moving the mouse. @xref{Mouse Buttons}.
174
08aa7220
EZ
175@item Clipboard
176A clipboard is a buffer provided by the window system for transferring
177text between applications. On the X Window system, the clipboard is
0a2f1a0c 178provided in addition to the primary selection (q.v.@:); on MS-Windows and Mac,
08aa7220
EZ
179the clipboard is used @emph{instead} of the primary selection.
180@xref{Clipboard}.
181
6bf7aab6
DL
182@item Coding System
183A coding system is an encoding for representing text characters in a
184file or in a stream of information. Emacs has the ability to convert
185text to or from a variety of coding systems when reading or writing it.
186@xref{Coding Systems}.
187
188@item Command
189A command is a Lisp function specially defined to be able to serve as a
190key binding in Emacs. When you type a key sequence (q.v.@:), its
191binding (q.v.@:) is looked up in the relevant keymaps (q.v.@:) to find
192the command to run. @xref{Commands}.
193
08aa7220
EZ
194@item Command History
195See `minibuffer history.'
196
6bf7aab6
DL
197@item Command Name
198A command name is the name of a Lisp symbol which is a command
199(@pxref{Commands}). You can invoke any command by its name using
64429953 200@kbd{M-x} (@pxref{M-x,M-x,Running Commands by Name}).
6bf7aab6
DL
201
202@item Comment
203A comment is text in a program which is intended only for humans reading
204the program, and which is marked specially so that it will be ignored
205when the program is loaded or compiled. Emacs offers special commands
206for creating, aligning and killing comments. @xref{Comments}.
207
08aa7220
EZ
208@item Common Lisp
209Common Lisp is a dialect of Lisp (q.v.@:) much larger and more powerful
210than Emacs Lisp. Emacs provides a subset of Common Lisp in the CL
6e0bffe6 211package. @xref{Top, Common Lisp, Overview, cl, Common Lisp Extensions}.
08aa7220 212
6bf7aab6
DL
213@item Compilation
214Compilation is the process of creating an executable program from source
215code. Emacs has commands for compiling files of Emacs Lisp code
64429953 216(@pxref{Byte Compilation,,, elisp, the Emacs Lisp
6bf7aab6
DL
217Reference Manual}) and programs in C and other languages
218(@pxref{Compilation}).
219
220@item Complete Key
221A complete key is a key sequence which fully specifies one action to be
222performed by Emacs. For example, @kbd{X} and @kbd{C-f} and @kbd{C-x m}
223are complete keys. Complete keys derive their meanings from being bound
224(q.v.@:) to commands (q.v.@:). Thus, @kbd{X} is conventionally bound to
225a command to insert @samp{X} in the buffer; @kbd{C-x m} is
226conventionally bound to a command to begin composing a mail message.
227@xref{Keys}.
228
229@item Completion
230Completion is what Emacs does when it automatically fills out an
231abbreviation for a name into the entire name. Completion is done for
232minibuffer (q.v.@:) arguments when the set of possible valid inputs
233is known; for example, on command names, buffer names, and
234file names. Completion occurs when @key{TAB}, @key{SPC} or @key{RET}
235is typed. @xref{Completion}.@refill
236
237@item Continuation Line
238When a line of text is longer than the width of the window, it
239takes up more than one screen line when displayed. We say that the
240text line is continued, and all screen lines used for it after the
88579253
JL
241first are called continuation lines. @xref{Continuation Lines}.
242A related Emacs feature is `filling' (q.v.@:).
6bf7aab6
DL
243
244@item Control Character
245A control character is a character that you type by holding down the
246@key{CTRL} key. Some control characters also have their own keys, so
247that you can type them without using @key{CTRL}. For example,
248@key{RET}, @key{TAB}, @key{ESC} and @key{DEL} are all control
249characters. @xref{User Input}.
250
251@item Copyleft
252A copyleft is a notice giving the public legal permission to
f7246d2f
RS
253redistribute and modify a program or other work of art, but requiring
254modified versions to carry similar permission. Copyright is normally
255used to keep users divided and helpless; with copyleft we turn that
256around to empower users and encourage them to cooperate.
6bf7aab6
DL
257
258The particular form of copyleft used by the GNU project is called the
259GNU General Public License. @xref{Copying}.
260
052d59fc 261@item @key{CTRL}
f7246d2f 262The @key{CTRL} or ``control'' key is what you hold down
052d59fc
RS
263in order to enter a control character (q.v.).
264
6bf7aab6
DL
265@item Current Buffer
266The current buffer in Emacs is the Emacs buffer on which most editing
267commands operate. You can select any Emacs buffer as the current one.
268@xref{Buffers}.
269
270@item Current Line
f7246d2f 271The current line is the line that point is on (@pxref{Point}).
6bf7aab6
DL
272
273@item Current Paragraph
08aa7220 274The current paragraph is the paragraph that point is in. If point is
58fa012d
EZ
275between two paragraphs, the current paragraph is the one that follows
276point. @xref{Paragraphs}.
6bf7aab6
DL
277
278@item Current Defun
58fa012d 279The current defun is the defun (q.v.@:) that point is in. If point is
08aa7220
EZ
280between defuns, the current defun is the one that follows point.
281@xref{Defuns}.
6bf7aab6
DL
282
283@item Cursor
284The cursor is the rectangle on the screen which indicates the position
285called point (q.v.@:) at which insertion and deletion takes place.
286The cursor is on or under the character that follows point. Often
287people speak of `the cursor' when, strictly speaking, they mean
88579253 288`point.' @xref{Point,Cursor}.
6bf7aab6
DL
289
290@item Customization
291Customization is making minor changes in the way Emacs works. It is
f7246d2f
RS
292often done by setting variables (@pxref{Variables}) or faces
293(@pxref{Face Customization}), or by rebinding key sequences
294(@pxref{Keymaps}).
6bf7aab6 295
c5ba561a 296@cindex cut and paste
08aa7220
EZ
297@item Cut and Paste
298See `killing' and `yanking.'
299
6bf7aab6
DL
300@item Default Argument
301The default for an argument is the value that will be assumed if you
302do not specify one. When the minibuffer is used to read an argument,
303the default argument is used if you just type @key{RET}.
304@xref{Minibuffer}.
305
08aa7220
EZ
306@item Default
307A default is the value that is used for a certain purpose if and when
308you do not specify a value to use.
309
6bf7aab6
DL
310@item Default Directory
311When you specify a file name that does not start with @samp{/} or @samp{~},
312it is interpreted relative to the current buffer's default directory.
08aa7220
EZ
313(On MS-Windows and MS-DOS, file names which start with a drive letter
314@samp{@var{x}:} are treated as absolute, not relative.)
6bf7aab6
DL
315@xref{Minibuffer File,Default Directory}.
316
317@item Defun
06c25386 318A defun is a major definition at the top level in a program. The name
0ec1f115 319`defun' comes from Lisp, where most such definitions use the construct
06c25386 320@code{defun}. @xref{Defuns}.
6bf7aab6
DL
321
322@item @key{DEL}
052d59fc 323@key{DEL} is a character that runs the command to delete one character
9eaf2ecf
RS
324of text before the cursor. It is typically either the @key{DELETE}
325key or the @key{BACKSPACE} key, whichever one is easy to type.
88579253 326@xref{Erasing,DEL}.
6bf7aab6
DL
327
328@item Deletion
329Deletion means erasing text without copying it into the kill ring
330(q.v.@:). The alternative is killing (q.v.@:). @xref{Killing,Deletion}.
331
332@item Deletion of Files
333Deleting a file means erasing it from the file system.
64429953 334@xref{Misc File Ops,Misc File Ops,Miscellaneous File Operations}.
6bf7aab6
DL
335
336@item Deletion of Messages
337Deleting a message means flagging it to be eliminated from your mail
338file. Until you expunge (q.v.@:) the Rmail file, you can still undelete
4125ceb0 339the messages you have deleted. @xref{Rmail Deletion}.
6bf7aab6
DL
340
341@item Deletion of Windows
342Deleting a window means eliminating it from the screen. Other windows
343expand to use up the space. The deleted window can never come back,
344but no actual text is thereby lost. @xref{Windows}.
345
346@item Directory
347File directories are named collections in the file system, within which
348you can place individual files or subdirectories. @xref{Directories}.
349
350@item Dired
351Dired is the Emacs facility that displays the contents of a file
352directory and allows you to ``edit the directory,'' performing
353operations on the files in the directory. @xref{Dired}.
354
355@item Disabled Command
356A disabled command is one that you may not run without special
357confirmation. The usual reason for disabling a command is that it is
358confusing for beginning users. @xref{Disabling}.
359
360@item Down Event
08aa7220 361Short for `button down event' (q.v.@:).
6bf7aab6
DL
362
363@item Drag Event
364A drag event is the kind of input event generated when you press a mouse
365button, move the mouse, and then release the button. @xref{Mouse
366Buttons}.
367
368@item Dribble File
08aa7220 369A dribble file is a file into which Emacs writes all the characters that
d1931152 370you type on the keyboard. Dribble files are used to make a record
08aa7220 371for debugging Emacs bugs. Emacs does not make a dribble file unless you
6bf7aab6
DL
372tell it to. @xref{Bugs}.
373
374@item Echo Area
375The echo area is the bottom line of the screen, used for echoing the
1ba2ce68 376arguments to commands, for asking questions, and showing brief messages
6bf7aab6
DL
377(including error messages). The messages are stored in the buffer
378@samp{*Messages*} so you can review them later. @xref{Echo Area}.
379
380@item Echoing
f7246d2f
RS
381Echoing is acknowledging the receipt of input events by displaying
382them (in the echo area). Emacs never echoes single-character key
383sequences; longer key sequences echo only if you pause while typing
384them.
6bf7aab6
DL
385
386@item Electric
387We say that a character is electric if it is normally self-inserting
08aa7220 388(q.v.@:), but the current major mode (q.v.@:) redefines it to do something
6bf7aab6
DL
389else as well. For example, some programming language major modes define
390particular delimiter characters to reindent the line or insert one or
391more newlines in addition to self-insertion.
392
08aa7220 393@item End Of Line
0ec1f115
RS
394End of line is a character or a sequence of characters that indicate
395the end of a text line. On GNU and Unix systems, this is a newline
396(q.v.@:), but other systems have other conventions. @xref{Coding
397Systems,end-of-line}. Emacs can recognize several end-of-line
398conventions in files and convert between them.
08aa7220
EZ
399
400@item Environment Variable
401An environment variable is one of a collection of variables stored by
402the operating system, each one having a name and a value. Emacs can
403access environment variables set by its parent shell, and it can set
404variables in the environment it passes to programs it invokes.
405@xref{Environment}.
406
407@item EOL
408See `end of line.'
409
6bf7aab6
DL
410@item Error
411An error occurs when an Emacs command cannot execute in the current
412circumstances. When an error occurs, execution of the command stops
413(unless the command has been programmed to do otherwise) and Emacs
1ba2ce68 414reports the error by displaying an error message (q.v.@:). Type-ahead
6bf7aab6
DL
415is discarded. Then Emacs is ready to read another editing command.
416
417@item Error Message
418An error message is a single line of output displayed by Emacs when the
419user asks for something impossible to do (such as, killing text
420forward when point is at the end of the buffer). They appear in the
421echo area, accompanied by a beep.
422
423@item @key{ESC}
424@key{ESC} is a character used as a prefix for typing Meta characters on
425keyboards lacking a @key{META} key. Unlike the @key{META} key (which,
426like the @key{SHIFT} key, is held down while another character is
427typed), you press the @key{ESC} key as you would press a letter key, and
428it applies to the next character you type.
429
06c25386
RS
430@item Expression
431See `balanced expression.'
432
6bf7aab6 433@item Expunging
08aa7220
EZ
434Expunging an Rmail file or Dired buffer or a Gnus newsgroup buffer is an
435operation that truly discards the messages or files you have previously
436flagged for deletion.
437
438@item Face
439A face is a style of displaying characters. It specifies attributes
440such as font family and size, foreground and background colors,
441underline and strike-through, background stipple, etc. Emacs provides
442features to associate specific faces with portions of buffer text, in
443order to display that text as specified by the face attributes.
12e737f8 444@xref{Faces}.
6bf7aab6
DL
445
446@item File Locking
64429953 447Emacs uses file locking to notice when two different users
6bf7aab6
DL
448start to edit one file at the same time. @xref{Interlocking}.
449
450@item File Name
451A file name is a name that refers to a file. File names may be relative
452or absolute; the meaning of a relative file name depends on the current
453directory, but an absolute file name refers to the same file regardless
454of which directory is current. On GNU and Unix systems, an absolute
455file name starts with a slash (the root directory) or with @samp{~/} or
06ddca4d 456@samp{~@var{user}/} (a home directory). On MS-Windows/MS-DOS, an
08aa7220
EZ
457absolute file name can also start with a drive letter and a colon
458@samp{@var{d}:}.
6bf7aab6
DL
459
460Some people use the term ``pathname'' for file names, but we do not;
08aa7220 461we use the word ``path'' only in the term ``search path'' (q.v.@:).
6bf7aab6
DL
462
463@item File-Name Component
464A file-name component names a file directly within a particular
465directory. On GNU and Unix systems, a file name is a sequence of
466file-name components, separated by slashes. For example, @file{foo/bar}
467is a file name containing two components, @samp{foo} and @samp{bar}; it
468refers to the file named @samp{bar} in the directory named @samp{foo} in
08aa7220
EZ
469the current directory. MS-DOS/MS-Windows file names can also use
470backslashes to separate components, as in @file{foo\bar}.
6bf7aab6
DL
471
472@item Fill Prefix
473The fill prefix is a string that should be expected at the beginning
474of each line when filling is done. It is not regarded as part of the
475text to be filled. @xref{Filling}.
476
477@item Filling
478Filling text means shifting text between consecutive lines so that all
08aa7220
EZ
479the lines are approximately the same length. @xref{Filling}. Some
480other editors call this feature `line wrapping.'
481
482@item Font Lock
483Font Lock is a mode that highlights parts of buffer text according to
484its syntax. @xref{Font Lock}.
485
486@item Fontset
487A fontset is a named collection of fonts. A fontset specification lists
488character sets and which font to use to display each of them. Fontsets
489make it easy to change several fonts at once by specifying the name of a
490fontset, rather than changing each font separately. @xref{Fontsets}.
6bf7aab6
DL
491
492@item Formatted Text
493Formatted text is text that displays with formatting information while
494you edit. Formatting information includes fonts, colors, and specified
495margins. @xref{Formatted Text}.
496
08aa7220
EZ
497@item Formfeed Character
498See `page.'
499
6bf7aab6
DL
500@item Frame
501A frame is a rectangular cluster of Emacs windows. Emacs starts out
502with one frame, but you can create more. You can subdivide each frame
f7246d2f
RS
503into Emacs windows (q.v.@:). When you are using a window system
504(q.v.@:), all the frames can be visible at the same time.
505@xref{Frames}. Some other editors use the term ``window'' for this,
506but in Emacs a window means something else.
08aa7220
EZ
507
508@item Fringe
d1931152 509On a graphical display (q.v.@:), there's a narrow portion of the
f7246d2f
RS
510frame (q.v.@:) between the text area and the window's border. Emacs
511displays the fringe using a special face (q.v.@:) called
512@code{fringe}. @xref{Faces,fringe}.
08aa7220
EZ
513
514@item FTP
515FTP is an acronym for File Transfer Protocol. Emacs uses an FTP client
516program to provide access to remote files (q.v.@:).
6bf7aab6
DL
517
518@item Function Key
519A function key is a key on the keyboard that sends input but does not
520correspond to any character. @xref{Function Keys}.
521
522@item Global
0efda3ff
RS
523Global means ``independent of the current environment; in effect
524throughout Emacs.'' It is the opposite of local (q.v.@:). Particular
6bf7aab6
DL
525examples of the use of `global' appear below.
526
527@item Global Abbrev
528A global definition of an abbrev (q.v.@:) is effective in all major
529modes that do not have local (q.v.@:) definitions for the same abbrev.
530@xref{Abbrevs}.
531
532@item Global Keymap
533The global keymap (q.v.@:) contains key bindings that are in effect
534except when overridden by local key bindings in a major mode's local
535keymap (q.v.@:). @xref{Keymaps}.
536
537@item Global Mark Ring
08aa7220
EZ
538The global mark ring records the series of buffers you have recently
539set a mark (q.v.@:) in. In many cases you can use this to backtrack
540through buffers you have been editing in, or in which you have found
541tags (see `tags table'). @xref{Global Mark Ring}.
6bf7aab6
DL
542
543@item Global Substitution
544Global substitution means replacing each occurrence of one string by
58fa012d 545another string throughout a large amount of text. @xref{Replace}.
6bf7aab6
DL
546
547@item Global Variable
548The global value of a variable (q.v.@:) takes effect in all buffers
549that do not have their own local (q.v.@:) values for the variable.
550@xref{Variables}.
551
552@item Graphic Character
553Graphic characters are those assigned pictorial images rather than
554just names. All the non-Meta (q.v.@:) characters except for the
555Control (q.v.@:) characters are graphic characters. These include
556letters, digits, punctuation, and spaces; they do not include
557@key{RET} or @key{ESC}. In Emacs, typing a graphic character inserts
88579253 558that character (in ordinary editing modes). @xref{Inserting Text}.
6bf7aab6 559
d1931152
RS
560@item Graphical Display
561A graphical display is one that can display images and multiple fonts.
f7246d2f
RS
562Usually it also has a window system (q.v.@:).
563
6bf7aab6
DL
564@item Highlighting
565Highlighting text means displaying it with a different foreground and/or
566background color to make it stand out from the rest of the text in the
567buffer.
568
d804f4d6
RS
569Emacs uses highlighting in several ways. When you mark a region with
570the mouse, the region is always highlighted. Optionally Emacs can
1cbc35b1
PJ
571also highlight the region whenever it is active (@pxref{Transient
572Mark}). Incremental search also highlights matches (@pxref{Incremental
573Search}). See also `font lock'.
d804f4d6 574
6bf7aab6
DL
575@item Hardcopy
576Hardcopy means printed output. Emacs has commands for making printed
7350d665 577listings of text in Emacs buffers. @xref{Printing}.
6bf7aab6
DL
578
579@item @key{HELP}
580@key{HELP} is the Emacs name for @kbd{C-h} or @key{F1}. You can type
581@key{HELP} at any time to ask what options you have, or to ask what any
582command does. @xref{Help}.
583
08aa7220 584@item Help Echo
1ba2ce68 585Help echo is a short message displayed in the echo area when the mouse
08aa7220
EZ
586pointer is located on portions of display that require some
587explanations. Emacs displays help echo for menu items, parts of the
588mode line, tool-bar buttons, etc. On graphics displays, the messages
589can be displayed as tooltips (q.v.@:). @xref{Tooltips}.
590
591@item Hook
592A hook is a list of functions to be called on specific occasions, such
593as saving a buffer in a file, major mode activation, etc. By
594customizing the various hooks, you can modify Emacs's behavior without
595changing any of its code. @xref{Hooks}.
596
6bf7aab6
DL
597@item Hyper
598Hyper is the name of a modifier bit which a keyboard input character may
599have. To make a character Hyper, type it while holding down the
600@key{HYPER} key. Such characters are given names that start with
601@kbd{Hyper-} (usually written @kbd{H-} for short). @xref{User Input,
602Hyper}.
603
604@item Inbox
605An inbox is a file in which mail is delivered by the operating system.
606Rmail transfers mail from inboxes to Rmail files (q.v.@:) in which the
607mail is then stored permanently or until explicitly deleted.
608@xref{Rmail Inbox}.
609
08aa7220
EZ
610@item Incremental Search
611Emacs provides an incremental search facility, whereby Emacs searches
612for the string as you type it. @xref{Incremental Search}.
613
6bf7aab6
DL
614@item Indentation
615Indentation means blank space at the beginning of a line. Most
616programming languages have conventions for using indentation to
617illuminate the structure of the program, and Emacs has special
618commands to adjust indentation.
619@xref{Indentation}.
620
621@item Indirect Buffer
622An indirect buffer is a buffer that shares the text of another buffer,
08aa7220
EZ
623called its base buffer (q.v.@:). @xref{Indirect Buffers}.
624
625@item Info
626Info is the hypertext format used by the GNU project for writing
627documentation.
6bf7aab6
DL
628
629@item Input Event
630An input event represents, within Emacs, one action taken by the user on
631the terminal. Input events include typing characters, typing function
632keys, pressing or releasing mouse buttons, and switching between Emacs
633frames. @xref{User Input}.
634
635@item Input Method
76dd3692
EZ
636An input method is a system for entering non-@acronym{ASCII} text characters by
637typing sequences of @acronym{ASCII} characters (q.v.@:). @xref{Input Methods}.
6bf7aab6
DL
638
639@item Insertion
640Insertion means copying text into the buffer, either from the keyboard
641or from some other place in Emacs.
642
643@item Interlocking
644Interlocking is a feature for warning when you start to alter a file
64429953
RS
645that someone else is already editing.
646@xref{Interlocking,Interlocking,Simultaneous Editing}.
6bf7aab6 647
08aa7220
EZ
648@item Isearch
649See `incremental search.'
650
6bf7aab6 651@item Justification
58fa012d 652Justification means adding extra spaces within lines of text to make
4125ceb0 653them extend exactly to a specified width.
88579253 654@xref{Format Justification}.
6bf7aab6 655
f7246d2f
RS
656@item Keybinding
657See `binding.'
658
6bf7aab6
DL
659@item Keyboard Macro
660Keyboard macros are a way of defining new Emacs commands from
661sequences of existing ones, with no need to write a Lisp program.
662@xref{Keyboard Macros}.
663
cb14bebd
EZ
664@cindex keyboard shortcuts
665@item Keyboard Shortcut
666A keyboard shortcut is a key sequence (q.v.@:) which invokes a
4dfdb4bf 667command. What some programs call ``assigning a keyboard shortcut,''
5a7f4c1b 668Emacs calls ``binding a key sequence.'' See `binding.'
cb14bebd 669
6bf7aab6
DL
670@item Key Sequence
671A key sequence (key, for short) is a sequence of input events (q.v.@:)
672that are meaningful as a single unit. If the key sequence is enough to
673specify one action, it is a complete key (q.v.@:); if it is not enough,
674it is a prefix key (q.v.@:). @xref{Keys}.
675
676@item Keymap
677The keymap is the data structure that records the bindings (q.v.@:) of
678key sequences to the commands that they run. For example, the global
679keymap binds the character @kbd{C-n} to the command function
680@code{next-line}. @xref{Keymaps}.
681
682@item Keyboard Translation Table
683The keyboard translation table is an array that translates the character
684codes that come from the terminal into the character codes that make up
7fc7c364 685key sequences.
6bf7aab6
DL
686
687@item Kill Ring
688The kill ring is where all text you have killed recently is saved.
689You can reinsert any of the killed text still in the ring; this is
690called yanking (q.v.@:). @xref{Yanking}.
691
692@item Killing
693Killing means erasing text and saving it on the kill ring so it can be
694yanked (q.v.@:) later. Some other systems call this ``cutting.''
58fa012d
EZ
695Most Emacs commands that erase text perform killing, as opposed to
696deletion (q.v.@:). @xref{Killing}.
6bf7aab6 697
08aa7220 698@item Killing a Job
6bf7aab6
DL
699Killing a job (such as, an invocation of Emacs) means making it cease
700to exist. Any data within it, if not saved in a file, is lost.
701@xref{Exiting}.
702
703@item Language Environment
704Your choice of language environment specifies defaults for the input
705method (q.v.@:) and coding system (q.v.@:). @xref{Language
76dd3692 706Environments}. These defaults are relevant if you edit non-@acronym{ASCII} text
6bf7aab6
DL
707(@pxref{International}).
708
08aa7220
EZ
709@item Line Wrapping
710See `filling.'
711
712@item Lisp
713Lisp is a programming language. Most of Emacs is written in a dialect
714of Lisp, called Emacs Lisp, that is extended with special features which
715make it especially suitable for text editing tasks.
716
6bf7aab6
DL
717@item List
718A list is, approximately, a text string beginning with an open
719parenthesis and ending with the matching close parenthesis. In C mode
720and other non-Lisp modes, groupings surrounded by other kinds of matched
721delimiters appropriate to the language, such as braces, are also
722considered lists. Emacs has special commands for many operations on
06c25386 723lists. @xref{Moving by Parens}.
6bf7aab6
DL
724
725@item Local
0efda3ff 726Local means ``in effect only in a particular context''; the relevant
6bf7aab6
DL
727kind of context is a particular function execution, a particular
728buffer, or a particular major mode. It is the opposite of `global'
729(q.v.@:). Specific uses of `local' in Emacs terminology appear below.
730
731@item Local Abbrev
732A local abbrev definition is effective only if a particular major mode
733is selected. In that major mode, it overrides any global definition
734for the same abbrev. @xref{Abbrevs}.
735
736@item Local Keymap
737A local keymap is used in a particular major mode; the key bindings
738(q.v.@:) in the current local keymap override global bindings of the
739same key sequences. @xref{Keymaps}.
740
741@item Local Variable
742A local value of a variable (q.v.@:) applies to only one buffer.
743@xref{Locals}.
744
745@item @kbd{M-}
746@kbd{M-} in the name of a character is an abbreviation for @key{META},
747one of the modifier keys that can accompany any character.
88579253 748@xref{User Input,M-}.
6bf7aab6
DL
749
750@item @kbd{M-C-}
751@kbd{M-C-} in the name of a character is an abbreviation for
752Control-Meta; it means the same thing as @kbd{C-M-}. If your
753terminal lacks a real @key{META} key, you type a Control-Meta character by
754typing @key{ESC} and then typing the corresponding Control character.
755@xref{User Input,C-M-}.
756
757@item @kbd{M-x}
758@kbd{M-x} is the key sequence which is used to call an Emacs command by
759name. This is how you run commands that are not bound to key sequences.
64429953 760@xref{M-x,M-x,Running Commands by Name}.
6bf7aab6
DL
761
762@item Mail
763Mail means messages sent from one user to another through the computer
764system, to be read at the recipient's convenience. Emacs has commands for
765composing and sending mail, and for reading and editing the mail you have
766received. @xref{Sending Mail}. @xref{Rmail}, for how to read mail.
767
768@item Mail Composition Method
769A mail composition method is a program runnable within Emacs for editing
770and sending a mail message. Emacs lets you select from several
771alternative mail composition methods. @xref{Mail Methods}.
772
773@item Major Mode
774The Emacs major modes are a mutually exclusive set of options, each of
775which configures Emacs for editing a certain sort of text. Ideally,
776each programming language has its own major mode. @xref{Major Modes}.
777
f7246d2f
RS
778@item Margin
779The space between the usable part of a window (including the
780fringe) and the window edge.
781
6bf7aab6
DL
782@item Mark
783The mark points to a position in the text. It specifies one end of the
784region (q.v.@:), point being the other end. Many commands operate on
785all the text from point to the mark. Each buffer has its own mark.
786@xref{Mark}.
787
788@item Mark Ring
789The mark ring is used to hold several recent previous locations of the
790mark, just in case you want to move back to them. Each buffer has its
08aa7220 791own mark ring; in addition, there is a single global mark ring (q.v.@:).
6bf7aab6
DL
792@xref{Mark Ring}.
793
794@item Menu Bar
795The menu bar is the line at the top of an Emacs frame. It contains
e2ecbd43
DL
796words you can click on with the mouse to bring up menus, or you can use
797a keyboard interface to navigate it. @xref{Menu Bars}.
6bf7aab6
DL
798
799@item Message
0efda3ff 800See `mail.'
6bf7aab6
DL
801
802@item Meta
052d59fc 803Meta is the name of a modifier bit which you can use in a command
9eaf2ecf
RS
804character. To enter a meta character, you hold down the @key{META}
805key while typing the character. We refer to such characters with
806names that start with @kbd{Meta-} (usually written @kbd{M-} for
052d59fc
RS
807short). For example, @kbd{M-<} is typed by holding down @key{META}
808and at the same time typing @kbd{<} (which itself is done, on most
809terminals, by holding down @key{SHIFT} and typing @kbd{,}).
810@xref{User Input,Meta}.
6bf7aab6 811
9eaf2ecf
RS
812On some terminals, the @key{META} key is actually labeled @key{ALT}
813or @key{EDIT}.
814
6bf7aab6
DL
815@item Meta Character
816A Meta character is one whose character code includes the Meta bit.
817
818@item Minibuffer
819The minibuffer is the window that appears when necessary inside the
820echo area (q.v.@:), used for reading arguments to commands.
821@xref{Minibuffer}.
822
823@item Minibuffer History
824The minibuffer history records the text you have specified in the past
825for minibuffer arguments, so you can conveniently use the same text
826again. @xref{Minibuffer History}.
827
828@item Minor Mode
829A minor mode is an optional feature of Emacs which can be switched on
830or off independently of all other features. Each minor mode has a
831command to turn it on or off. @xref{Minor Modes}.
832
833@item Minor Mode Keymap
08aa7220
EZ
834A minor mode keymap is a keymap that belongs to a minor mode and is
835active when that mode is enabled. Minor mode keymaps take precedence
836over the buffer's local keymap, just as the local keymap takes
837precedence over the global keymap. @xref{Keymaps}.
6bf7aab6
DL
838
839@item Mode Line
840The mode line is the line at the bottom of each window (q.v.@:), giving
841status information on the buffer displayed in that window. @xref{Mode
842Line}.
843
844@item Modified Buffer
845A buffer (q.v.@:) is modified if its text has been changed since the
846last time the buffer was saved (or since when it was created, if it
847has never been saved). @xref{Saving}.
848
849@item Moving Text
850Moving text means erasing it from one place and inserting it in
06ddca4d
RS
851another. The usual way to move text is by killing (q.v.@:) it and then
852yanking (q.v.@:) it. @xref{Killing}.
6bf7aab6
DL
853
854@item MULE
76dd3692 855MULE refers to the Emacs features for editing multilingual non-@acronym{ASCII} text
6bf7aab6
DL
856using multibyte characters (q.v.@:). @xref{International}.
857
858@item Multibyte Character
08aa7220 859A multibyte character is a character that takes up several bytes in a
76dd3692
EZ
860buffer. Emacs uses multibyte characters to represent non-@acronym{ASCII} text,
861since the number of non-@acronym{ASCII} characters is much more than 256.
64429953 862@xref{International Chars, International Characters}.
6bf7aab6
DL
863
864@item Named Mark
865A named mark is a register (q.v.@:) in its role of recording a
866location in text so that you can move point to that location.
867@xref{Registers}.
868
869@item Narrowing
870Narrowing means creating a restriction (q.v.@:) that limits editing in
871the current buffer to only a part of the text in the buffer. Text
d1931152 872outside that part is inaccessible for editing until the boundaries are
6bf7aab6
DL
873widened again, but it is still there, and saving the file saves it
874all. @xref{Narrowing}.
875
876@item Newline
877Control-J characters in the buffer terminate lines of text and are
878therefore also called newlines. @xref{Text Characters,Newline}.
879
08aa7220
EZ
880@cindex nil
881@cindex t
882@item @code{nil}
63b2eb5c
EZ
883@code{nil} is a value usually interpreted as a logical ``false.'' Its
884opposite is @code{t}, interpreted as ``true.''
08aa7220 885
6bf7aab6
DL
886@item Numeric Argument
887A numeric argument is a number, specified before a command, to change
888the effect of the command. Often the numeric argument serves as a
889repeat count. @xref{Arguments}.
890
891@item Overwrite Mode
892Overwrite mode is a minor mode. When it is enabled, ordinary text
893characters replace the existing text after point rather than pushing
894it to the right. @xref{Minor Modes}.
895
896@item Page
76dd3692 897A page is a unit of text, delimited by formfeed characters (@acronym{ASCII}
6bf7aab6
DL
898control-L, code 014) coming at the beginning of a line. Some Emacs
899commands are provided for moving over and operating on pages.
900@xref{Pages}.
901
902@item Paragraph
08d376e3 903Paragraphs are the medium-size unit of human-language text. There are
6bf7aab6
DL
904special Emacs commands for moving over and operating on paragraphs.
905@xref{Paragraphs}.
906
907@item Parsing
908We say that certain Emacs commands parse words or expressions in the
909text being edited. Really, all they know how to do is find the other
910end of a word or expression. @xref{Syntax}.
911
912@item Point
913Point is the place in the buffer at which insertion and deletion
914occur. Point is considered to be between two characters, not at one
915character. The terminal's cursor (q.v.@:) indicates the location of
88579253 916point. @xref{Point}.
177c0ea7 917
6bf7aab6 918@item Prefix Argument
0efda3ff 919See `numeric argument.'
6bf7aab6
DL
920
921@item Prefix Key
922A prefix key is a key sequence (q.v.@:) whose sole function is to
923introduce a set of longer key sequences. @kbd{C-x} is an example of
924prefix key; any two-character sequence starting with @kbd{C-x} is
925therefore a legitimate key sequence. @xref{Keys}.
926
927@item Primary Rmail File
928Your primary Rmail file is the file named @samp{RMAIL} in your home
929directory. That's where Rmail stores your incoming mail, unless you
930specify a different file name. @xref{Rmail}.
931
932@item Primary Selection
933The primary selection is one particular X selection (q.v.@:); it is the
934selection that most X applications use for transferring text to and from
935other applications.
936
937The Emacs kill commands set the primary selection and the yank command
938uses the primary selection when appropriate. @xref{Killing}.
939
940@item Prompt
1ba2ce68 941A prompt is text used to ask the user for input. Displaying a prompt
6bf7aab6
DL
942is called prompting. Emacs prompts always appear in the echo area
943(q.v.@:). One kind of prompting happens when the minibuffer is used to
944read an argument (@pxref{Minibuffer}); the echoing which happens when
945you pause in the middle of typing a multi-character key sequence is also
946a kind of prompting (@pxref{Echo Area}).
947
08aa7220 948@item Query-Replace
63b2eb5c
EZ
949Query-replace is an interactive string replacement feature provided by
950Emacs. @xref{Query Replace}.
08aa7220 951
6bf7aab6
DL
952@item Quitting
953Quitting means canceling a partially typed command or a running
954command, using @kbd{C-g} (or @kbd{C-@key{BREAK}} on MS-DOS). @xref{Quitting}.
955
956@item Quoting
957Quoting means depriving a character of its usual special significance.
958The most common kind of quoting in Emacs is with @kbd{C-q}. What
959constitutes special significance depends on the context and on
960convention. For example, an ``ordinary'' character as an Emacs command
961inserts itself; so in this context, a special character is any character
962that does not normally insert itself (such as @key{DEL}, for example),
963and quoting it makes it insert itself as if it were not special. Not
88579253 964all contexts allow quoting. @xref{Inserting Text,Quoting}.
6bf7aab6
DL
965
966@item Quoting File Names
967Quoting a file name turns off the special significance of constructs
968such as @samp{$}, @samp{~} and @samp{:}. @xref{Quoted File Names}.
969
970@item Read-Only Buffer
971A read-only buffer is one whose text you are not allowed to change.
972Normally Emacs makes buffers read-only when they contain text which
973has a special significance to Emacs; for example, Dired buffers.
974Visiting a file that is write-protected also makes a read-only buffer.
975@xref{Buffers}.
976
977@item Rectangle
978A rectangle consists of the text in a given range of columns on a given
979range of lines. Normally you specify a rectangle by putting point at
58fa012d 980one corner and putting the mark at the diagonally opposite corner.
6bf7aab6
DL
981@xref{Rectangles}.
982
983@item Recursive Editing Level
984A recursive editing level is a state in which part of the execution of
d1931152 985a command involves asking you to edit some text. This text may
6bf7aab6
DL
986or may not be the same as the text to which the command was applied.
987The mode line indicates recursive editing levels with square brackets
988(@samp{[} and @samp{]}). @xref{Recursive Edit}.
989
990@item Redisplay
991Redisplay is the process of correcting the image on the screen to
992correspond to changes that have been made in the text being edited.
993@xref{Screen,Redisplay}.
994
995@item Regexp
0efda3ff 996See `regular expression.'
6bf7aab6
DL
997
998@item Region
999The region is the text between point (q.v.@:) and the mark (q.v.@:).
1000Many commands operate on the text of the region. @xref{Mark,Region}.
1001
f7246d2f 1002@item Register
6bf7aab6 1003Registers are named slots in which text or buffer positions or
08aa7220
EZ
1004rectangles can be saved for later use. @xref{Registers}. A related
1005Emacs feature is `bookmarks' (q.v.@:).
6bf7aab6
DL
1006
1007@item Regular Expression
1008A regular expression is a pattern that can match various text strings;
08aa7220 1009for example, @samp{a[0-9]+} matches @samp{a} followed by one or more
6bf7aab6
DL
1010digits. @xref{Regexps}.
1011
08aa7220
EZ
1012@item Remote File
1013A remote file is a file that is stored on a system other than your own.
1014Emacs can access files on other computers provided that they are
58fa012d
EZ
1015connected to the same network as your machine, and (obviously) that
1016you have a supported method to gain access to those files.
1017@xref{Remote Files}.
08aa7220 1018
6bf7aab6 1019@item Repeat Count
0efda3ff 1020See `numeric argument.'
6bf7aab6
DL
1021
1022@item Replacement
0efda3ff 1023See `global substitution.'
6bf7aab6
DL
1024
1025@item Restriction
1026A buffer's restriction is the amount of text, at the beginning or the
1027end of the buffer, that is temporarily inaccessible. Giving a buffer a
08aa7220
EZ
1028nonzero amount of restriction is called narrowing (q.v.@:); removing
1029a restriction is called widening (q.v.@:). @xref{Narrowing}.
6bf7aab6
DL
1030
1031@item @key{RET}
1032@key{RET} is a character that in Emacs runs the command to insert a
1033newline into the text. It is also used to terminate most arguments
1034read in the minibuffer (q.v.@:). @xref{User Input,Return}.
1035
08aa7220
EZ
1036@item Reverting
1037Reverting means returning to the original state. Emacs lets you
1038revert a buffer by re-reading its file from disk. @xref{Reverting}.
1039
6bf7aab6
DL
1040@item Rmail File
1041An Rmail file is a file containing text in a special format used by
1042Rmail for storing mail. @xref{Rmail}.
1043
1044@item Saving
1045Saving a buffer means copying its text into the file that was visited
1046(q.v.@:) in that buffer. This is the way text in files actually gets
1047changed by your Emacs editing. @xref{Saving}.
1048
1049@item Scroll Bar
1050A scroll bar is a tall thin hollow box that appears at the side of a
1051window. You can use mouse commands in the scroll bar to scroll the
e2ecbd43
DL
1052window. The scroll bar feature is supported only under windowing
1053systems. @xref{Scroll Bars}.
6bf7aab6
DL
1054
1055@item Scrolling
1056Scrolling means shifting the text in the Emacs window so as to see a
88579253 1057different part of the buffer. @xref{Scrolling}.
6bf7aab6
DL
1058
1059@item Searching
1060Searching means moving point to the next occurrence of a specified
1061string or the next match for a specified regular expression.
1062@xref{Search}.
1063
1064@item Search Path
1065A search path is a list of directory names, to be used for searching for
1066files for certain purposes. For example, the variable @code{load-path}
1067holds a search path for finding Lisp library files. @xref{Lisp Libraries}.
1068
1069@item Secondary Selection
1070The secondary selection is one particular X selection; some X
1071applications can use it for transferring text to and from other
1072applications. Emacs has special mouse commands for transferring text
1073using the secondary selection. @xref{Secondary Selection}.
1074
f7246d2f
RS
1075@item Selected Frame
1076The selected frame is the one your input currently operates on.
1077@xref{Frames}.
1078
1079@item Selected Window
1080The selected frame is the one your input currently operates on.
f2cdc98d 1081@xref{Basic Window}.
f7246d2f
RS
1082
1083@item Selecting a Buffer
6bf7aab6 1084Selecting a buffer means making it the current (q.v.@:) buffer.
88579253 1085@xref{Select Buffer}.
6bf7aab6
DL
1086
1087@item Selection
08aa7220 1088Windowing systems allow an application program to specify
6bf7aab6
DL
1089selections whose values are text. A program can also read the
1090selections that other programs have set up. This is the principal way
1091of transferring text between window applications. Emacs has commands to
1092work with the primary (q.v.@:) selection and the secondary (q.v.@:)
08aa7220 1093selection, and also with the clipboard (q.v.@:).
6bf7aab6
DL
1094
1095@item Self-Documentation
1096Self-documentation is the feature of Emacs which can tell you what any
1097command does, or give you a list of all commands related to a topic
1098you specify. You ask for self-documentation with the help character,
1099@kbd{C-h}. @xref{Help}.
1100
1101@item Self-Inserting Character
1102A character is self-inserting if typing that character inserts that
1103character in the buffer. Ordinary printing and whitespace characters
1104are self-inserting in Emacs, except in certain special major modes.
1105
1106@item Sentences
1107Emacs has commands for moving by or killing by sentences.
1108@xref{Sentences}.
1109
1110@item Sexp
06c25386
RS
1111A sexp (short for ``s-expression'') is the basic syntactic unit of
1112Lisp in its textual form: either a list, or Lisp atom. Sexps are also
1113the balanced expressions (q.v.@:) of the Lisp language; this is why
1114the commands for editing balanced expressions have `sexp' in their
1115name. @xref{Expressions,Sexps}.
6bf7aab6
DL
1116
1117@item Simultaneous Editing
1118Simultaneous editing means two users modifying the same file at once.
58fa012d 1119Simultaneous editing, if not detected, can cause one user to lose his
0ec1f115
RS
1120or her work. Emacs detects all cases of simultaneous editing, and
1121warns one of the users to investigate.
64429953 1122@xref{Interlocking,Interlocking,Simultaneous Editing}.
6bf7aab6 1123
052d59fc
RS
1124@item @key{SPC}
1125@key{SPC} is the space character, which you enter by pressing the
1126space bar.
1127
08aa7220 1128@item Speedbar
f7246d2f 1129The speedbar is a special tall frame that provides fast access to Emacs
08aa7220
EZ
1130buffers, functions within those buffers, Info nodes, and other
1131interesting parts of text within Emacs. @xref{Speedbar}.
1132
1133@item Spell Checking
1134Spell checking means checking correctness of the written form of each
1135one of the words in a text. Emacs uses the Ispell spelling-checker
1136program to check the spelling of parts of a buffer via a convenient user
1137interface. @xref{Spelling}.
1138
6bf7aab6
DL
1139@item String
1140A string is a kind of Lisp data object which contains a sequence of
1141characters. Many Emacs variables are intended to have strings as
1142values. The Lisp syntax for a string consists of the characters in the
1143string with a @samp{"} before and another @samp{"} after. A @samp{"}
1144that is part of the string must be written as @samp{\"} and a @samp{\}
1145that is part of the string must be written as @samp{\\}. All other
1146characters, including newline, can be included just by writing them
1147inside the string; however, backslash sequences as in C, such as
1148@samp{\n} for newline or @samp{\241} using an octal character code, are
1149allowed as well.
1150
1151@item String Substitution
1152See `global substitution'.
1153
08aa7220
EZ
1154@item Syntax Highlighting
1155See `font lock.'
1156
6bf7aab6
DL
1157@item Syntax Table
1158The syntax table tells Emacs which characters are part of a word,
1159which characters balance each other like parentheses, etc.
1160@xref{Syntax}.
1161
1162@item Super
1163Super is the name of a modifier bit which a keyboard input character may
1164have. To make a character Super, type it while holding down the
1165@key{SUPER} key. Such characters are given names that start with
1166@kbd{Super-} (usually written @kbd{s-} for short). @xref{User Input,
1167Super}.
1168
08aa7220
EZ
1169@item Suspending
1170Suspending Emacs means stopping it temporarily and returning control
1171to its parent process, which is usually a shell. Unlike killing a job
1172(q.v.@:), you can later resume the suspended Emacs job without losing
1173your buffers, unsaved edits, undo history, etc. @xref{Exiting}.
1174
052d59fc
RS
1175@item @key{TAB}
1176@key{TAB} is the tab character. In Emacs it is typically used for
1177indentation or completion.
1178
6bf7aab6
DL
1179@item Tags Table
1180A tags table is a file that serves as an index to the function
1181definitions in one or more other files. @xref{Tags}.
1182
1183@item Termscript File
1184A termscript file contains a record of all characters sent by Emacs to
1185the terminal. It is used for tracking down bugs in Emacs redisplay.
1186Emacs does not make a termscript file unless you tell it to.
1187@xref{Bugs}.
1188
1189@item Text
58fa012d 1190`Text' has two meanings (@pxref{Text}):
6bf7aab6
DL
1191
1192@itemize @bullet
1193@item
1194Data consisting of a sequence of characters, as opposed to binary
64429953
RS
1195numbers, executable programs, and the like. The basic contents of an
1196Emacs buffer (aside from the text properties, q.v.@:) are always text
1197in this sense.
6bf7aab6
DL
1198@item
1199Data consisting of written human language, as opposed to programs,
1200or following the stylistic conventions of human language.
1201@end itemize
1202
08aa7220
EZ
1203@item Text-only Terminal
1204A text-only terminal is a display that is limited to displaying text in
1205character units. Such a terminal cannot control individual pixels it
63b2eb5c 1206displays. Emacs supports a subset of display features on text-only
08aa7220
EZ
1207terminals.
1208
64429953
RS
1209@item Text Properties
1210Text properties are annotations recorded for particular characters in
1211the buffer. Images in the buffer are recorded as text properties;
1212they also specify formatting information. @xref{Editing Format Info}.
1213
08d376e3
RS
1214@item Tool Bar
1215The tool bar is a line (sometimes multiple lines) of icons at the top
1216of an Emacs frame. Clicking on one of these icons executes a command.
08aa7220 1217You can think of this as a graphical relative of the menu bar (q.v.@:).
71d58906 1218@xref{Tool Bars}.
08d376e3 1219
08aa7220
EZ
1220@item Tooltips
1221Tooltips are small windows displaying a help echo (q.v.@:) text that
1222explains parts of the display, lists useful options available via mouse
1223clicks, etc. @xref{Tooltips}.
1224
6bf7aab6
DL
1225@item Top Level
1226Top level is the normal state of Emacs, in which you are editing the
1227text of the file you have visited. You are at top level whenever you
1228are not in a recursive editing level (q.v.@:) or the minibuffer
1229(q.v.@:), and not in the middle of a command. You can get back to top
1230level by aborting (q.v.@:) and quitting (q.v.@:). @xref{Quitting}.
1231
1232@item Transposition
1233Transposing two units of text means putting each one into the place
1234formerly occupied by the other. There are Emacs commands to transpose
06c25386 1235two adjacent characters, words, balanced expressions (q.v.@:) or lines
6bf7aab6
DL
1236(@pxref{Transpose}).
1237
1238@item Truncation
1239Truncating text lines in the display means leaving out any text on a
1240line that does not fit within the right margin of the window
0efda3ff 1241displaying it. See also `continuation line.'
88579253 1242@xref{Continuation Lines,Truncation}.
6bf7aab6 1243
08aa7220 1244@item TTY
63b2eb5c 1245See `text-only terminal.'
08aa7220 1246
6bf7aab6
DL
1247@item Undoing
1248Undoing means making your previous editing go in reverse, bringing
1249back the text that existed earlier in the editing session.
1250@xref{Undo}.
1251
1252@item User Option
12e737f8
RS
1253A user option is a face (q.v.@:) or a variable (q.v.@:) that exists so
1254that you can customize Emacs by setting it to a new value.
1255@xref{Easy Customization}.
6bf7aab6
DL
1256
1257@item Variable
1258A variable is an object in Lisp that can store an arbitrary value.
1259Emacs uses some variables for internal purposes, and has others (known
1260as `user options' (q.v.@:)) just so that you can set their values to
1261control the behavior of Emacs. The variables used in Emacs that you
1262are likely to be interested in are listed in the Variables Index in
64429953
RS
1263this manual (@pxref{Variable Index}). @xref{Variables}, for
1264information on variables.
6bf7aab6
DL
1265
1266@item Version Control
1267Version control systems keep track of multiple versions of a source file.
1268They provide a more powerful alternative to keeping backup files (q.v.@:).
1269@xref{Version Control}.
1270
1271@item Visiting
1272Visiting a file means loading its contents into a buffer (q.v.@:)
1273where they can be edited. @xref{Visiting}.
1274
1275@item Whitespace
1276Whitespace is any run of consecutive formatting characters (space,
1277tab, newline, and backspace).
1278
1279@item Widening
1280Widening is removing any restriction (q.v.@:) on the current buffer;
1281it is the opposite of narrowing (q.v.@:). @xref{Narrowing}.
1282
1283@item Window
1284Emacs divides a frame (q.v.@:) into one or more windows, each of which
1285can display the contents of one buffer (q.v.@:) at any time.
1286@xref{Screen}, for basic information on how Emacs uses the screen.
08aa7220
EZ
1287@xref{Windows}, for commands to control the use of windows. Some
1288other editors use the term ``window'' for what we call a `frame'
1289(q.v.@:) in Emacs.
6bf7aab6 1290
f7246d2f 1291@item Window System
d1931152
RS
1292A window system is software that operates on a graphical display
1293(q.v.@:), to subdivide the screen so that multiple applications can
1294have their] own windows at the same time. All modern operating systems
1295include a window system.
f7246d2f 1296
6bf7aab6 1297@item Word Abbrev
0efda3ff 1298See `abbrev.'
6bf7aab6
DL
1299
1300@item Word Search
1301Word search is searching for a sequence of words, considering the
1302punctuation between them as insignificant. @xref{Word Search}.
1303
1304@item WYSIWYG
0efda3ff 1305WYSIWYG stands for ``What you see is what you get.'' Emacs generally
6bf7aab6
DL
1306provides WYSIWYG editing for files of characters; in Enriched mode
1307(@pxref{Formatted Text}), it provides WYSIWYG editing for files that
1308include text formatting information.
1309
1310@item Yanking
1311Yanking means reinserting text previously killed. It can be used to
1312undo a mistaken kill, or for copying or moving text. Some other
1313systems call this ``pasting.'' @xref{Yanking}.
1314@end table
1315
ab5796a9
MB
1316@ignore
1317 arch-tag: 0dd53ce1-5f09-4ac2-b13b-cf22b0f28d23
1318@end ignore