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