home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / info / emacs-12 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  48KB  |  836 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: GUD Customization,  Prev: Commands of GUD,  Up: Debuggers
  4. GUD Customization
  5. -----------------
  6.    On startup, GUD runs one of the following hooks: `gdb-mode-hook', if
  7. you are using GDB; `dbx-mode-hook', if you are using DBX;
  8. `sdb-mode-hook', if you are using SDB; `xdb-mode-hook', if you are
  9. using XDB; `perldb-mode-hook', for Perl debugging mode.  You can use
  10. these hooks to define custom key bindings for the debugger interaction
  11. buffer.  *Note Hooks::.
  12.    Here is a convenient way to define a command that sends a particular
  13. command string to the debugger, and set up a key binding for it in the
  14. debugger interaction buffer:
  15.      (gud-def FUNCTION CMDSTRING BINDING DOCSTRING)
  16.    This defines a command named FUNCTION which sends CMDSTRING to the
  17. debugger process, and gives it the documentation string DOCSTRING.  You
  18. can use the command thus defined in any buffer.  If BINDING is
  19. non-`nil', `gud-def' also binds the command to `C-c BINDING' in the GUD
  20. buffer's mode and to `C-x C-a BINDING' generally.
  21.    The command string CMDSTRING may contain certain `%'-sequences that
  22. stand for data to be filled in at the time FUNCTION is called:
  23.      The name of the current source file.  If the current buffer is the
  24.      GUD buffer, then the "current source file" is the file that the
  25.      program stopped in.
  26.      The number of the current source line.  If the current buffer is
  27.      the GUD buffer, then the "current source line" is the line that
  28.      the program stopped in.
  29.      The text of the C lvalue or function-call expression at or
  30.      adjacent to point.
  31.      The text of the hexadecimal address at or adjacent to point.
  32.      The numeric argument of the called function, as a decimal number.
  33.      If the command is used without a numeric argument, `%p' stands for
  34.      the empty string.
  35.      If you don't use `%p' in the command string, the command you define
  36.      ignores any numeric argument.
  37. File: emacs,  Node: Executing Lisp,  Next: Lisp Libraries,  Prev: Debuggers,  Up: Building
  38. Executing Lisp Expressions
  39. ==========================
  40.    Emacs has several different major modes for Lisp and Scheme.  They
  41. are the same in terms of editing commands, but differ in the commands
  42. for executing Lisp expressions.  Each mode has its own purpose.
  43. Emacs-Lisp mode
  44.      The mode for editing source files of programs to run in Emacs Lisp.
  45.      This mode defines `C-M-x' to evaluate the current defun.  *Note
  46.      Lisp Libraries::.
  47. Lisp Interaction mode
  48.      The mode for an interactive session with Emacs Lisp.  It defines
  49.      LFD to evaluate the sexp before point and insert its value in the
  50.      buffer.  *Note Lisp Interaction::.
  51. Lisp mode
  52.      The mode for editing source files of programs that run in Lisps
  53.      other than Emacs Lisp.  This mode defines `C-M-x' to send the
  54.      current defun to an inferior Lisp process.  *Note External Lisp::.
  55. Inferior Lisp mode
  56.      The mode for an interactive session with an inferior Lisp process.
  57.      This mode combines the special features of Lisp mode and Shell mode
  58.      (*note Shell Mode::.).
  59. Scheme mode
  60.      Like Lisp mode but for Scheme programs.
  61. Inferior Scheme mode
  62.      The mode for an interactive session with an inferior Scheme
  63.      process.
  64. * Menu:
  65. These subnodes of the chapter on editing programs describe the editing
  66. commands for working with Lisp programs, which are in fact available
  67. globally.
  68. * Lists::          Expressions with balanced parentheses.
  69. * List Commands::     The commands for working with list and sexps.
  70. * Defuns::          Each program is made up of separate functions.
  71.             There are editing commands to operate on them.
  72. * Program Indent::    Adjusting indentation to show the nesting.
  73. * Matching::          Insertion of a close-delimiter flashes matching open.
  74. * Comments::          Inserting, killing, and aligning comments.
  75. File: emacs,  Node: Lisp Libraries,  Next: Lisp Interaction,  Prev: Executing Lisp,  Up: Building
  76. Libraries of Lisp Code for Emacs
  77. ================================
  78.    Lisp code for Emacs editing commands is stored in files whose names
  79. conventionally end in `.el'.  This ending tells Emacs to edit them in
  80. Emacs-Lisp mode (*note Executing Lisp::.).
  81.    To execute a file of Emacs Lisp code, use `M-x load-file'.  This
  82. command reads a file name using the minibuffer and then executes the
  83. contents of that file as Lisp code.  It is not necessary to visit the
  84. file first; in any case, this command reads the file as found on disk,
  85. not text in an Emacs buffer.
  86.    Once a file of Lisp code is installed in the Emacs Lisp library
  87. directories, users can load it using `M-x load-library'.  Programs can
  88. load it by calling `load-library', or with `load', a more primitive
  89. function that is similar but accepts some additional arguments.
  90.    `M-x load-library' differs from `M-x load-file' in that it searches
  91. a sequence of directories and tries three file names in each directory.
  92. Suppose your argument is LIB; the three names are `LIB.elc', `LIB.el',
  93. and lastly just `LIB'.  If `LIB.elc' exists, it is by convention the
  94. result of compiling `LIB.el'; it is better to load the compiled file,
  95. since it will load and run faster.
  96.    If `load-library' finds that `LIB.el' is newer than `LIB.elc' file,
  97. it prints a warning, because it's likely that somebody made changes to
  98. the `.el' file and forgot to recompile it.
  99.    Because the argument to `load-library' is usually not in itself a
  100. valid file name, file name completion is not available.  Indeed, when
  101. using this command, you usually do not know exactly what file name will
  102. be used.
  103.    The sequence of directories searched by `M-x load-library' is
  104. specified by the variable `load-path', a list of strings that are
  105. directory names.  The default value of the list contains the directory
  106. where the Lisp code for Emacs itself is stored.  If you have libraries
  107. of your own, put them in a single directory and add that directory to
  108. `load-path'.  `nil' in this list stands for the current default
  109. directory, but it is probably not a good idea to put `nil' in the list.
  110. If you find yourself wishing that `nil' were in the list, most likely
  111. what you really want to do is use `M-x load-file' this once.
  112.    Often you do not have to give any command to load a library, because
  113. the commands defined in the library are set up to "autoload" that
  114. library.  Trying to run any of those commands calls `load' to load the
  115. library; this replaces the autoload definitions with the real ones from
  116. the library.
  117.    Emacs Lisp code can be compiled into byte-code which loads faster,
  118. takes up less space when loaded, and executes faster.  *Note Byte
  119. Compilation: (elisp)Byte Compilation.  By convention, the compiled code
  120. for a library goes in a separate file whose name consists of the
  121. library source file with `c' appended.  Thus, the compiled code for
  122. `foo.el' goes in `foo.elc'.  That's why `load-library' searches for
  123. `.elc' files first.
  124. File: emacs,  Node: Lisp Eval,  Next: External Lisp,  Prev: Lisp Interaction,  Up: Building
  125. Evaluating Emacs-Lisp Expressions
  126. =================================
  127.    Lisp programs intended to be run in Emacs should be edited in
  128. Emacs-Lisp mode; this happens automatically for file names ending in
  129. `.el'.  By contrast, Lisp mode itself is used for editing Lisp programs
  130. intended for other Lisp systems.  To switch to Emacs-Lisp mode
  131. explicitly, use the command `M-x emacs-lisp-mode'.
  132.    For testing of Lisp programs to run in Emacs, it is often useful to
  133. evaluate part of the program as it is found in the Emacs buffer.  For
  134. example, after changing the text of a Lisp function definition,
  135. evaluating the definition installs the change for future calls to the
  136. function.  Evaluation of Lisp expressions is also useful in any kind of
  137. editing, for invoking noninteractive functions (functions that are not
  138. commands).
  139. `M-ESC'
  140.      Read a single Lisp expression in the minibuffer, evaluate it, and
  141.      print the value in the echo area (`eval-expression').
  142. `C-x C-e'
  143.      Evaluate the Lisp expression before point, and print the value in
  144.      the echo area (`eval-last-sexp').
  145. `C-M-x'
  146.      Evaluate the defun containing or after point, and print the value
  147.      in the echo area (`eval-defun').
  148. `M-x eval-region'
  149.      Evaluate all the Lisp expressions in the region.
  150. `M-x eval-current-buffer'
  151.      Evaluate all the Lisp expressions in the buffer.
  152.    `M-ESC' (`eval-expression') is the most basic command for evaluating
  153. a Lisp expression interactively.  It reads the expression using the
  154. minibuffer, so you can execute any expression on a buffer regardless of
  155. what the buffer contains.  When the expression is evaluated, the current
  156. buffer is once again the buffer that was current when `M-ESC' was typed.
  157.    `M-ESC' can easily confuse users who do not understand it,
  158. especially on keyboards with autorepeat where it can result from holding
  159. down the ESC key for too long.  Therefore, `eval-expression' is
  160. normally a disabled command.  Attempting to use this command asks for
  161. confirmation and gives you the option of enabling it; once you enable
  162. the command, confirmation will no longer be required for it.  *Note
  163. Disabling::.
  164.    In Emacs-Lisp mode, the key `C-M-x' is bound to the command
  165. `eval-defun', which parses the defun containing or following point as a
  166. Lisp expression and evaluates it.  The value is printed in the echo
  167. area.  This command is convenient for installing in the Lisp environment
  168. changes that you have just made in the text of a function definition.
  169.    The command `C-x C-e' (`eval-last-sexp') performs a similar job but
  170. is available in all major modes, not just Emacs-Lisp mode.  It finds
  171. the sexp before point, reads it as a Lisp expression, evaluates it, and
  172. prints the value in the echo area.  It is sometimes useful to type in an
  173. expression and then, with point still after it, type `C-x C-e'.
  174.    If `C-M-x' or `C-x C-e' is given a numeric argument, it inserts the
  175. value into the current buffer at point, rather than displaying it in
  176. the echo area.  The argument's value does not matter.
  177.    The most general command for evaluating Lisp expressions from a
  178. buffer is `eval-region'.  `M-x eval-region' parses the text of the
  179. region as one or more Lisp expressions, evaluating them one by one.
  180. `M-x eval-current-buffer' is similar but evaluates the entire buffer.
  181. This is a reasonable way to install the contents of a file of Lisp code
  182. that you are just ready to test.  Later, as you find bugs and change
  183. individual functions, use `C-M-x' on each function that you change.
  184. This keeps the Lisp world in step with the source file.
  185. File: emacs,  Node: Lisp Interaction,  Next: Lisp Eval,  Prev: Lisp Libraries,  Up: Building
  186. Lisp Interaction Buffers
  187. ========================
  188.    The buffer `*scratch*' which is selected when Emacs starts up is
  189. provided for evaluating Lisp expressions interactively inside Emacs.
  190.    The simplest way to use the `*scratch*' buffer is to insert Lisp
  191. expressions and type LFD after each expression.  This command reads the
  192. Lisp expression before point, evaluates it, and inserts the value in
  193. printed representation before point.  The result is a complete
  194. typescript of the expressions you have evaluated and their values.
  195.    The `*scratch*' buffer's major mode is Lisp Interaction mode, which
  196. is the same as Emacs-Lisp mode except for the binding of LFD.
  197.    The rationale for this feature is that Emacs must have a buffer when
  198. it starts up, but that buffer is not useful for editing files since a
  199. new buffer is made for every file that you visit.  The Lisp interpreter
  200. typescript is the most useful thing I can think of for the initial
  201. buffer to do.  Type `M-x lisp-interaction-mode' to put the current
  202. buffer in Lisp Interaction mode.
  203. File: emacs,  Node: External Lisp,  Prev: Lisp Eval,  Up: Building
  204. Running an External Lisp
  205. ========================
  206.    Emacs has facilities for running programs in other Lisp systems.
  207. You can run a Lisp process as an inferior of Emacs, and pass
  208. expressions to it to be evaluated.  You can also pass changed function
  209. definitions directly from the Emacs buffers in which you edit the Lisp
  210. programs to the inferior Lisp process.
  211.    To run an inferior Lisp process, type `M-x run-lisp'.  This runs the
  212. program named `lisp', the same program you would run by typing `lisp'
  213. as a shell command, with both input and output going through an Emacs
  214. buffer named `*lisp*'.  That is to say, any "terminal output" from Lisp
  215. will go into the buffer, advancing point, and any "terminal input" for
  216. Lisp comes from text in the buffer.  (You can change the name of the
  217. Lisp executable file by setting the variable `inferior-lisp-program'.)
  218.    To give input to Lisp, go to the end of the buffer and type the
  219. input, terminated by RET.  The `*lisp*' buffer is in Inferior Lisp
  220. mode, which combines the special characteristics of Lisp mode with most
  221. of the features of Shell mode (*note Shell Mode::.).  The definition of
  222. RET to send a line to a subprocess is one of the features of Shell mode.
  223.    For the source files of programs to run in external Lisps, use Lisp
  224. mode.  This mode can be selected with `M-x lisp-mode', and is used
  225. automatically for files whose names end in `.l', `.lsp', or `.lisp', as
  226. most Lisp systems usually expect.
  227.    When you edit a function in a Lisp program you are running, the
  228. easiest way to send the changed definition to the inferior Lisp process
  229. is the key `C-M-x'.  In Lisp mode, this runs the function
  230. `lisp-eval-defun', which finds the defun around or following point and
  231. sends it as input to the Lisp process.  (Emacs can send input to any
  232. inferior process regardless of what buffer is current.)
  233.    Contrast the meanings of `C-M-x' in Lisp mode (for editing programs
  234. to be run in another Lisp system) and Emacs-Lisp mode (for editing Lisp
  235. programs to be run in Emacs): in both modes it has the effect of
  236. installing the function definition that point is in, but the way of
  237. doing so is different according to where the relevant Lisp environment
  238. is found.  *Note Executing Lisp::.
  239. File: emacs,  Node: Abbrevs,  Next: Picture,  Prev: Building,  Up: Top
  240. Abbrevs
  241. *******
  242.    A defined "abbrev" is a word which "expands", if you insert it, into
  243. some different text.  Abbrevs are defined by the user to expand in
  244. specific ways.  For example, you might define `foo' as an abbrev
  245. expanding to `find outer otter'.  Then you would be able to insert
  246. `find outer otter ' into the buffer by typing `f o o SPC'.
  247.    A second kind of abbreviation facility is called "dynamic abbrev
  248. expansion".  You use dynamic abbrev expansion with an explicit command
  249. to expand the letters in the buffer before point by looking for other
  250. words in the buffer that start with those letters.  *Note Dynamic
  251. Abbrevs::.
  252. * Menu:
  253. * Abbrev Concepts::   Fundamentals of defined abbrevs.
  254. * Defining Abbrevs::  Defining an abbrev, so it will expand when typed.
  255. * Expanding Abbrevs:: Controlling expansion: prefixes, canceling expansion.
  256. * Editing Abbrevs::   Viewing or editing the entire list of defined abbrevs.
  257. * Saving Abbrevs::    Saving the entire list of abbrevs for another session.
  258. * Dynamic Abbrevs::   Abbreviations for words already in the buffer.
  259. File: emacs,  Node: Abbrev Concepts,  Next: Defining Abbrevs,  Up: Abbrevs
  260. Abbrev Concepts
  261. ===============
  262.    An "abbrev" is a word which has been defined to "expand" into a
  263. specified "expansion".  When you insert a word-separator character
  264. following the abbrev, that expands the abbrev--replacing the abbrev
  265. with its expansion.  For example, if `foo' is defined as an abbrev
  266. expanding to `find outer otter', then you can insert `find outer
  267. otter.'  into the buffer by typing `f o o .'.
  268.    Abbrevs expand only when Abbrev mode (a minor mode) is enabled.
  269. Disabling Abbrev mode does not cause abbrev definitions to be forgotten,
  270. but they do not expand until Abbrev mode is enabled again.  The command
  271. `M-x abbrev-mode' toggles Abbrev mode; with a numeric argument, it
  272. turns Abbrev mode on if the argument is positive, off otherwise.  *Note
  273. Minor Modes::.  `abbrev-mode' is also a variable; Abbrev mode is on
  274. when the variable is non-`nil'.  The variable `abbrev-mode'
  275. automatically becomes local to the current buffer when it is set.
  276.    Abbrev definitions can be "mode-specific"--active only in one major
  277. mode.  Abbrevs can also have "global" definitions that are active in
  278. all major modes.  The same abbrev can have a global definition and
  279. various mode-specific definitions for different major modes.  A mode
  280. specific definition for the current major mode overrides a global
  281. definition.
  282.    Abbrevs can be defined interactively during the editing session.
  283. Lists of abbrev definitions can also be saved in files and reloaded in
  284. later sessions.  Some users keep extensive lists of abbrevs that they
  285. load in every session.
  286. File: emacs,  Node: Defining Abbrevs,  Next: Expanding Abbrevs,  Prev: Abbrev Concepts,  Up: Abbrevs
  287. Defining Abbrevs
  288. ================
  289. `C-x a g'
  290.      Define an abbrev, using one or more words before point as its
  291.      expansion (`add-global-abbrev').
  292. `C-x a l'
  293.      Similar, but define an abbrev specific to the current major mode
  294.      (`add-mode-abbrev').
  295. `C-x a i g'
  296.      Define a word in the buffer as an abbrev
  297.      (`inverse-add-global-abbrev').
  298. `C-x a i l'
  299.      Define a word in the buffer as a mode-specific abbrev
  300.      (`inverse-add-mode-abbrev').
  301. `M-x kill-all-abbrevs'
  302.      This command discards all abbrev definitions currently in effect,
  303.      leaving a blank slate.
  304.    The usual way to define an abbrev is to enter the text you want the
  305. abbrev to expand to, position point after it, and type `C-x a g'
  306. (`add-global-abbrev').  This reads the abbrev itself using the
  307. minibuffer, and then defines it as an abbrev for one or more words
  308. before point.  Use a numeric argument to say how many words before
  309. point should be taken as the expansion.  For example, to define the
  310. abbrev `foo' as mentioned above, insert the text `find outer otter' and
  311. then type `C-u 3 C-x a g f o o RET'.
  312.    An argument of zero to `C-x a g' means to use the contents of the
  313. region as the expansion of the abbrev being defined.
  314.    The command `C-x a l' (`add-mode-abbrev') is similar, but defines a
  315. mode-specific abbrev.  Mode specific abbrevs are active only in a
  316. particular major mode.  `C-x a l' defines an abbrev for the major mode
  317. in effect at the time `C-x a l' is typed.  The arguments work the same
  318. as for `C-x a g'.
  319.    If the text already in the buffer is the abbrev, rather than its
  320. expansion, use command `C-x a i g' (`inverse-add-global-abbrev')
  321. instead of `C-x a g', or use `C-x a i l' (`inverse-add-mode-abbrev')
  322. instead of `C-x a l'.  These commands are called "inverse" because they
  323. invert the meaning of the two text strings they use (one from the
  324. buffer and one read with the minibuffer).
  325.    To change the definition of an abbrev, just define a new definition.
  326. When the abbrev has a prior definition, the abbrev definition commands
  327. ask for confirmation for replacing it.
  328.    To remove an abbrev definition, give a negative argument to the
  329. abbrev definition command: `C-u - C-x a g' or `C-u - C-x a l'.  The
  330. former removes a global definition, while the latter removes a
  331. mode-specific definition.
  332.    `M-x kill-all-abbrevs' removes all the abbrev definitions there are,
  333. both global and local.
  334. File: emacs,  Node: Expanding Abbrevs,  Next: Editing Abbrevs,  Prev: Defining Abbrevs,  Up: Abbrevs
  335. Controlling Abbrev Expansion
  336. ============================
  337.    An abbrev expands whenever it is present in the buffer just before
  338. point and you type a self-inserting whitespace or punctuation character
  339. (SPC, comma, etc.).  More precisely, any character that is not a word
  340. constituent expands an abbrev, and any word constituent character can
  341. be part of an abbrev.  The most common way to use an abbrev is to
  342. insert it and then insert a punctuation character to expand it.
  343.    Abbrev expansion preserves case; thus, `foo' expands into `find
  344. outer otter'; `Foo' into `Find outer otter', and `FOO' into `FIND OUTER
  345. OTTER' or `Find Outer Otter' according to the variable
  346. `abbrev-all-caps' (a non-`nil' value chooses the first of the two
  347. expansions).
  348.    These commands are used to control abbrev expansion:
  349. `M-''
  350.      Separate a prefix from a following abbrev to be expanded
  351.      (`abbrev-prefix-mark').
  352. `C-x a e'
  353.      Expand the abbrev before point (`expand-abbrev').  This is
  354.      effective even when Abbrev mode is not enabled.
  355. `M-x expand-region-abbrevs'
  356.      Expand some or all abbrevs found in the region.
  357.    You may wish to expand an abbrev with a prefix attached; for example,
  358. if `cnst' expands into `construction', you might want to use it to
  359. enter `reconstruction'.  It does not work to type `recnst', because
  360. that is not necessarily a defined abbrev.  What you can do is use the
  361. command `M-'' (`abbrev-prefix-mark') in between the prefix `re' and the
  362. abbrev `cnst'.  First, insert `re'.  Then type `M-''; this inserts a
  363. hyphen in the buffer to indicate that it has done its work.  Then
  364. insert the abbrev `cnst'; the buffer now contains `re-cnst'.  Now
  365. insert a non-word character to expand the abbrev `cnst' into
  366. `construction'.  This expansion step also deletes the hyphen that
  367. indicated `M-'' had been used.  The result is the desired
  368. `reconstruction'.
  369.    If you actually want the text of the abbrev in the buffer, rather
  370. than its expansion, you can accomplish this by inserting the following
  371. punctuation with `C-q'.  Thus, `foo C-q ,' leaves `foo,' in the buffer.
  372.    If you expand an abbrev by mistake, you can undo the expansion and
  373. bring back the abbrev itself by typing `C-_' (`undo').  This also
  374. undoes the insertion of the non-word character that expanded the
  375. abbrev.  If the result you want is the terminating non-word character
  376. plus the unexpanded abbrev, you must reinsert the terminating character,
  377. quoting it with `C-q'.
  378.    `M-x expand-region-abbrevs' searches through the region for defined
  379. abbrevs, and for each one found offers to replace it with its expansion.
  380. This command is useful if you have typed in text using abbrevs but
  381. forgot to turn on Abbrev mode first.  It may also be useful together
  382. with a special set of abbrev definitions for making several global
  383. replacements at once.  This command is effective even if Abbrev mode is
  384. not enabled.
  385.    Expanding an abbrev runs the hook `pre-abbrev-expand-hook' (*note
  386. Hooks::.).
  387. File: emacs,  Node: Editing Abbrevs,  Next: Saving Abbrevs,  Prev: Expanding Abbrevs,  Up: Abbrevs
  388. Examining and Editing Abbrevs
  389. =============================
  390. `M-x list-abbrevs'
  391.      Display a list of all abbrev definitions.
  392. `M-x edit-abbrevs'
  393.      Edit a list of abbrevs; you can add, alter or remove definitions.
  394.    The output from `M-x list-abbrevs' looks like this:
  395.      (lisp-mode-abbrev-table)
  396.      "dk"           0    "define-key"
  397.      (global-abbrev-table)
  398.      "dfn"           0    "definition"
  399. (Some blank lines of no semantic significance, and some other abbrev
  400. tables, have been omitted.)
  401.    A line containing a name in parentheses is the header for abbrevs in
  402. a particular abbrev table; `global-abbrev-table' contains all the global
  403. abbrevs, and the other abbrev tables that are named after major modes
  404. contain the mode-specific abbrevs.
  405.    Within each abbrev table, each nonblank line defines one abbrev.  The
  406. word at the beginning of the line is the abbrev.  The number that
  407. follows is the number of times the abbrev has been expanded.  Emacs
  408. keeps track of this to help you see which abbrevs you actually use, so
  409. that you can eliminate those that you don't use often.  The string at
  410. the end of the line is the expansion.
  411.    `M-x edit-abbrevs' allows you to add, change or kill abbrev
  412. definitions by editing a list of them in an Emacs buffer.  The list has
  413. the same format described above.  The buffer of abbrevs is called
  414. `*Abbrevs*', and is in Edit-Abbrevs mode.  Type `C-c C-c' in this
  415. buffer to install the abbrev definitions as specified in the
  416. buffer--and delete any abbrev definitions not listed.
  417.    The command `edit-abbrevs' is actually the same as `list-abbrevs'
  418. except that it selects the buffer `*Abbrevs*' whereas `list-abbrevs'
  419. merely displays it in another window.
  420. File: emacs,  Node: Saving Abbrevs,  Next: Dynamic Abbrevs,  Prev: Editing Abbrevs,  Up: Abbrevs
  421. Saving Abbrevs
  422. ==============
  423.    These commands allow you to keep abbrev definitions between editing
  424. sessions.
  425. `M-x write-abbrev-file RET FILE RET'
  426.      Write a file FILE describing all defined abbrevs.
  427. `M-x read-abbrev-file RET FILE RET'
  428.      Read the file FILE and define abbrevs as specified therein.
  429. `M-x quietly-read-abbrev-file RET FILE RET'
  430.      Similar but do not display a message about what is going on.
  431. `M-x define-abbrevs'
  432.      Define abbrevs from definitions in current buffer.
  433. `M-x insert-abbrevs'
  434.      Insert all abbrevs and their expansions into current buffer.
  435.    `M-x write-abbrev-file' reads a file name using the minibuffer and
  436. then writes a description of all current abbrev definitions into that
  437. file.  This is used to save abbrev definitions for use in a later
  438. session.  The text stored in the file is a series of Lisp expressions
  439. that, when executed, define the same abbrevs that you currently have.
  440.    `M-x read-abbrev-file' reads a file name using the minibuffer and
  441. then reads the file, defining abbrevs according to the contents of the
  442. file.  `M-x quietly-read-abbrev-file' is the same except that it does
  443. not display a message in the echo area saying that it is doing its
  444. work; it is actually useful primarily in the `.emacs' file.  If an
  445. empty argument is given to either of these functions, they use the file
  446. name specified in the variable `abbrev-file-name', which is by default
  447. `"~/.abbrev_defs"'.
  448.    Emacs will offer to save abbrevs automatically if you have changed
  449. any of them, whenever it offers to save all files (for `C-x s' or `C-x
  450. C-c').  This feature can be inhibited by setting the variable
  451. `save-abbrevs' to `nil'.
  452.    The commands `M-x insert-abbrevs' and `M-x define-abbrevs' are
  453. similar to the previous commands but work on text in an Emacs buffer.
  454. `M-x insert-abbrevs' inserts text into the current buffer before point,
  455. describing all current abbrev definitions; `M-x define-abbrevs' parses
  456. the entire current buffer and defines abbrevs accordingly.
  457. File: emacs,  Node: Dynamic Abbrevs,  Prev: Saving Abbrevs,  Up: Abbrevs
  458. Dynamic Abbrev Expansion
  459. ========================
  460.    The abbrev facility described above operates automatically as you
  461. insert text, but all abbrevs must be defined explicitly.  By contrast,
  462. "dynamic abbrevs" allow the meanings of abbrevs to be determined
  463. automatically from the contents of the buffer, but dynamic abbrev
  464. expansion happens only when you request it explicitly.
  465. `M-/'
  466.      Expand the word in the buffer before point as a "dynamic abbrev",
  467.      by searching in the buffer for words starting with that
  468.      abbreviation (`dabbrev-expand').
  469.    For example, if the buffer contains `does this follow ' and you type
  470. `f o M-/', the effect is to insert `follow' because that is the last
  471. word in the buffer that starts with `fo'.  A numeric argument to `M-/'
  472. says to take the second, third, etc. distinct expansion found looking
  473. backward from point.  Repeating `M-/' searches for an alternative
  474. expansion by looking farther back.  After the entire buffer before
  475. point has been considered, the buffer after point is searched.
  476.    A negative argument to `M-/', as in `C-u - M-/', says to search
  477. first for expansions after point, and only later search the text before
  478. point.  If you repeat the `M-/' to look for another expansion, do not
  479. specify an argument.  This tries all the expansions after point and
  480. then the expansions before point.
  481.    Dynamic abbrev expansion is completely independent of Abbrev mode;
  482. the expansion of a word with `M-/' is completely independent of whether
  483. it has a definition as an ordinary abbrev.
  484. File: emacs,  Node: Picture,  Next: Sending Mail,  Prev: Abbrevs,  Up: Top
  485. Editing Pictures
  486. ****************
  487.    To edit a picture made out of text characters (for example, a picture
  488. of the division of a register into fields, as a comment in a program),
  489. use the command `M-x edit-picture' to enter Picture mode.
  490.    In Picture mode, editing is based on the "quarter-plane" model of
  491. text, according to which the text characters lie studded on an area that
  492. stretches infinitely far to the right and downward.  The concept of the
  493. end of a line does not exist in this model; the most you can say is
  494. where the last nonblank character on the line is found.
  495.    Of course, Emacs really always considers text as a sequence of
  496. characters, and lines really do have ends.  But Picture mode replaces
  497. the most frequently-used commands with variants that simulate the
  498. quarter-plane model of text.  They do this by inserting spaces or by
  499. converting tabs to spaces.
  500.    Most of the basic editing commands of Emacs are redefined by Picture
  501. mode to do essentially the same thing but in a quarter-plane way.  In
  502. addition, Picture mode defines various keys starting with the `C-c'
  503. prefix to run special picture editing commands.
  504.    One of these keys, `C-c C-c', is pretty important.  Often a picture
  505. is part of a larger file that is usually edited in some other major
  506. mode.  `M-x edit-picture' records the name of the previous major mode
  507. so you can use the `C-c C-c' command (`picture-mode-exit') later to go
  508. back to that mode.  `C-c C-c' also deletes spaces from the ends of
  509. lines, unless given a numeric argument.
  510.    The special commands of Picture mode all work in other modes
  511. (provided the `picture' library is loaded), but are not bound to keys
  512. except in Picture mode.  The descriptions below talk of moving "one
  513. column" and so on, but all the picture mode commands handle numeric
  514. arguments as their normal equivalents do.
  515.    Turning on Picture mode runs the hook `picture-mode-hook' (*note
  516. Hooks::.).
  517. * Menu:
  518. * Basic Picture::         Basic concepts and simple commands of Picture Mode.
  519. * Insert in Picture::     Controlling direction of cursor motion
  520.                             after "self-inserting" characters.
  521. * Tabs in Picture::       Various features for tab stops and indentation.
  522. * Rectangles in Picture:: Clearing and superimposing rectangles.
  523. File: emacs,  Node: Basic Picture,  Next: Insert in Picture,  Prev: Picture,  Up: Picture
  524. Basic Editing in Picture Mode
  525. =============================
  526.    Most keys do the same thing in Picture mode that they usually do, but
  527. do it in a quarter-plane style.  For example, `C-f' is rebound to run
  528. `picture-forward-column', a command which moves point one column to the
  529. right, inserting a space if necessary so that the actual end of the
  530. line makes no difference.  `C-b' is rebound to run
  531. `picture-backward-column', which always moves point left one column,
  532. converting a tab to multiple spaces if necessary.  `C-n' and `C-p' are
  533. rebound to run `picture-move-down' and `picture-move-up', which can
  534. either insert spaces or convert tabs as necessary to make sure that
  535. point stays in exactly the same column.  `C-e' runs
  536. `picture-end-of-line', which moves to after the last nonblank character
  537. on the line.  There is no need to change `C-a', as the choice of screen
  538. model does not affect beginnings of lines.
  539.    Insertion of text is adapted to the quarter-plane screen model
  540. through the use of Overwrite mode (*note Minor Modes::.).
  541. Self-inserting characters replace existing text, column by column,
  542. rather than pushing existing text to the right.  RET runs
  543. `picture-newline', which just moves to the beginning of the following
  544. line so that new text will replace that line.
  545.    Picture mode provides erasure instead of deletion and killing of
  546. text.  DEL (`picture-backward-clear-column') replaces the preceding
  547. character with a space rather than removing it; this moves point
  548. backwards.  `C-d' (`picture-clear-column') replaces the next character
  549. or characters with spaces, but does not move point.  (If you want to
  550. clear characters to spaces and move forward over them, use SPC.)  `C-k'
  551. (`picture-clear-line') really kills the contents of lines, but does not
  552. delete the newlines from the buffer.
  553.    To do actual insertion, you must use special commands.  `C-o'
  554. (`picture-open-line') creates a blank line after the current line; it
  555. never splits a line.  `C-M-o', `split-line', makes sense in Picture
  556. mode, so it is not changed.  LFD (`picture-duplicate-line') inserts
  557. below the current line another line with the same contents.
  558.    To do actual deletion in Picture mode, use `C-w', `C-c C-d' (which
  559. is defined as `delete-char', as `C-d' is in other modes), or one of the
  560. picture rectangle commands (*note Rectangles in Picture::.).
  561. File: emacs,  Node: Insert in Picture,  Next: Tabs in Picture,  Prev: Basic Picture,  Up: Picture
  562. Controlling Motion after Insert
  563. ===============================
  564.    Since "self-inserting" characters in Picture mode overwrite and move
  565. point, there is no essential restriction on how point should be moved.
  566. Normally point moves right, but you can specify any of the eight
  567. orthogonal or diagonal directions for motion after a "self-inserting"
  568. character.  This is useful for drawing lines in the buffer.
  569. `C-c <'
  570.      Move left after insertion (`picture-movement-left').
  571. `C-c >'
  572.      Move right after insertion (`picture-movement-right').
  573. `C-c ^'
  574.      Move up after insertion (`picture-movement-up').
  575. `C-c .'
  576.      Move down after insertion (`picture-movement-down').
  577. `C-c `'
  578.      Move up and left ("northwest") after insertion
  579.      (`picture-movement-nw').
  580. `C-c ''
  581.      Move up and right ("northeast") after insertion
  582.      (`picture-movement-ne').
  583. `C-c /'
  584.      Move down and left ("southwest") after insertion
  585.      (`picture-movement-sw').
  586. `C-c \'
  587.      Move down and right ("southeast") after insertion
  588.      (`picture-movement-se').
  589.    Two motion commands move based on the current Picture insertion
  590. direction.  The command `C-c C-f' (`picture-motion') moves in the same
  591. direction as motion after "insertion" currently does, while `C-c C-b'
  592. (`picture-motion-reverse') moves in the opposite direction.
  593. File: emacs,  Node: Tabs in Picture,  Next: Rectangles in Picture,  Prev: Insert in Picture,  Up: Picture
  594. Picture Mode Tabs
  595. =================
  596.    Two kinds of tab-like action are provided in Picture mode.  Use
  597. `M-TAB' (`picture-tab-search') for context-based tabbing.  With no
  598. argument, it moves to a point underneath the next "interesting"
  599. character that follows whitespace in the previous nonblank line.
  600. "Next" here means "appearing at a horizontal position greater than the
  601. one point starts out at."  With an argument, as in `C-u M-TAB', this
  602. command moves to the next such interesting character in the current
  603. line.  `M-TAB' does not change the text; it only moves point.
  604. "Interesting" characters are defined by the variable
  605. `picture-tab-chars', which should define a set of characters.  The
  606. syntax for this variable is like the syntax used inside of `[...]' in a
  607. regular expression--but without the `[' and the `]'.  Its default value
  608. is `"!-~"'.
  609.    TAB itself runs `picture-tab', which operates based on the current
  610. tab stop settings; it is the Picture mode equivalent of
  611. `tab-to-tab-stop'.  Normally it just moves point, but with a numeric
  612. argument it clears the text that it moves over.
  613.    The context-based and tab-stop-based forms of tabbing are brought
  614. together by the command `C-c TAB', `picture-set-tab-stops'.  This
  615. command sets the tab stops to the positions which `M-TAB' would
  616. consider significant in the current line.  The use of this command,
  617. together with TAB, can get the effect of context-based tabbing.  But
  618. `M-TAB' is more convenient in the cases where it is sufficient.
  619. File: emacs,  Node: Rectangles in Picture,  Prev: Tabs in Picture,  Up: Picture
  620. Picture Mode Rectangle Commands
  621. ===============================
  622.    Picture mode defines commands for working on rectangular pieces of
  623. the text in ways that fit with the quarter-plane model.  The standard
  624. rectangle commands may also be useful (*note Rectangles::.).
  625. `C-c C-k'
  626.      Clear out the region-rectangle with spaces
  627.      (`picture-clear-rectangle').  With argument, delete the text.
  628. `C-c C-w R'
  629.      Similar but save rectangle contents in register R first
  630.      (`picture-clear-rectangle-to-register').
  631. `C-c C-y'
  632.      Copy last killed rectangle into the buffer by overwriting, with
  633.      upper left corner at point (`picture-yank-rectangle').  With
  634.      argument, insert instead.
  635. `C-c C-x R'
  636.      Similar, but use the rectangle in register R
  637.      (`picture-yank-rectangle-from-register').
  638.    The picture rectangle commands `C-c C-k' (`picture-clear-rectangle')
  639. and `C-c C-w' (`picture-clear-rectangle-to-register') differ from the
  640. standard rectangle commands in that they normally clear the rectangle
  641. instead of deleting it; this is analogous with the way `C-d' is changed
  642. in Picture mode.
  643.    However, deletion of rectangles can be useful in Picture mode, so
  644. these commands delete the rectangle if given a numeric argument.  `C-c
  645. C-k' either with or without a numeric argument saves the rectangle for
  646. `C-c C-y'.
  647.    The Picture mode commands for yanking rectangles differ from the
  648. standard ones in overwriting instead of inserting.  This is the same way
  649. that Picture mode insertion of other text differs from other modes.
  650. `C-c C-y' (`picture-yank-rectangle') inserts (by overwriting) the
  651. rectangle that was most recently killed, while `C-c C-x'
  652. (`picture-yank-rectangle-from-register') does likewise for the
  653. rectangle found in a specified register.
  654. File: emacs,  Node: Sending Mail,  Next: Rmail,  Prev: Picture,  Up: Top
  655. Sending Mail
  656. ************
  657.    To send a message in Emacs, you start by typing a command (`C-x m')
  658. to select and initialize the `*mail*' buffer.  Then you edit the text
  659. and headers of the message in this buffer, and type another command
  660. (`C-c C-c') to send the message.
  661. `C-x m'
  662.      Begin composing a message to send (`mail').
  663. `C-x 4 m'
  664.      Likewise, but display the message in another window
  665.      (`mail-other-window').
  666. `C-x 5 m'
  667.      Likewise, but make a new frame (`mail-other-frame').
  668. `C-c C-c'
  669.      In Mail mode, send the message and switch to another buffer
  670.      (`mail-send-and-exit').
  671.    The command `C-x m' (`mail') selects a buffer named `*mail*' and
  672. initializes it with the skeleton of an outgoing message.  `C-x 4 m'
  673. (`mail-other-window') selects the `*mail*' buffer in a different
  674. window, leaving the previous current buffer visible.  `C-x 5 m'
  675. (`mail-other-frame') creates a new frame to select the `*mail*' buffer.
  676.    Because the mail composition buffer is an ordinary Emacs buffer, you
  677. can switch to other buffers while in the middle of composing mail, and
  678. switch back later (or never).  If you use the `C-x m' command again
  679. when you have been composing another message but have not sent it, you
  680. are asked to confirm before the old message is erased.  If you answer
  681. `n', the `*mail*' buffer is left selected with its old contents, so you
  682. can finish the old message and send it.  `C-u C-x m' is another way to
  683. do this.  Sending the message marks the `*mail*' buffer "unmodified",
  684. which avoids the need for confirmation when `C-x m' is next used.
  685.    If you are composing a message in the `*mail*' buffer and want to
  686. send another message before finishing the first, rename the `*mail*'
  687. buffer using `M-x rename-uniquely' (*note Misc Buffer::.).  Then you
  688. can use `C-x m' or its variants described above to make a new `*mail'
  689. buffer.  Once you've done that, you can work with each mail buffer
  690. independently.
  691. * Menu:
  692. * Format: Mail Format.         Format of the mail being composed.
  693. * Headers: Mail Headers.     Details of permitted mail header fields.
  694. * Aliases: Mail Aliases.     Abbreviating and grouping mail addresses.
  695. * Mode: Mail Mode.         Special commands for editing mail being composed.
  696. * Spook: Distracting NSA.    How to distract the NSA's attention.
  697. File: emacs,  Node: Mail Format,  Next: Mail Headers,  Up: Sending Mail
  698. The Format of the Mail Buffer
  699. =============================
  700.    In addition to the "text" or "body", a message has "header fields"
  701. which say who sent it, when, to whom, why, and so on.  Some header
  702. fields such as the date and sender are created automatically after the
  703. message is sent.  Others, such as the recipient names, must be
  704. specified by you in order to send the message properly.
  705.    Mail mode provides a few commands to help you edit some header
  706. fields, and some are preinitialized in the buffer automatically at
  707. times.  You can insert and edit header fields using ordinary editing
  708. commands.
  709.    The line in the buffer that says
  710.      --text follows this line--
  711. is a special delimiter that separates the headers you have specified
  712. from the text.  Whatever follows this line is the text of the message;
  713. the headers precede it.  The delimiter line itself does not appear in
  714. the message actually sent.  The text used for the delimiter line is
  715. controlled by the variable `mail-header-separator'.
  716.    Here is an example of what the headers and text in the `*mail*'
  717. buffer might look like.
  718.      To: gnu@prep.ai.mit.edu
  719.      CC: lungfish@spam.org, byob@spam.org
  720.      Subject: The Emacs Manual
  721.      --Text follows this line--
  722.      Please ignore this message.
  723. File: emacs,  Node: Mail Headers,  Next: Mail Aliases,  Prev: Mail Format,  Up: Sending Mail
  724. Mail Header Fields
  725. ==================
  726.    A header field in the `*mail*' buffer starts with a field name at
  727. the beginning of a line, terminated by a colon.  Upper and lower case
  728. are equivalent in field names (and in mailing addresses also).  After
  729. the colon and optional whitespace comes the contents of the field.
  730.    You can use any name you like for a header field, but normally people
  731. use only standard field names with accepted meanings.  Here is a table
  732. of fields commonly used in outgoing messages.
  733.      This field contains the mailing addresses to which the message is
  734.      addressed.
  735. `Subject'
  736.      The contents of the `Subject' field should be a piece of text that
  737.      says what the message is about.  The reason `Subject' fields are
  738.      useful is that most mail-reading programs can provide a summary of
  739.      messages, listing the subject of each message but not its text.
  740.      This field contains additional mailing addresses to send the
  741.      message to, but whose readers should not regard the message as
  742.      addressed to them.
  743. `BCC'
  744.      This field contains additional mailing addresses to send the
  745.      message to, which should not appear in the header of the message
  746.      actually sent.  Copies sent this way are called "blind carbon
  747.      copies".
  748.      To send a blind carbon copy of every outgoing message to yourself,
  749.      set the variable `mail-self-blind' to `t'.
  750. `FCC'
  751.      This field contains the name of one file (in system mail file
  752.      format) to which a copy of the message should be appended when the
  753.      message is sent.  Do not output directly into an Rmail file with
  754.      `FCC'; instead, output to an inbox file and "get new mail" from
  755.      that inbox file into the Rmail file.  *Note Rmail Inbox::.
  756.      To put a fixed file name as in `FCC' field each time you start
  757.      editing an outgoing message, set the variable
  758.      `mail-archive-file-name' to that file name.  Unless you remove the
  759.      `FCC' field before sending, the message will be written into that
  760.      file when it is sent.
  761. `From'
  762.      Use the `From' field to say who you are, when the account you are
  763.      using to send the mail is not your own.  The contents of the
  764.      `From' field should be a valid mailing address, since replies will
  765.      normally go there.
  766. `Reply-to'
  767.      Use this field to direct replies to a different address.  Most
  768.      mail-reading programs (including Rmail) automatically send replies
  769.      to the `Reply-to' address in preference to the `From' address.  By
  770.      adding a `Reply-to' field to your header, you can work around any
  771.      problems your `From' address may cause for replies.
  772.      To put a fixed `Reply-to' address into every outgoing message, set
  773.      the variable `mail-default-reply-to' to that address (as a string).
  774.      Then `mail' initializes the message with a `Reply-to' field as
  775.      specified.  You can delete or alter that header field before you
  776.      send the message, if you wish.
  777. `In-reply-to'
  778.      This field contains a piece of text describing a message you are
  779.      replying to.  Some mail systems can use this information to
  780.      correlate related pieces of mail.  Normally this field is filled
  781.      in by Rmail when you reply to a message in Rmail, and you never
  782.      need to think about it (*note Rmail::.).
  783.    The `To', `CC', `BCC' and `FCC' fields can appear any number of
  784. times, to specify many places to send the message.  The `To', `CC', and
  785. `BCC' fields can have continuation lines.  All the lines starting with
  786. whitespace, following the line on which the field starts, are
  787. considered part of the field.  For example,
  788.      To: foo@here.net, this@there.net,
  789.        me@gnu.cambridge.mass.usa.earth.spiral3281
  790. File: emacs,  Node: Mail Aliases,  Next: Mail Mode,  Prev: Mail Headers,  Up: Sending Mail
  791. Mail Aliases
  792. ============
  793.    You can define "mail aliases" in a file named `~/.mailrc'.  These
  794. are short mnemonic names which stand for mail addresses or groups of
  795. mail addresses.  Like many other mail programs, Emacs expands aliases
  796. when they occur in the `To', `CC', and `BCC' fields.
  797.    To define an alias in `~/.mailrc', write a line in the following
  798. format:
  799.      alias SHORTADDRESS FULLADDRESSES
  800. Here FULLADDRESSES stands for one or more mail addresses for
  801. SHORTADDRESS to expand into.  Separate multiple addresses with spaces;
  802. if an address contains a space, quote the whole address with a pair of
  803. double-quotes.
  804.    For instance, to make `maingnu' stand for `gnu@prep.ai.mit.edu' plus
  805. a local address of your own, put in this line:
  806.      alias maingnu gnu@prep.ai.mit.edu local-gnu
  807.    Emacs also recognizes include commands in `.mailrc' files.  They
  808. look like this:
  809.      source FILENAME
  810. The file `~/.mailrc' is used primarily by other mail-reading programs;
  811. it can contain various other commands.  Emacs ignores everything in it
  812. except for alias definitions and include commands.
  813.    Another way to define a mail alias, within Emacs alone, is with the
  814. `define-mail-alias' command.  It prompts for the alias and then the
  815. full address.  You can use it to define aliases in your `.emacs' file,
  816. like this:
  817.      (define-mail-alias "maingnu" "gnu@prep.ai.mit.edu")
  818.    `define-mail-alias' records aliases by adding them to a variable
  819. named `mail-aliases'.  If you are comfortable with manipulating Lisp
  820. lists, you can set `mail-aliases' directly.  The initial value of
  821. `mail-aliases' is `t', which means that Emacs should read `.mailrc' to
  822. get the proper value.
  823.    Normally, Emacs expands aliases when you send the message.  If you
  824. like, you can have mail aliases expand as abbrevs, as soon as you type
  825. them in.  To enable this feature, execute the following:
  826.      (add-hook 'mail-setup-hook 'mail-abbrevs-setup)
  827. This can go in your `.emacs' file.  *Note Hooks::.  If you use this
  828. feature, you must use `define-mail-abbrev' instead of
  829. `define-mail-alias'; the latter does not work with this package.  Also,
  830. the mail abbreviation package uses the variable `mail-abbrevs' instead
  831. of `mail-aliases'.
  832.    Note that abbrevs expand only if you insert a word-separator
  833. character afterward.  However, any mail aliases that you didn't expand
  834. in the mail buffer are expanded subsequently when you send the message.
  835. *Note Abbrevs::.
  836.