home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emacs / etc / doc next >
Encoding:
Text File  |  1992-05-03  |  229.8 KB  |  4,036 lines

  1. Fopen-termscript
  2. Start writing all terminal output to FILE as well as the terminal.
  3. FILE = nil means just close any termscript file currently open.Fset-screen-height
  4. Tell redisplay that the screen has LINES lines.
  5. Optional second arg non-nil means that redisplay should use LINES lines
  6. but that the idea of the actual height of the screen should not be changed.Fset-screen-width
  7. Tell redisplay that the screen has COLS columns.
  8. Optional second arg non-nil means that redisplay should use COLS columns
  9. but that the idea of the actual width of the screen should not be changed.Fscreen-height
  10. Return number of lines on screen available for display.Fscreen-width
  11. Return number of columns on screen available for display.Fbaud-rate
  12. Return the output baud rate of the terminal.Fsend-string-to-terminal
  13. Send STRING to the terminal without alteration.
  14. Control characters in STRING will have terminal-dependent effects.Fding
  15. Beep, or flash the screen.
  16. Terminates any keyboard macro currently executing unless an argument
  17. is given.Fsleep-for
  18. Pause, without updating display, for ARG seconds.Fsit-for
  19. Perform redisplay, then wait for ARG seconds or until input is available.
  20. Optional second arg non-nil means don't redisplay.
  21. Redisplay is preempted as always if input arrives, and does not happen
  22. if input is available before it starts.
  23. Value is t if waited the full time with no input arriving.Vinverse-video
  24. *Non-nil means use inverse-video.Vvisible-bell
  25. *Non-nil means try to flash the screen to represent a bell.
  26. Note: for X windows, you must use x-set-bell instead.Vno-redraw-on-reenter
  27. *Non-nil means no need to redraw entire screen after suspending.
  28. It is up to you to set this variable to inform Emacs.Vwindow-system
  29. A symbol naming the window-system under which Emacs is running,
  30. (such as `x'), or nil if emacs is running on an ordinary terminal.Vwindow-system-version
  31. Version number of the window system Emacs is running under.Vcursor-in-echo-area
  32. Non-nil means put cursor in minibuffer after any message displayed there.Fredraw-display
  33. Clear the screen and output again what is supposed to appear on it.Vglobal-mode-string
  34. String displayed by mode-line-format's "%m" specifiation.Voverlay-arrow-position
  35. Marker for where to display an arrow on top of the buffer text.
  36. This must be the beginning of a line in order to work.
  37. See also overlay-arrow-string.Voverlay-arrow-string
  38. String to display as an arrow.  See also overlay-arrow-position.Vscroll-step
  39. *The number of lines to try scrolling a window by when point moves out.
  40. If that fails to bring point back on screen, point is centered instead.
  41. If this is zero, point is always centered after it moves off screen.Vreset-terminal-on-clear
  42. Non-nil means re-init terminal modes for clear screen as on entry to Emacs.Vdebug-end-pos
  43. Don't askVtruncate-partial-width-windows
  44. *Non-nil means truncate lines in all windows less than full screen wide.Vmode-line-inverse-video
  45. *Non-nil means use inverse video, or other suitable display mode, for the mode line.Fwindowp
  46. Returns t if OBJ is a window.Fselected-window
  47. Return the window that the cursor now appears in and commands apply to.Fminibuffer-window
  48. Return the window used for minibuffers.Fpos-visible-in-window-p
  49. Return t if position POS is currently on the screen in WINDOW.
  50. Returns nil if that position is scrolled vertically out of view.
  51. POS defaults to point; WINDOW, to the selected window.Fwindow-buffer
  52. Return the buffer that WINDOW is displaying.Fwindow-height
  53. Return the number of lines in WINDOW (including its mode line).Fwindow-width
  54. Return the number of columns in WINDOW.Fwindow-hscroll
  55. Return the number of columns by which WINDOW is scrolled from left margin.Fset-window-hscroll
  56. Set number of columns WINDOW is scrolled from left margin to NCOL.
  57. NCOL should be zero or positive.Fwindow-edges
  58. Return a list of the edge coordinates of WINDOW.
  59. (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of screen.
  60. RIGHT is one more than the rightmost column used by WINDOW,
  61. and BOTTOM is one more than the bottommost row used by WINDOW
  62.  and its mode-line.Fwindow-point
  63. Return current value of point in WINDOW.
  64. For a nonselected window, this is the value point would have
  65. if that window were selected.
  66.  
  67. Note that, when WINDOW is the selected window and its buffer
  68. is also currently selected, the value returned is the same as (point).
  69. It would be more strictly correct to return the `top-level' value
  70. of point, outside of any  save-excursion  forms.
  71. But that is hard to define.Fwindow-start
  72. Return position at which display currently starts in WINDOW.Fset-window-point
  73. Make point value in WINDOW be at position POS in WINDOW's buffer.Fset-window-start
  74. Make display in WINDOW start at position POS in WINDOW's buffer.
  75. Optional third arg NOFORCE non-nil inhibits next redisplay
  76. from overriding motion of point in order to display at this exact start.Fdelete-window
  77. Remove WINDOW from the display.  Default is selected window.Fnext-window
  78. Return next window after WINDOW in canonical ordering of windows.
  79. Optional second arg MINIBUF t means count the minibuffer window
  80. even if not active.  If MINIBUF is neither t nor nil it means
  81. not to count the minibuffer even if it is active.Fprevious-window
  82. Return previous window before WINDOW in canonical ordering of windows.Fother-window
  83. Select the ARG'th different window.Fget-lru-window
  84. Return the window least recently selected or used for display.Fget-largest-window
  85. Return the largest window in area.Fget-buffer-window
  86. Return a window currently displaying BUFFER, or nil if none.Fdelete-other-windows
  87. Make WINDOW (or the selected window) fill the screen.Fdelete-windows-on
  88. Delete all windows showing BUFFER.Freplace-buffer-in-windows
  89. Replace BUFFER with some other buffer in all windows showing it.Fset-window-buffer
  90. Make WINDOW display BUFFER as its contents.
  91. BUFFER can be a buffer or buffer name.Fselect-window
  92. Select WINDOW.  Most editing will apply to WINDOW's buffer.
  93. The main editor command loop selects the buffer of the selected window
  94. before each command.Fdisplay-buffer
  95. Make BUFFER appear in some window but don't select it.
  96. BUFFER can be a buffer or a buffer name.
  97. If BUFFER is shown already in some window, just uses that one,
  98. unless the window is the selected window and NOTTHISWINDOW is non-nil.
  99. Returns the window displaying BUFFER.Fsplit-window
  100. Split WINDOW, putting SIZE lines in the first of the pair.
  101. WINDOW defaults to selected one and SIZE to half its size.
  102. If optional third arg HOR-FLAG is non-nil, split side by side
  103. and put SIZE columns in the first of the pair.Fenlarge-window
  104. Make current window ARG lines bigger.
  105. From program, optional second arg non-nil means grow sideways ARG columns.Fshrink-window
  106. Make current window ARG lines smaller.
  107. From program, optional second arg non-nil means shrink sideways ARG columns.Fscroll-up
  108. Scroll text of current window upward ARG lines; or near full screen if no ARG.
  109. When calling from a program, supply a number as argument or nil.Fscroll-down
  110. Scroll text of current window downward ARG lines; or near full screen if no ARG.
  111. When calling from a program, supply a number as argument or nil.Fscroll-left
  112. Scroll selected window display ARG columns left.
  113. Default for ARG is window width minus 2.Fscroll-right
  114. Scroll selected window display ARG columns right.
  115. Default for ARG is window width minus 2.Fscroll-other-window
  116. Scroll text of next window upward ARG lines; or near full screen if no ARG.
  117. The next window is the one below the current one; or the one at the top
  118. if the current one is at the bottom.
  119. When calling from a program, supply a number as argument or nil.Frecenter
  120. Center point in window and redisplay screen.  With ARG, put point on line ARG.
  121. The desired position of point is always relative to the current window.
  122. Just C-u as prefix means put point in the center of the screen.
  123. No arg (i.e., it is nil) erases the entire screen and then
  124. redraws with point in the center.Fmove-to-window-line
  125. Position point relative to window.
  126. With no argument, position at text at center of window.
  127. An argument specifies screen line; zero means top of window,
  128. negative means relative to bottom of window.Fset-window-configuration
  129. Restore the configuration of Emacs' windows and buffers to
  130. the state specified by CONFIGURATION.  CONFIGURATION must be a value
  131. retrned by  current-window-configuration  -- see the documentation of that
  132. function for more information.Fcurrent-window-configuration
  133. Return an object representing Emacs' current window configuration,
  134. namely the number of windows, their sizes and current buffers, and for
  135. each displayed buffer, where display starts, and the positions of
  136. point and mark.  An exception is made for point in (current-buffer) --
  137. its value is -not- saved.Fsave-window-excursion
  138. Execute body, preserving window sizes and contents.
  139. Restores which buffer appears in which window, where display starts,
  140. as well as the current buffer.
  141. Does not restore the value of point in current buffer.Vminibuffer-prompt-width
  142. Width of the prompt appearing at the start of the minibuffer window.
  143. The value is meaningless when the minibuffer is not visible.Vtemp-buffer-show-hook
  144. Non-nil means call as function to display a help buffer.
  145. Used by with-output-to-temp-buffer.Vminibuffer-scroll-window
  146. Non-nil means it is the window that C-M-v in minibuffer should scroll.Vpop-up-windows
  147. *Non-nil means display-buffer should make new windows.Vnext-screen-context-lines
  148. *Number of lines of continuity when scrolling by screenfuls.Vsplit-height-threshold
  149. *display-buffer would prefer to split the largest window if this large.
  150. If there is only one window, it is split regardless of this value.Vwindow-min-height
  151. *Delete any window less than this tall (including its mode line).Vwindow-min-width
  152. *Delete any window less than this wide.Fkill-emacs
  153. Exit the Emacs job and kill it.  ARG means no query.
  154. If emacs is running noninteractively and ARG is an integer,
  155. return ARG as the exit program code.Fdump-emacs-data
  156. Dump current state of Emacs into data file FILENAME.
  157. This function exists on systems that use HAVE_SHM.Fdump-emacs
  158. Dump current state of Emacs into executable file FILENAME.
  159. Take symbols from SYMFILE (presumably the file you executed to run Emacs).Vcommand-line-args
  160. Args passed by shell to Emacs, as a list of strings.Vsystem-type
  161. Symbol indicating type of operating system you are using.Vnoninteractive
  162. Non-nil means Emacs is running without interactive terminal.Vkill-emacs-hook
  163. Function called, if non-nil, whenever kill-emacs is called.Frecursive-edit
  164. Invoke the editor command loop recursively.
  165. Do (throw 'exit nil) within the command loop to make this function return,
  166. or (throw 'exit t) to make this function signal an error.
  167. This function is called by the editor initialization
  168. to begin editing.Ftop-level
  169. Exit all recursive editing levels.Fexit-recursive-edit
  170. Exit from the innermost recursive edit or minibuffer.Fabort-recursive-edit
  171. Abort the command that requested this recursive edit or minibuffer input.Fread-key-sequence
  172. Read a sequence of keystrokes and return as a string.
  173. The sequence is sufficient to specify a non-prefix command
  174. starting from the current local and global keymaps.
  175. A C-g typed while in this function is treated like
  176. any other character, and quit-flag is not set.
  177. One arg, PROMPT, a prompt string or  nil, meaning do not prompt specially.Fcommand-execute
  178. Execute CMD as an editor command.
  179. CMD must be a symbol that satisfies the `commandp' predicate.
  180. Optional second arg RECORD-FLAG non-nil
  181. means unconditionally put this command in the command-history.
  182. Otherwise, this is done only if an arg is read using the minibuffer.Fexecute-extended-command
  183. Read function name, then read its arguments and call it.Finput-pending-p
  184. T if command input is currently available with no waiting.
  185. Actually, the value is NIL only if we can be sure that no input is available.Frecent-keys
  186. Return string of last 100 chars read from terminal.Fthis-command-keys
  187. Return string of the keystrokes that invoked this command.Frecursion-depth
  188. Return the current depth in recursive edits.Fopen-dribble-file
  189. Start writing all keyboard characters to FILE.
  190. Use nil as an argument to close the dribble file.Fdiscard-input
  191. Discard the contents of the terminal input buffer.
  192. Also flush any kbd macro definition in progress.Fsuspend-emacs
  193. Stop Emacs and return to superior process.  You can resume.
  194. If optional arg STUFFSTRING is non-nil, its characters are stuffed
  195. to be read as terminal input by Emacs's superior shell.
  196. Before suspending, if `suspend-hook' is bound and value is non-nil
  197. call the value as a function of no args.  Don't suspend if it returns non-nil.
  198. Otherwise, suspend normally and after resumption call
  199. `suspend-resume-hook' if that is bound and non-nil.Fset-input-mode
  200. Set mode of reading keyboard input.
  201. First arg non-nil means use input interrupts; nil means use CBREAK mode.
  202. Second arg non-nil means use ^S/^Q flow control for output to terminal
  203.  (no effect except in CBREAK mode).
  204. Optional third arg non-nil specifies character to use for quitting.
  205.  
  206. Note that the arguments will change incompatibly in version 19.Vdisabled-command-hook
  207. Value is called instead of any command that is disabled
  208. (has a non-nil  disabled  property).Vmeta-flag
  209. *Non-nil means treat 0200 bit in terminal input as Meta bit.Vlast-command-char
  210. Last terminal input character that was part of a command, as an integer.Vlast-input-char
  211. Last terminal input character, as an integer.Vunread-command-char
  212. Character to be read as next input from command input stream, or -1 if none.Vmeta-prefix-char
  213. Meta-prefix character code.  Meta-foo as command input
  214. turns into this character followed by foo.Vlast-command
  215. The last command executed.  Normally a symbol with a function definition,
  216. but can be whatever was found in the keymap, or whatever the variable
  217. `this-command' was set to by that command.Vthis-command
  218. The command now being executed.
  219. The command can set this variable; whatever is put here
  220. will be in  last-command  during the following command.Vauto-save-interval
  221. *Number of keyboard input characters between auto-saves.
  222. Zero means disable autosaving.Vecho-keystrokes
  223. *Nonzero means echo unfinished commands after this many seconds of pause.Vpolling-period
  224. *Interval between polling for input during Lisp execution.
  225. The reason for polling is to make C-g work to stop a running program.
  226. Polling is needed only when using X windows and SIGIO does not work.
  227. Polling is automatically disabled in all other cases.Vhelp-char
  228. Character to recognize as meaning Help.
  229. When it is read, do (eval help-form), and display result if it's a string.
  230. If help-form's value is nil, this char can be read normally.Vhelp-form
  231. Form to execute when character help-char is read.
  232. If the form returns a string, that string is displayed.
  233. If help-form is nil, the help char is not recognized.Vtop-level
  234. Form to evaluate when Emacs starts up.
  235. Useful to set before you dump a modified Emacs.Vkeyboard-translate-table
  236. String used as translate table for keyboard input, or nil.
  237. Each character is looked up in this string and the contents used instead.
  238. If string is of length N, character codes N and up are untranslated.Fstart-kbd-macro
  239. Record subsequent keyboard input, defining a keyboard macro.
  240. The commands are recorded even as they are executed.
  241. Use \[end-kbd-macro] to finish recording and make the macro available.
  242. Use \[name-last-kbd-macro] to give it a permanent name.
  243. Non-nil arg (prefix arg) means append to last macro defined;
  244.  This begins by re-executing that macro as if you typed it again.Fend-kbd-macro
  245. Finish defining a keyboard macro.
  246. The definition was started by \[start-kbd-macro].
  247. The macro is now available for use via \[call-last-kbd-macro],
  248. or it can be given a name with \[name-last-kbd-macro] and then invoked
  249. under that name.
  250. With numeric arg, repeat macro now that many times,
  251. counting the definition just completed as the first repetition.Fcall-last-kbd-macro
  252. Call the last keyboard macro that you defined with \[start-kbd-macro].
  253. To make a macro permanent so you can call it even after
  254. defining others, use \[name-last-kbd-macro].Fexecute-kbd-macro
  255. Execute MACRO as string of editor command characters.
  256. If MACRO is a symbol, its function definition is used.
  257. COUNT is a repeat count, or nil for once, or 0 for infinite loop.Vdefining-kbd-macro
  258. Non-nil means store keyboard input into kbd macro being defined.Vexecuting-macro
  259. Currently executing keyboard macro (a string); nil if none executing.Vexecuting-kbd-macro
  260. Currently executing keyboard macro (a string); nil if none executing.Vlast-kbd-macro
  261. Last kbd macro defined, as a string; nil if none defined.Fmake-keymap
  262. Construct and return a new keymap, a vector of length 256.
  263. All entries in it are nil, meaning "command undefined".Fmake-sparse-keymap
  264. Construct and return a new sparse-keymap list.
  265. Its car is 'keymap and its cdr is an alist of (CHAR . DEFINITION).
  266. Initially the alist is nil.Fkeymapp
  267. Return t if ARG is a keymap.
  268. A keymap is a vector of length 256, or a list (keymap . ALIST),
  269. where alist elements look like (CHAR . DEFN).
  270. A symbol whose function definition is a keymap is itself a keymap.Fcopy-keymap
  271. Return a copy of the keymap KEYMAP.
  272. The copy starts out with the same definitions of KEYMAP,
  273. but changing either the copy or KEYMAP does not affect the other.
  274. Any key definitions that are subkeymaps are recursively copied.
  275. However, a key definition which is a symbol whose definition is a keymap
  276. is not copied.Fdefine-key
  277. Args KEYMAP, KEY, DEF.  Define key sequence KEY, in KEYMAP, as DEF.
  278. KEYMAP is a keymap.  KEY is a string meaning a sequence of keystrokes.
  279. DEF is anything that can be a key's definition:
  280.  nil (means key is undefined in this keymap),
  281.  a command (a Lisp function suitable for interactive calling)
  282.  a string (treated as a keyboard macro),
  283.  a keymap (to define a prefix key),
  284.  a list (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP,
  285.  or a symbol.  The symbol's function definition is used as the key's
  286. definition, and may be any of the above (including another symbol).Flookup-key
  287. In keymap KEYMAP, look up key sequence KEY.  Return the definition.
  288. nil means undefined.  See doc of define-key for kinds of definitions.
  289. Number as value means KEY is "too long";
  290. that is, characters in it except for the last one
  291. fail to be a valid sequence of prefix characters in KEYMAP.
  292. The number is how many characters at the front of KEY
  293. it takes to reach a non-prefix command.Fkey-binding
  294. Return the definition for command KEYS in current keymaps.
  295. KEYS is a string, a sequence of keystrokes.
  296. The definition is probably a symbol with a function definition.Flocal-key-binding
  297. Return the definition for command KEYS in current local keymap only.
  298. KEYS is a string, a sequence of keystrokes.
  299. The definition is probably a symbol with a function definition.Fglobal-key-binding
  300. Return the definition for command KEYS in current global keymap only.
  301. KEYS is a string, a sequence of keystrokes.
  302. The definition is probably a symbol with a function definition.Fglobal-set-key
  303. Give KEY a definition of COMMAND.
  304. COMMAND is a symbol naming an interactively-callable function.
  305. KEY is a string representing a sequence of keystrokes.
  306. Note that if KEY has a local definition in the current buffer
  307. that local definition will continue to shadow any global definition.Flocal-set-key
  308. Give KEY a local definition of COMMAND.
  309. COMMAND is a symbol naming an interactively-callable function.
  310. KEY is a string representing a sequence of keystrokes.
  311. The definition goes in the current buffer's local map,
  312. which is shared with other buffers in the same major mode.Fglobal-unset-key
  313. Remove global definition of KEY.
  314. KEY is a string representing a sequence of keystrokes.Flocal-unset-key
  315. Remove local definition of KEY.
  316. KEY is a string representing a sequence of keystrokes.Fdefine-prefix-command
  317. Define SYMBOL as a prefix command.
  318. A keymap is created and stored as SYMBOL's function definition.Fuse-global-map
  319. Selects KEYMAP as the global keymap.Fuse-local-map
  320. Selects KEYMAP as the local keymap.
  321. nil for KEYMAP means no local keymap.Fcurrent-local-map
  322. Return current buffer's local keymap, or nil if it has none.Fcurrent-global-map
  323. Return the current global keymap.Faccessible-keymaps
  324. Find all keymaps accessible via prefix characters from KEYMAP.
  325. Returns a list of elements of the form (KEYS . MAP), where the sequence
  326. KEYS starting from KEYMAP gets you to MAP.  These elements are ordered
  327. so that the KEYS increase in length.  The first element is ("" . KEYMAP).Fkey-description
  328. Return a pretty description of key-sequence KEYS.
  329. Control characters turn into "C-foo" sequences, meta into "M-foo"
  330. spaces are put between sequence elements, etc.Fsingle-key-description
  331. Return a pretty description of command character KEY.
  332. Control characters turn into C-whatever, etc.Ftext-char-description
  333. Return a pretty description of file-character CHAR.
  334. Control characters turn into "^char", etc.Fwhere-is-internal
  335. Return list of key sequences that currently invoke command DEFINITION
  336. in KEYMAP or (current-global-map).  If KEYMAP is nil, only search for
  337. keys in the global map.
  338.  
  339. If FIRSTONLY is non-nil, returns a string representing the first key
  340. sequence found, rather than a list of all possible key sequences.Fwhere-is
  341. Print message listing key sequences that invoke specified command.
  342. Argument is a command definition, usually a symbol with a function definition.Fdescribe-bindings
  343. Show a list of all defined keys, and their definitions.
  344. The list is put in a buffer, which is displayed.Fapropos
  345. Show all symbols whose names contain match for REGEXP.
  346. If optional arg PRED is non-nil, (funcall PRED SYM) is done
  347. for each symbol and a symbol is mentioned if that returns non-nil.
  348. Returns list of symbols found; if third arg NOPRINT is non-nil,
  349. does not display them, just returns the list.Vminibuffer-local-map
  350. Default keymap to use when reading from the minibuffer.Vminibuffer-local-ns-map
  351. The keymap used by the minibuf for local bindings when spaces are not
  352. to be allowed in input string.Vminibuffer-local-completion-map
  353. Keymap to use when reading from the minibuffer with completion.Vminibuffer-local-must-match-map
  354. Keymap to use when reading from the minibuffer with completion and
  355. an exact match of one of the completions is required.Fbuffer-list
  356. Return a list of all buffers.Fget-buffer
  357. Return the buffer named NAME (a string).
  358. It is found by looking up NAME in  buffer-alist.
  359. If there is no buffer named NAME, nil is returned.
  360. NAME may also be a buffer; it is returned.Fget-file-buffer
  361. Return the buffer visiting file FILENAME (a string).
  362. If there is no such buffer, nil is returned.Fget-buffer-create
  363. Like get-buffer but creates a buffer named NAME and returns it if none already exists.Fgenerate-new-buffer
  364. Creates and returns a buffer named NAME if one does not already exist,
  365. else tries adding successive suffixes to NAME until a new buffer-name is
  366. formed, then creates and returns a new buffer with that new name.Fbuffer-name
  367. Return the name of BUFFER, as a string.
  368. No arg means return name of current buffer.Fbuffer-file-name
  369. Return name of file BUFFER is visiting, or NIL if none.
  370. No argument means use current buffer as BUFFER.Fbuffer-local-variables
  371. Return alist of variables that are buffer-local in BUFFER.
  372. No argument means use current buffer as BUFFER.
  373. Each element of the value looks like (SYMBOL . VALUE).
  374. Note that storing new VALUEs in these elements
  375. does not change the local values.Fbuffer-modified-p
  376. Return t if BUFFER is modified since file last read in or saved.
  377. No argument means use current buffer as BUFFER.Fset-buffer-modified-p
  378. Mark current buffer as modified or unmodified according to FLAG.Frename-buffer
  379. Change current buffer's name to NEWNAME (a string).Fother-buffer
  380. Return most recently selected buffer other than BUFFER.
  381. Buffers not visible in windows are preferred to visible buffers.
  382. If no other exists, the buffer *scratch* is returned.
  383. If BUFFER is omitted or nil, some interesting buffer is returned.Fbuffer-flush-undo
  384. Make BUFFER stop keeping undo information.Fbuffer-enable-undo
  385. Start keeping undo information for buffer BUFFER (default is current buffer).Fkill-buffer
  386. One arg, a string or a buffer.  Get rid of the specified buffer.
  387. Any processes that have this buffer as the `process-buffer' are killed
  388. with `delete-process'.Fswitch-to-buffer
  389. Select buffer BUFFER in the current window.
  390. BUFFER may be a buffer or a buffer name.
  391. Optional second arg NORECORD non-nil means
  392. do not put this buffer at the front of the list of recently selected ones.
  393.  
  394. WARNING: This is NOT the way to work on another buffer temporarily
  395. within a Lisp program!  Use `set-buffer' instead.  That avoids messing with
  396. the window-buffer correspondances.Fpop-to-buffer
  397. Select buffer BUFFER in some window, preferably a different one.
  398. If  pop-up-windows  is non-nil, windows can be split to do this.
  399. If second arg  OTHER-WINDOW is non-nil, insist on finding another
  400. window even if BUFFER is already visible in the selected window.Fcurrent-buffer
  401. Return the current buffer as a Lisp buffer object.Fset-buffer
  402. Set the current buffer to the buffer or buffer name supplied as argument.
  403. That buffer will then be the default for editing operations and printing.
  404. This function's effect can't last past end of current command
  405. because returning to command level
  406. selects the chosen buffer of the current window,
  407. and this function has no effect on what buffer that is.
  408. See also `save-excursion' when you want to select a buffer temporarily.
  409. Use `switch-to-buffer' or `pop-to-buffer' for interactive buffer selection.Fbarf-if-buffer-read-only
  410. Signal a  buffer-read-only  error if the current buffer is read-only.Fbury-buffer
  411. Put BUFFER at the end of the list of all buffers.
  412. There it is the least likely candidate for other-buffer to return;
  413. thus, the least likely buffer for \[switch-to-buffer] to select by default.
  414. BUFFER is also removed from the selected window if it was displayed there.Ferase-buffer
  415. Delete the entire contents of the current buffer.Flist-buffers
  416. Display a list of names of existing buffers.
  417. Inserts it in buffer *Buffer List* and displays that.
  418. Note that buffers with names starting with spaces are omitted.
  419. Non-null optional arg FILES-ONLY means mention only file buffers.
  420.  
  421. The M column contains a * for buffers that are modified.
  422. The R column contains a % for buffers that are read-only.Fkill-all-local-variables
  423. Eliminate all the buffer-local variable values of the current buffer.
  424. This buffer will then see the default values of all variables.Vdefault-mode-line-format
  425. Default mode-line-format for buffers that do not override it.
  426. This is the same as (default-value 'mode-line-format).Vdefault-abbrev-mode
  427. Default abbrev-mode for buffers that do not override it.
  428. This is the same as (default-value 'abbrev-mode).Vdefault-ctl-arrow
  429. Default ctl-arrow for buffers that do not override it.
  430. This is the same as (default-value 'ctl-arrow).Vdefault-meta-printable
  431. Default meta-printable for buffers that do not override it.
  432. This is the same as (default-value 'meta-printable).Vdefault-file-type
  433. Default file type for buffers that do not override it.
  434. This is the same as (default-value 'file-type).Vdefault-truncate-lines
  435. Default truncate-lines for buffers that do not override it.
  436. This is the same as (default-value 'truncate-lines).Vdefault-fill-column
  437. Default fill-column for buffers that do not override it.
  438. This is the same as (default-value 'fill-column).Vdefault-left-margin
  439. Default left-margin for buffers that do not override it.
  440. This is the same as (default-value 'left-margin).Vdefault-tab-width
  441. Default tab-width for buffers that do not override it.
  442. This is the same as (default-value 'tab-width).Vdefault-case-fold-search
  443. Default case-fold-search for buffers that do not override it.
  444. This is the same as (default-value 'case-fold-search).Vmode-line-format
  445. Template for displaying mode line for current buffer.
  446. Each buffer has its own value of this variable.
  447. Value may be a string, a symbol or a list or cons cell.
  448. For a symbol, its value is used (but it is ignored if t or nil).
  449.  A string appearing directly as the value of a symbol is processed verbatim
  450.  in that the %-constructs below are not recognized.
  451. For a list whose car is a symbol, the symbol's value is taken,
  452.  and if that is non-nil, the cadr of the list is processed recursively.
  453.  Otherwise, the caddr of the list (if there is one) is processed.
  454. For a list whose car is a string or list, each element is processed
  455.  recursively and the results are effectively concatenated.
  456. For a list whose car is an integer, the cdr of the list is processed
  457.   and padded (if the number is positive) or truncated (if negative)
  458.   to the width specified by that number.
  459. A string is printed verbatim in the mode line except for %-constructs:
  460.   (%-constructs are allowed when the string is the entire mode-line-format
  461.    or when it is found in a cons-cell or a list)
  462.   %b -- print buffer name.      %f -- print visited file name.
  463.   %* -- print *, % or hyphen.   %m -- print value of mode-name (obsolete).
  464.   %s -- print process status.   %M -- print value of global-mode-string. (obs)
  465.   %p -- print percent of buffer above top of window, or top, bot or all.
  466.   %n -- print Narrow if appropriate.
  467.   %[ -- print one [ for each recursive editing level.  %] similar.
  468.   %% -- print %.   %- -- print infinitely many dashes.
  469. Decimal digits after the % specify field width to which to pad.Vdefault-major-mode
  470. *Major mode for new buffers.  Defaults to fundamental-mode.
  471. nil here means use current buffer's major mode.Vmajor-mode
  472. Symbol for current buffer's major mode.Vabbrev-mode
  473. Non-nil turns on automatic expansion of abbrevs when inserted.
  474. Automatically becomes local when set in any fashion.Vcase-fold-search
  475. *Non-nil if searches should ignore case.
  476. Automatically becomes local when set in any fashion.Vmode-name
  477. Pretty name of current buffer's major mode (a string).Vfill-column
  478. *Column beyond which automatic line-wrapping should happen.
  479. Automatically becomes local when set in any fashion.Vleft-margin
  480. *Column for the default indent-line-function to indent to.
  481. Linefeed indents to this column in Fundamental mode.
  482. Automatically becomes local when set in any fashion.Vtab-width
  483. *Distance between tab stops (for display of tab characters), in columns.
  484. Automatically becomes local when set in any fashion.Vctl-arrow
  485. *t means display control chars with uparrow.
  486. Nil means use backslash and octal digits.
  487. Automatically becomes local when set in any fashion.Vmeta-printable
  488. *Non-nil means meta characters, that is characters in the range 
  489. 0200..0376, are printable.
  490. Nil means display meta chars with backslash and octal digits.
  491. Automatically becomes local when set in any fashion.Vfile-type
  492. *"b" means binary file, "t" means text file, nil means default.
  493. Automatically becomes local when set in any fashion.Vtruncate-lines
  494. *Non-nil means do not display continuation lines;
  495. give each line of text one screen line.
  496. Automatically becomes local when set in any fashion.
  497.  
  498. Note that this is overridden by the variable
  499. truncate-partial-width-windows if that variable is non-nil
  500. and this buffer is not full-screen width.Vdefault-directory
  501. Name of default directory of current buffer.  Should end with slash.Vauto-fill-hook
  502. Function called (if non-nil) after self-inserting a space at column beyond fill-columnVbuffer-file-name
  503. Name of file visited in current buffer, or nil if not visiting a file.Vbuffer-auto-save-file-name
  504. Name of file for auto-saving current buffer,
  505. or nil if buffer should not be auto-saved.Vbuffer-read-only
  506. Non-nil if this buffer is read-only.Vbuffer-backed-up
  507. Non-nil if this buffer's file has been backed up.
  508. Backing up is done before the first time the file is saved.Vbuffer-saved-size
  509. Length of current buffer when last read in, saved or auto-saved.
  510. 0 initially.Vselective-display
  511. t enables selective display:
  512.  after a ^M, all the rest of the line is invisible.
  513.  ^M's in the file are written into files as newlines.
  514. Integer n as value means display only lines
  515.  that start with less than n columns of space.
  516. Automatically becomes local when set in any fashion.Vselective-display-ellipses
  517. t means display ... on previous line when a line is invisible.
  518. Automatically becomes local when set in any fashion.Voverwrite-mode
  519. Non-nil if self-insertion should replace existing text.
  520. Automatically becomes local when set in any fashion.Vbuffer-undo-list
  521. List of undo entries in current buffer.Flock-buffer
  522. Locks FILE, if current buffer is modified.
  523. FILE defaults to current buffer's visited file,
  524. or else nothing is done if current buffer isn't visiting a file.Funlock-buffer
  525. Unlocks the file visited in the current buffer,
  526. if it should normally be locked.Ffile-locked-p
  527. Returns nil if the FILENAME is not locked,
  528. t if it is locked by you, else a string of the name of the locker.Fmarker-buffer
  529. Return the buffer that MARKER points into, or nil if none.
  530. Returns nil if MARKER points into a dead buffer.Fmarker-position
  531. Return the position MARKER points at, as a character number.Fset-marker
  532. Position MARKER before character number NUMBER in BUFFER.
  533. BUFFER defaults to the current buffer.
  534. If NUMBER is nil, makes marker point nowhere.
  535. Then it no longer slows down editing in any buffer.
  536. Returns MARKER.Fcopy-marker
  537. Return a new marker pointing at the same place as MARKER.
  538. If argument is a number, makes a new marker pointing
  539. at that position in the current buffer.Fread-from-minibuffer
  540. Read a string from the minibuffer, prompting with string PROMPT.
  541. If optional second arg INITIAL-CONTENTS is non-nil, it is a string
  542.   to be inserted into the minibuffer before reading input.
  543. Third arg KEYMAP is a keymap to use whilst reading; the default is
  544.   minibuffer-local-map.
  545. If fourth arg READ is non-nil, then interpret the result as a lisp object
  546.   and return that object  (ie  (car (read-from-string <input-string>)))Fread-minibuffer
  547. Return a Lisp object read using the minibuffer.
  548. Prompt with PROMPT.  If non-nil, optional second arg INITIAL-CONTENTS
  549. is a string to insert in the minibuffer before reading.Feval-minibuffer
  550. Return value of Lisp expression read using the minibuffer.
  551. Prompt with PROMPT.  If non-nil, optional second arg INITIAL-CONTENTS
  552. is a string to insert in the minibuffer before reading.Fread-string
  553. Read a string from the minibuffer, prompting with string PROMPT.
  554. If non-nil second arg INITIAL-INPUT is a string to insert before reading.Fread-no-blanks-input
  555. Args PROMPT and INIT, strings.  Read a string from the terminal, not allowing blanks.
  556. Prompt with PROMPT, and provide INIT as an initial value of the input string.Fread-command
  557. One arg PROMPT, a string.  Read the name of a command and return as a symbol.
  558. Prompts with PROMPT.Fread-function
  559. One arg PROMPT, a string.  Read the name of a function and return as a symbol.
  560. Prompts with PROMPT.Fread-variable
  561. One arg PROMPT, a string.  Read the name of a user variable and return
  562. it as a symbol.  Prompts with PROMPT.
  563. A user variable is one whose documentation starts with a "*" character.Fread-buffer
  564. One arg PROMPT, a string.  Read the name of a buffer and return as a string.
  565. Prompts with PROMPT.
  566. Optional second arg is value to return if user enters an empty line.
  567. If optional third arg REQUIRE-MATCH is non-nil, only existing buffer names are allowed.Ftry-completion
  568. Return common substring of all completions of STRING in ALIST.
  569. Each car of each element of ALIST is tested to see if it begins with STRING.
  570. All that match are compared together; the longest initial sequence
  571. common to all matches is returned as a string.
  572. If there is no match at all, nil is returned.
  573. For an exact match, t is returned.
  574.  
  575. ALIST can be an obarray instead of an alist.
  576. Then the print names of all symbols in the obarray are the possible matches.
  577.  
  578. If optional third argument PREDICATE is non-nil,
  579. it is used to test each possible match.
  580. The match is a candidate only if PREDICATE returns non-nil.
  581. The argument given to PREDICATE is the alist element or the symbol from the obarray.Fall-completions
  582. Search for partial matches to STRING in ALIST.
  583. Each car of each element of ALIST is tested to see if it begins with STRING.
  584. The value is a list of all the strings from ALIST that match.
  585. ALIST can be an obarray instead of an alist.
  586. Then the print names of all symbols in the obarray are the possible matches.
  587.  
  588. If optional third argument PREDICATE is non-nil,
  589. it is used to test each possible match.
  590. The match is a candidate only if PREDICATE returns non-nil.
  591. The argument given to PREDICATE is the alist element or the symbol from the obarray.Fcompleting-read
  592. Read a string in the minibuffer, with completion.
  593. Args are PROMPT, TABLE, PREDICATE, REQUIRE-MATCH and INITIAL-INPUT.
  594. PROMPT is a string to prompt with; normally it ends in a colon and a space.
  595. TABLE is an alist whose elements' cars are strings, or an obarray (see try-completion).
  596. PREDICATE limits completion to a subset of TABLE; see try-completion for details.
  597. If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
  598.  the input is (or completes to) an element of TABLE.
  599.  If it is also not t, Return does not exit if it does non-null completion.
  600. If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
  601. Case is ignored if ambient value of  completion-ignore-case  is non-nil.Fminibuffer-complete
  602. Complete the minibuffer contents as far as possible.Fminibuffer-complete-and-exit
  603. Complete the minibuffer contents, and maybe exit.
  604. Exit if the name is valid with no completion needed.
  605. If name was completed to a valid match,
  606. a repetition of this command will exit.Fminibuffer-complete-word
  607. Complete the minibuffer contents at most a single word.Fdisplay-completion-list
  608. Display in a buffer the list of completions, COMPLETIONS.
  609. Each element may be just a symbol or string
  610. or may be a list of two strings to be printed as if concatenated.Fminibuffer-completion-help
  611. Display a list of possible completions of the current minibuffer contents.Fself-insert-and-exit
  612. Terminate minibuffer input.Fexit-minibuffer
  613. Terminate this minibuffer argument.Fminibuffer-depth
  614. Return current depth of activations of minibuffer, a nonnegative integer.Vcompletion-auto-help
  615. *Non-nil means automatically provide help for invalid completion input.Vcompletion-ignore-case
  616. Non-nil means don't consider case significant in completion.Venable-recursive-minibuffers
  617. *Non-nil means to allow minibuffers to invoke commands which use
  618. recursive minibuffers.Vminibuffer-completion-table
  619. Alist or obarray used for completion in the minibuffer.Vminibuffer-completion-predicate
  620. Holds PREDICATE argument to completing-read.Vminibuffer-completion-confirm
  621. Non-nil => demand confirmation of completion before exiting minibuffer.Vminibuffer-help-form
  622. Value that help-form takes on inside the minibuffer.Ffile-type-from-file-name
  623. Return the file type depending on FILENAME.
  624. A return value of "b" denotes a binary file: no CR/LF conversion
  625. will be done. A return value of "t" denotes a text file: CR/LF pairs
  626. will be converted to LF on reading, a final C-Z -- if present -- will be
  627. discarded on reading. On writing, LF is converted to CR/LF.
  628. This function always returns "t" unless redefined.Fvalid-file-name-p
  629. Return t if STRING is a valid file name.
  630. This function tries to open the file and looks at the error code.
  631. This is a special feature of GNU Emacs for OS/2.Ffile-name-directory
  632. Return the directory component in file name NAME.
  633. Return nil if NAME does not include a directory.
  634. Otherwise returns a directory spec.
  635. Given a Unix syntax file name, returns a string ending in slash;
  636. on VMS, perhaps instead a string ending in :, ] or >.Ffile-name-nondirectory
  637. Return file name NAME sans its directory.
  638. For example, in a Unix-syntax file name,
  639. this is everything after the last slash,
  640. or the entire name if it contains no slash.Ffile-name-as-directory
  641. Return a string representing file FILENAME interpreted as a directory.
  642. This string can be used as the value of default-directory
  643. or passed as second argument to expand-file-name.
  644. For a Unix-syntax file name, just appends a slash.
  645. On VMS, converts "[X]FOO.DIR" to "[X.FOO]", etc.Fdirectory-file-name
  646. Returns the file name of the directory named DIR.
  647. This is the name of the file that holds the data for the directory DIR.
  648. In Unix-syntax, this just removes the final slash.
  649. On VMS, given a VMS-syntax directory name such as "[X.Y]",
  650. returns a file name such as "[X]Y.DIR.1".Fmake-temp-name
  651. Generate temporary name (string) starting with PREFIX (a string).Fexpand-file-name
  652. Convert FILENAME to absolute, and canonicalize it.
  653. Second arg DEFAULT is directory to start with if FILENAME is relative
  654.  (does not start with slash); if DEFAULT is nil or missing,
  655. the current buffer's value of default-directory is used.
  656. Filenames containing . or .. as components are simplified;
  657. initial ~ is expanded.  See also the function  substitute-in-file-name.Fsubstitute-in-file-name
  658. Substitute environment variables referred to in STRING.
  659. A $ begins a request to substitute; the env variable name is the alphanumeric
  660. characters and underscores after the $, or is surrounded by braces.
  661. If a ~ appears following a /, everything through that / is discarded.
  662. On VMS, $ substitution is not done; this function does little and only
  663. duplicates what expand-file-name does.Fcopy-file
  664. Copy FILE to NEWNAME.  Both args strings.
  665. Signals a  file-already-exists  error if NEWNAME already exists,
  666. unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
  667. A number as third arg means request confirmation if NEWNAME already exists.
  668. This is what happens in interactive use with M-x.
  669. Fourth arg non-nil means give the new file the same last-modified time
  670. that the old one has.  (This works on only some systems.)Fdelete-file
  671. Delete specified file.  One argument, a file name string.
  672. If file has multiple names, it continues to exist with the other names.Frename-file
  673. Rename FILE as NEWNAME.  Both args strings.
  674. If file has names other than FILE, it continues to have those names.
  675. Signals a  file-already-exists  error if NEWNAME already exists
  676. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  677. A number as third arg means request confirmation if NEWNAME already exists.
  678. This is what happens in interactive use with M-x.Fadd-name-to-file
  679. Give FILE additional name NEWNAME.  Both args strings.
  680. Signals a  file-already-exists  error if NEWNAME already exists
  681. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  682. A number as third arg means request confirmation if NEWNAME already exists.
  683. This is what happens in interactive use with M-x.Fmake-symbolic-link
  684. Make a symbolic link to TARGET, named LINKNAME.  Both args strings.
  685. There is no completion for LINKNAME, because it is read simply as a string;
  686. this is to enable you to make a link to a relative file name.
  687.  
  688. Signals a  file-already-exists  error if LINKNAME already exists
  689. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  690. A number as third arg means request confirmation if LINKNAME already exists.
  691. This happens for interactive use with M-x.Fdefine-logical-name
  692. Define the job-wide logical name NAME to have the value STRING.
  693. If STRING is nil or a null string, the logical name NAME is deleted.Fsysnetunam
  694. Open a network connection to PATH using LOGIN as the login string.Ffile-name-absolute-p
  695. Return t if file FILENAME specifies an absolute path name.Ffile-exists-p
  696. Return t if file FILENAME exists.  (This does not mean you can read it.)
  697. See also file-readable-p and file-attributes.Ffile-readable-p
  698. Return t if file FILENAME exists and you can read it.
  699. See also file-exists-p and file-attributes.Ffile-symlink-p
  700. If file FILENAME is the name of a symbolic link
  701. returns the name of the file to which it is linked.
  702. Otherwise returns NIL.Ffile-writable-p
  703. Return t if file FILENAME can be written or created by you.Ffile-directory-p
  704. Return t if file FILENAME is the name of a directory as a file.
  705. A directory name spec may be given instead; then the value is t
  706. if the directory so specified exists and really is a directory.Ffile-modes
  707. Return mode bits of FILE, as an integer.Fset-file-modes
  708. Set mode bits of FILE to MODE (an integer).
  709. Only the 12 low bits of MODE are used.Ffile-newer-than-file-p
  710. Return t if file FILE1 is newer than file FILE2.
  711. If FILE1 does not exist, the answer is nil;
  712. otherwise, if FILE2 does not exist, the answer is t.Finsert-file-contents
  713. Insert contents of file FILENAME after point.
  714. Returns list of absolute pathname and length of data inserted.
  715. If second argument VISIT is non-nil, the buffer's visited filename
  716. and last save file modtime are set, and it is marked unmodified.
  717. If visiting and the file does not exist, visiting is completed
  718. before the error is signaled.
  719. If optional third argument TYPE is nil, the file type is chosen based
  720. on the file name. Otherwise, that file type is used.Fwrite-region
  721. Write current region into specified file.
  722. When called from a program, takes three arguments:
  723. START, END and FILENAME.  START and END are buffer positions.
  724. Optional fourth argument APPEND if non-nil means
  725.   append to existing file contents (if any).
  726. Optional fifth argument VISIT if t means
  727.   set last-save-file-modtime of buffer to this file's modtime
  728.   and mark buffer not modified.
  729. If VISIT is neither t nor nil, it means do not print
  730.   the "Wrote file" message.Fverify-visited-file-modtime
  731. Return t if last mod time of BUF's visited file matches what BUF records.
  732. This means that the file has not been changed since it was visited or saved.Fclear-visited-file-modtime
  733. Clear out records of last mod time of visited file.
  734. Next attempt to save will certainly not complain of a discrepancy.Fdo-auto-save
  735. Auto-save all buffers that need it.
  736. This is all buffers that have auto-saving enabled
  737. and are changed since last auto-saved.
  738. Auto-saving writes the buffer into a file
  739. so that your editing is not lost if the system crashes.
  740. This file is not the file you visited; that changes only when you save.
  741.  
  742. Non-nil argument means do not print any message if successful.Fset-buffer-auto-saved
  743. Mark current buffer as auto-saved with its current text.
  744. No auto-save file will be written until the buffer changes again.Frecent-auto-save-p
  745. Return t if buffer has been auto-saved since last read in or saved.Fread-file-name-internal
  746. Internal subroutine for read-file-name.  Do not call this.Fread-file-name
  747. Read file name, prompting with PROMPT and completing in directory DIR.
  748. Value is not expanded!  You must call expand-file-name yourself.
  749. Default name to DEFAULT if user enters a null string.
  750. Fourth arg MUSTMATCH non-nil means require existing file's name.
  751.  Non-nil and non-t means also require confirmation after completion.
  752. DIR defaults to current buffer's directory default.Vinsert-default-directory
  753. *Non-nil means when reading a filename start with default dir in minibuffer.Vvms-stmlf-recfm
  754. *Non-nil means write new files with record format `stmlf'.
  755. nil means use format `var'.  This variable is meaningful only on VMS.Fdirectory-files
  756. Return a list of names of files in DIRECTORY.
  757. If FULL is non-NIL, absolute pathnames of the files are returned.
  758. If MATCH is non-NIL, only pathnames containing that regexp are returned.Ffile-name-completion
  759. Complete file name FILE in directory DIR.
  760. Returns the longest string common to all filenames in DIR
  761. that start with FILE.
  762. If there is only one and FILE matches it exactly, returns t.
  763. Returns nil if DIR contains no name starting with FILE.Ffile-name-all-completions
  764. Return a list of all completions of file name FILE in directory DIR.Ffile-name-all-versions
  765. Return a list of all versions of file name FILE in directory DIR.Ffile-attributes
  766. Return a list of attributes of file FILENAME.
  767. Value is nil if specified file cannot be opened.
  768. Otherwise, list elements are:
  769.  0. t for directory, string (name linked to) for symbolic link, or nil.
  770.  1. Number of links to file.
  771.  2. File uid.
  772.  3. File gid.
  773.  4. Last access time, as a list of two integers.
  774.   First integer has high-order 16 bits of time, second has low 16 bits.
  775.  5. Last modification time, likewise.
  776.  6. Last status change time, likewise.
  777.  7. Size in bytes.
  778.  8. File modes, as a string of ten letters or dashes as in ls -l.
  779.  9. t iff file's gid would change if file were deleted and recreated.
  780. 10. inode number.
  781.  
  782. If file does not exists, returns nil.Vcompletion-ignored-extensions
  783. *Completion ignores filenames ending in any string in this list.Fforward-char
  784. Move point right ARG characters (left if ARG negative).
  785. On reaching end of buffer, stop and signal error.Fbackward-char
  786. Move point left ARG characters (right if ARG negative).
  787. On attempt to pass beginning or end of buffer, stop and signal error.Fforward-line
  788. If point is on line i, move to the start of line i + ARG.
  789. If there isn't room, go as far as possible (no error).
  790. Returns the count of lines left to move.
  791. With positive ARG, a non-empty line traversed at end of buffer 
  792.  counts as one line successfully moved (for the return value).Fbeginning-of-line
  793. Move point to beginning of current line.
  794. With argument ARG not nil or 1, move forward ARG - 1 lines first.
  795. If scan reaches end of buffer, stop there without error.Fend-of-line
  796. Move point to end of current line.
  797. With argument ARG not nil or 1, move forward ARG - 1 lines first.
  798. If scan reaches end of buffer, stop there without error.Fdelete-char
  799. Delete the following ARG characters (previous, with negative arg).
  800. Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
  801. Interactively, ARG is the prefix arg, and KILLFLAG is set if
  802. ARG was explicitly specified.Fdelete-backward-char
  803. Delete the previous ARG characters (following, with negative ARG).
  804. Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
  805. Interactively, ARG is the prefix arg, and KILLFLAG is set if
  806. ARG was explicitly specified.Fself-insert-command
  807. Insert this character.  Prefix arg is repeat-count.Fnewline
  808. Insert a newline.  With arg, insert that many newlines.
  809. In Auto Fill mode, can break the preceding line if no numeric arg.Vblink-paren-hook
  810. Function called, if non-nil, whenever a char with closeparen syntax is self-inserted.Fupcase
  811. One arg, a character or string.  Convert it to upper case and return that.Fdowncase
  812. One arg, a character or string.  Convert it to lower case and return that.Fcapitalize
  813. One arg, a character or string.  Convert it to capitalized form and return that.
  814. This means that each word's first character is upper case and the rest is lower case.Fupcase-region
  815. Convert the region to upper case.  In programs, wants two arguments.
  816. These arguments specify the starting and ending character numbers of
  817. the region to operate on.  When used as a command, the text between
  818. point and the mark is operated on.Fdowncase-region
  819. Convert the region to lower case.  In programs, wants two arguments.
  820. These arguments specify the starting and ending character numbers of
  821. the region to operate on.  When used as a command, the text between
  822. point and the mark is operated on.Fcapitalize-region
  823. Convert the region to upper case.  In programs, wants two arguments.
  824. These arguments specify the starting and ending character numbers of
  825. the region to operate on.  When used as a command, the text between
  826. point and the mark is operated on.
  827. Capitalized form means each word's first character is upper case
  828. and the rest of it is lower case.Fupcase-word
  829. Convert following word (or ARG words) to upper case, moving over.
  830. With negative argument, convert previous words but do not move.Fdowncase-word
  831. Convert following word (or ARG words) to lower case, moving over.
  832. With negative argument, convert previous words but do not move.Fcapitalize-word
  833. Capitalize the following word (or ARG words), moving over.
  834. This gives the word(s) a first character in upper case
  835. and the rest lower case.
  836. With negative argument, capitalize previous words but do not move.Fcurrent-column
  837. Return the horizontal position of point.  Beginning of line is column 0.
  838. This is calculated by adding together the widths of all the displayed
  839. representations of the character between the start of the previous line
  840. and point.  (eg control characters will have a width of 2 or 4, tabs
  841. will have a variable width)
  842. Ignores finite width of screen, which means that this function may return
  843. values greater than (screen-width).
  844. Whether the line is visible (if `selective-display' is t) has no effect.Findent-to
  845. Indent from point with tabs and spaces until COLUMN is reached.
  846. Always do at least MIN spaces even if that goes past COLUMN;
  847. by default, MIN is zero.Fcurrent-indentation
  848. Return the indentation of the current line.
  849. This is the horizontal position of the character
  850. following any initial whitespace.Fmove-to-column
  851. Move point to column COLUMN in the current line.
  852. COLUMN is calculated by adding together the widths of all the displayed
  853. representations of the character between the start of the previous line
  854. and point.  (eg control characters will have a width of 2 or 4, tabs
  855. will have a variable width)
  856. Ignores finite width of screen, which means that this function may be
  857. passed values greater than (screen-width)Fvertical-motion
  858. Move to start of screen line LINES lines down.
  859. If LINES is negative, this is moving up.
  860. Sets point to position found; this may be start of line
  861.  or just the start of a continuation line.
  862. Returns number of lines moved; may be closer to zero than LINES
  863.  if beginning or end of buffer was reached.Vindent-tabs-mode
  864. *Indentation can insert tabs if this is non-nil.
  865. Setting this variable automatically makes it local to the current buffer.Flooking-at
  866. t if text after point matches regular expression PAT.Fstring-match
  867. Return index of start of first match for REGEXP in STRING, or nil.
  868. If third arg START is non-nil, start search at that index in STRING.
  869. For index of first char beyond the match, do (match-end 0).
  870. match-end and match-beginning also give indices of substrings
  871. matched by parenthesis constructs in the pattern.Fskip-chars-forward
  872. Move point forward, stopping before a char not in CHARS, or at position LIM.
  873. CHARS is like the inside of a [...] in a regular expression
  874. except that ] is never special and \ quotes ^, - or \.
  875. Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
  876. With arg "^a-zA-Z", skips nonletters stopping before first letter.Fskip-chars-backward
  877. Move point backward, stopping after a char not in CHARS, or at position LIM.
  878. See skip-chars-forward for details.Fsearch-backward
  879. Search backward from point for STRING.
  880. Set point to the beginning of the occurrence found, and return t.
  881. An optional second argument bounds the search; it is a buffer position.
  882. The match found must not extend before that position.
  883. Optional third argument, if t, means if fail just return nil (no error).
  884.  If not nil and not t, position at limit of search and return nil.
  885. Optional fourth argument is repeat count--search for successive occurrences.
  886. See also the functions match-beginning and match-end and replace-match.Fsearch-forward
  887. Search forward from point for STRING.
  888. Set point to the end of the occurrence found, and return t.
  889. An optional second argument bounds the search; it is a buffer position.
  890. The match found must not extend after that position.
  891. Optional third argument, if t, means if fail just return nil (no error).
  892.   If not nil and not t, move to limit of search and return nil.
  893. Optional fourth argument is repeat count--search for successive occurrences.
  894. See also the functions match-beginning and match-end and replace-match.Fword-search-backward
  895. Search backward from point for STRING, ignoring differences in punctuation.
  896. Set point to the beginning of the occurrence found, and return t.
  897. An optional second argument bounds the search; it is a buffer position.
  898. The match found must not extend before that position.
  899. Optional third argument, if t, means if fail just return nil (no error).
  900.   If not nil and not t, move to limit of search and return nil.
  901. Optional fourth argument is repeat count--search for successive occurrences.Fword-search-forward
  902. Search forward from point for STRING, ignoring differences in punctuation.
  903. Set point to the end of the occurrence found, and return t.
  904. An optional second argument bounds the search; it is a buffer position.
  905. The match found must not extend after that position.
  906. Optional third argument, if t, means if fail just return nil (no error).
  907.   If not nil and not t, move to limit of search and return nil.
  908. Optional fourth argument is repeat count--search for successive occurrences.Fre-search-backward
  909. Search backward from point for match for regular expression REGEXP.
  910. Set point to the beginning of the match, and return t.
  911. The match found is the one starting last in the buffer
  912. and yet ending before the place the origin of the search.
  913. An optional second argument bounds the search; it is a buffer position.
  914. The match found must start at or after that position.
  915. Optional third argument, if t, means if fail just return nil (no error).
  916.   If not nil and not t, move to limit of search and return nil.
  917. Optional fourth argument is repeat count--search for successive occurrences.
  918. See also the functions match-beginning and match-end and replace-match.Fre-search-forward
  919. Search forward from point for regular expression REGEXP.
  920. Set point to the end of the occurrence found, and return t.
  921. An optional second argument bounds the search; it is a buffer position.
  922. The match found must not extend after that position.
  923. Optional third argument, if t, means if fail just return nil (no error).
  924.   If not nil and not t, move to limit of search and return nil.
  925. Optional fourth argument is repeat count--search for successive occurrences.
  926. See also the functions match-beginning and match-end and replace-match.Freplace-match
  927. Replace text matched by last search with NEWTEXT.
  928. If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
  929. Otherwise convert to all caps or cap initials, like replaced text.
  930. If third arg LITERAL is non-nil, insert NEWTEXT literally.
  931. Otherwise treat \ as special:
  932.   \& in NEWTEXT means substitute original matched text,
  933.   \N means substitute match for \(...\) number N,
  934.   \\ means insert one \.
  935. Leaves point at end of replacement text.Fmatch-beginning
  936. Return the character number of start of text matched by last search.
  937. ARG, a number, specifies which parenthesized expression in the last regexp.
  938.  Value is nil if ARGth pair didn't match, or there were less than ARG pairs.
  939. Zero means the entire text matched by the whole regexp or whole string.Fmatch-end
  940. Return the character number of end of text matched by last search.
  941. ARG, a number, specifies which parenthesized expression in the last regexp.
  942.  Value is nil if ARGth pair didn't match, or there were less than ARG pairs.
  943. Zero means the entire text matched by the whole regexp or whole string.Fmatch-data
  944. Return list containing all info on what the last search matched.
  945. Element 2N is (match-beginning N); element 2N + 1 is (match-end N).
  946. All the elements are normally markers, or nil if the Nth pair didn't match.
  947. 0 is also possible, when matching was done with `string-match',
  948. if a match began at index 0 in the string.Fstore-match-data
  949. Set internal data on last search match from elements of LIST.
  950. LIST should have been created by calling match-data previously.Fregexp-quote
  951. Return a regexp string which matches exactly STRING and nothing else.Fundo-boundary
  952. Mark a boundary between units of undo.
  953. An undo command will stop at this point,
  954. but another undo command will undo to the previous boundary.Fprimitive-undo
  955. Undo N records from the front of the list LIST.
  956. Return what remains of the list.Fcons
  957. Create a new cons, give it CAR and CDR as components, and return it.Flist
  958. Return a newly created list whose elements are the arguments (any number).Fmake-list
  959. Return a newly created list of length LENGTH, with each element being INIT.Fmake-vector
  960. Return a newly created vector of length LENGTH, with each element being INIT.Fvector
  961. Return a newly created vector with our arguments (any number) as its elements.Fmake-symbol
  962. Return a newly allocated uninterned symbol whose name is NAME.
  963. Its value and function definition are void, and its property list is NIL.Fmake-marker
  964. Return a newly allocated marker which does not point at any place.Fmake-string
  965. Return a newly created string of length LENGTH, with each element being INIT.
  966. Both LENGTH and INIT must be numbers.Fpurecopy
  967. Make a copy of OBJECT in pure storage.
  968. Recursively copies contents of vectors and cons cells.
  969. Does not copy symbols.Fgarbage-collect
  970. Reclaim storage for Lisp objects no longer needed.
  971. Returns info on amount of space in use:
  972.  ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)
  973.   (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS)
  974. Garbage collection happens automatically if you cons more than
  975. gc-cons-threshold  bytes of Lisp data since previous garbage collection.Vgc-cons-threshold
  976. *Number of bytes of consing between garbage collections.Vpure-bytes-used
  977. Number of bytes of sharable Lisp data allocated so far.Vdata-bytes-used
  978. Number of bytes of unshared memory allocated in this session.Vdata-bytes-free
  979. Number of bytes of unshared memory remaining available in this session.Vpurify-flag
  980. Non-nil means loading Lisp code in order to dump an executable.Vundo-threshold
  981. Keep no more undo information once it exceeds this size.
  982. This threshold is applied when garbage collection happens.
  983. The size is counted as the number of bytes occupied,
  984. which includes both saved text and other data.Vundo-high-threshold
  985. Don't keep more than this much size of undo information.
  986. A command which pushes past this size is itself forgotten.
  987. This threshold is applied when garbage collection happens.
  988. The size is counted as the number of bytes occupied,
  989. which includes both saved text and other data.Feq
  990. T if the two args are the same Lisp object.Fnull
  991. T if OBJECT is nil.Fconsp
  992. T if OBJECT is a cons cell.Fatom
  993. T if OBJECT is not a cons cell.  This includes nil.Flistp
  994. T if OBJECT is a list.  This includes nil.Fnlistp
  995. T if OBJECT is not a list.  Lists include nil.Fintegerp
  996. T if OBJECT is a number.Fnatnump
  997. T if OBJECT is a nonnegative number.Fsymbolp
  998. T if OBJECT is a symbol.Fvectorp
  999. T if OBJECT is a vector.Fstringp
  1000. T if OBJECT is a string.Farrayp
  1001. T if OBJECT is an array (string or vector).Fsequencep
  1002. T if OBJECT is a sequence (list or array).Fbufferp
  1003. T if OBJECT is an editor buffer.Fmarkerp
  1004. T if OBJECT is a marker (editor pointer).Finteger-or-marker-p
  1005. T if OBJECT is an integer or a marker (editor pointer).Fsubrp
  1006. T if OBJECT is a built-in function.Fchar-or-string-p
  1007. T if OBJECT is a character (a number) or a string.Fcar
  1008. Return the car of CONSCELL.  If arg is nil, return nil.Fcar-safe
  1009. Return the car of OBJECT if it is a cons cell, or else  nil.Fcdr
  1010. Return the cdr of CONSCELL.  If arg is nil, return nil.Fcdr-safe
  1011. Return the cdr of OBJECT if it is a cons cell, or else  nil.Fsetcar
  1012. Set the car of CONSCELL to be NEWCAR.  Returns NEWCAR.Fsetcdr
  1013. Set the cdr of CONSCELL to be NEWCDR.  Returns NEWCDR.Fboundp
  1014. T if SYMBOL's value is not void.Ffboundp
  1015. T if SYMBOL's function definition is not void.Fmakunbound
  1016. Make SYMBOL's value be void.Ffmakunbound
  1017. Make SYMBOL's function definition be void.Fsymbol-function
  1018. Return SYMBOL's function definition.Fsymbol-plist
  1019. Return SYMBOL's property list.Fsymbol-name
  1020. Return SYMBOL's name, a string.Ffset
  1021. Set SYMBOL's function definition to NEWVAL, and return NEWVAL.Fsetplist
  1022. Set SYMBOL's property list to NEWVAL, and return NEWVAL.Fsymbol-value
  1023. Return SYMBOL's value.Fdefault-value
  1024. Return SYMBOL's default value.
  1025. This is the value that is seen in buffers that do not have their own values
  1026. for this variable.Fset
  1027. Set SYMBOL's value to NEWVAL, and return NEWVAL.Fset-default
  1028. Set SYMBOL's default value to VAL.  SYMBOL and VAL are evaluated.
  1029. The default value is seen in buffers that do not have their own values
  1030. for this variable.Fsetq-default
  1031. Set SYMBOL's default value to VAL.  VAL is evaluated; SYMBOL is not.
  1032. The default value is seen in buffers that do not have their own values
  1033. for this variable.Fmake-variable-buffer-local
  1034. Make VARIABLE have a separate value for each buffer.
  1035. At any time, the value for the current buffer is in effect.
  1036. There is also a default value which is seen in any buffer which has not yet
  1037. set its own value.
  1038. The function `default-value' gets the default value and `set-default' sets it.
  1039. Using `set' or `setq' to set the variable causes it to have a separate value
  1040. for the current buffer if it was previously using the default value.Fmake-local-variable
  1041. Make VARIABLE have a separate value in the current buffer.
  1042. Other buffers will continue to share a common default value.
  1043. See also `make-variable-buffer-local'.Fkill-local-variable
  1044. Make VARIABLE no longer have a separate value in the current buffer.
  1045. From now on the default value will apply in this buffer.Faref
  1046. Return the element of ARRAY at index INDEX.
  1047. ARRAY may be a vector or a string.  INDEX starts at 0.Faset
  1048. Store into the element of ARRAY at index INDEX the value NEWVAL.
  1049. ARRAY may be a vector or a string.  INDEX starts at 0.F=
  1050. T if two args, both numbers, are equal.F<
  1051. T if first arg is less than second arg.  Both must be numbers.F>
  1052. T if first arg is greater than second arg.  Both must be numbers.F<=
  1053. T if first arg is less than or equal to second arg.  Both must be numbers.F>=
  1054. T if first arg is greater than or equal to second arg.  Both must be numbers.F/=
  1055. T if first arg is not equal to second arg.  Both must be numbers.Fzerop
  1056. T if NUMBER is zero.Fint-to-string
  1057. Convert INT to a string by printing it in decimal, with minus sign if negative.Fstring-to-int
  1058. Convert STRING to an integer by parsing it as a decimal number.F+
  1059. Return sum of any number of numbers.F-
  1060. Negate number or subtract numbers.
  1061. With one arg, negates it.  With more than one arg,
  1062. subtracts all but the first from the first.F*
  1063. Returns product of any number of numbers.F/
  1064. Returns first argument divided by rest of arguments.F%
  1065. Returns remainder of first arg divided by second.Fmax
  1066. Return largest of all the arguments (which must be numbers.)Fmin
  1067. Return smallest of all the arguments (which must be numbers.)Flogand
  1068. Return bitwise and of all the arguments (numbers).Flogior
  1069. Return bitwise or of all the arguments (numbers).Flogxor
  1070. Return bitwise exclusive-or of all the arguments (numbers).Fash
  1071. Return VALUE with its bits shifted left by COUNT.
  1072. If COUNT is negative, shifting is actually to the right.
  1073. In this case, the sign bit is duplicated.Flsh
  1074. Return VALUE with its bits shifted left by COUNT.
  1075. If COUNT is negative, shifting is actually to the right.
  1076. In this case,  zeros are shifted in on the left.F1+
  1077. Return NUMBER plus one.F1-
  1078. Return NUMBER minus one.Flognot
  1079. Return the bitwise complement of ARG.Fdocumentation
  1080. Return the documentation string of FUNCTION.Fdocumentation-property
  1081. Return the documentation string that is SYMBOL's PROP property.
  1082. This differs from using `get' only in that it can refer to strings
  1083. stored in the etc/DOC file.FSnarf-documentation
  1084. Used during Emacs initialization, before dumping runnable Emacs,
  1085. to find pointers to doc strings stored in etc/DOC... and
  1086. record them in function definitions.
  1087. One arg, FILENAME, a string which does not include a directory.
  1088. The file is found in ../etc now; found in the exec-directory
  1089. when doc strings are referred to later in the dumped Emacs.Fsubstitute-command-keys
  1090. Return the STRING with substrings of the form \=\[COMMAND]
  1091. replaced by either:  a keystroke sequence that will invoke COMMAND,
  1092. or "M-x COMMAND" if COMMAND is not on any keys.
  1093. Substrings of the form \=\{MAPVAR} are replaced by summaries
  1094. (made by describe-bindings) of the value of MAPVAR, taken as a keymap.
  1095. Substrings of the form \=\<MAPVAR> specify to use the value of MAPVAR
  1096. as the keymap for future \=\[COMMAND] substrings.
  1097. \=\= quotes the following character and is discarded;
  1098. thus, \=\=\=\= puts \=\= into the output, and \=\=\=\[ puts \=\[ into the output.Fchar-to-string
  1099. Convert arg CHAR to a string containing that character.Fstring-to-char
  1100. Convert arg STRING to a character, the first character of that string.Fpoint
  1101. Return value of point, as an integer.
  1102. Beginning of buffer is position (point-min)Fpoint-marker
  1103. Return value of point, as a marker object.Fgoto-char
  1104. One arg, a number.  Set point to that number.
  1105. Beginning of buffer is position (point-min), end is (point-max).Fregion-beginning
  1106. Return position of beginning of region, as an integer.Fregion-end
  1107. Return position of end of region, as an integer.Fmark
  1108. Return this buffer's mark value as integer, or nil if no mark.
  1109. If you are using this in an editing command, you are most likely making
  1110. a mistake; see the documentation of `set-mark'.Fmark-marker
  1111. Return this buffer's mark, as a marker object.
  1112. Watch out!  Moving this marker changes the mark position.
  1113. The marker will not point anywhere if mark is not set.Fset-mark
  1114. Set this buffer's mark to POS.  Don't use this function!
  1115. That is to say, don't use this function unless you want
  1116. the user to see that the mark has moved, and you want the previous
  1117. mark position to be lost.
  1118.  
  1119. Normally, when a new mark is set, the old one should go on the stack.
  1120. This is why most applications should use push-mark, not set-mark.
  1121.  
  1122. Novice programmers often try to use the mark for the wrong purposes.
  1123. The mark saves a location for the user's convenience.
  1124. Most editing commands should not alter the mark.
  1125. To remember a location for internal use in the Lisp program,
  1126. store it in a Lisp variable.  Example:
  1127.  
  1128.    (let ((beg (point))) (forward-line 1) (delete-region beg (point))).Fsave-excursion
  1129. Save point (and mark), execute BODY, then restore point and mark.
  1130. Executes BODY just like PROGN.  Point and mark values are restored
  1131. even in case of abnormal exit (throw or error).Fbuffer-size
  1132. Return the number of characters in the current buffer.Fpoint-min
  1133. Return the minimum permissible value of point in the current buffer.
  1134. This is 1, unless a clipping restriction is in effect.Fpoint-min-marker
  1135. Return a marker to the beginning of the currently visible part of the buffer.
  1136. This is the beginning, unless a clipping restriction is in effect.Fpoint-max
  1137. Return the maximum permissible value of point in the current buffer.
  1138. This is (1+ (buffer-size)), unless a clipping restriction is in effect,
  1139. in which case it is less.Fpoint-max-marker
  1140. Return a marker to the end of the currently visible part of the buffer.
  1141. This is the actual end, unless a clipping restriction is in effect.Ffollowing-char
  1142. Return the character following point, as a number.Fpreceding-char
  1143. Return the character preceding point, as a number.Fbobp
  1144. Return T if point is at the beginning of the buffer.
  1145. If the buffer is narrowed, this means the beginning of the narrowed part.Feobp
  1146. Return T if point is at the end of the buffer.
  1147. If the buffer is narrowed, this means the end of the narrowed part.Fbolp
  1148. Return T if point is at the beginning of a line.Feolp
  1149. Return T if point is at the end of a line.
  1150. `End of a line' includes point being at the end of the buffer.Fchar-after
  1151. One arg, POS, a number.  Return the character in the current buffer
  1152. at position POS.
  1153. If POS is out of range, the value is NIL.Fuser-login-name
  1154. Return the name under which user logged in, as a string.
  1155. This is based on the effective uid, not the real uid.Fuser-real-login-name
  1156. Return the name of the user's real uid, as a string.
  1157. Differs from user-login-name when running under su.Fuser-uid
  1158. Return the effective uid of Emacs, as an integer.Fuser-real-uid
  1159. Return the real uid of Emacs, as an integer.Fuser-full-name
  1160. Return the full name of the user logged in, as a string.Fsystem-name
  1161. Return the name of the machine you are running on, as a string.Fcurrent-time-string
  1162. Return the current time, as a human-readable string.Finsert
  1163. Any number of args, strings or chars.  Insert them after point, moving point forward.Finsert-before-markers
  1164. Any number of args, strings or chars.  Insert them after point,
  1165. moving point forward.  Also, any markers pointing at the insertion point
  1166. get relocated to point after the newly inserted text.Finsert-char
  1167. Insert COUNT (second arg) copies of CHAR (first arg).
  1168. Both arguments are required.Fbuffer-substring
  1169. Return the contents of part of the current buffer as a string.
  1170. The two arguments specify the start and end, as character numbers.Fbuffer-string
  1171. Return the contents of the current buffer as a string.Finsert-buffer-substring
  1172. Insert before point a substring of the contents buffer BUFFER.
  1173. BUFFER may be a buffer or a buffer name.
  1174. Arguments START and END are character numbers specifying the substring.
  1175. They default to the beginning and the end of BUFFER.Fsubst-char-in-region
  1176. From START to END, replace FROMCHAR with TOCHAR each time it occurs.
  1177. If optional arg NOUNDO is non-nil, don't record this change for undo
  1178. and don't mark the buffer as really changed.Fdelete-region
  1179. Delete the text between point and mark.
  1180. When called from a program, expects two arguments,
  1181. character numbers specifying the stretch to be deleted.Fwiden
  1182. Remove restrictions from current buffer, allowing full text to be seen and edited.Fnarrow-to-region
  1183. Restrict editing in this buffer to the current region.
  1184. The rest of the text becomes temporarily invisible and untouchable
  1185. but is not deleted; if you save the buffer in a file, the invisible
  1186. text is included in the file.  \[widen] makes all visible again.
  1187.  
  1188. When calling from a program, pass two arguments; character numbers
  1189. bounding the text that should remain visible.Fsave-restriction
  1190. Execute the body, undoing at the end any changes to current buffer's restrictions.
  1191. Changes to restrictions are made by narrow-to-region or by widen.
  1192. Thus, the restrictions are the same after this function as they were before it.
  1193. The value returned is that returned by the last form in the body.
  1194.  
  1195. This function can be confused if, within the body, you widen
  1196. and then make changes outside the area within the saved restrictions.
  1197.  
  1198. Note: if you are using both save-excursion and save-restriction,
  1199. use save-excursion outermost.Fmessage
  1200. Print a one-line message at the bottom of the screen.
  1201. The first argument is a control string.
  1202. It may contain %s or %d or %c to print successive following arguments.
  1203. %s means print an argument as a string, %d means print as number in decimal,
  1204. %c means print a number as a single character.
  1205. The argument used by %s must be a string or a symbol;
  1206. the argument used by %d or %c must be a number.Fformat
  1207. Format a string out of a control-string and arguments.
  1208. The first argument is a control string.
  1209. It, and subsequent arguments substituted into it, become the value, which is a string.
  1210. It may contain %s or %d or %c to substitute successive following arguments.
  1211. %s means print an argument as a string, %d means print as number in decimal,
  1212. %c means print a number as a single character.
  1213. The argument used by %s must be a string or a symbol;
  1214. the argument used by %d, %b, %o, %x or %c must be a number.Fchar-equal
  1215. T if args (both characters (numbers)) match.  May ignore case.
  1216. Case is ignored if the current buffer specifies to do so.Fgetenv
  1217. Return the value of environment variable VAR, as a string.
  1218. VAR should be a string.  If the environment variable VAR is not defined,
  1219. the value is nil.Finteractive
  1220. Specify a way of parsing arguments for interactive use of a function.
  1221. For example, write
  1222.   (defun fun (arg) "Doc string" (interactive "p") ...use arg...)
  1223. to make arg be the prefix numeric argument when foo is called as a command.
  1224. This is actually a declaration rather than a function;
  1225.  it tells  call-interactively  how to read arguments
  1226.  to pass to the function.
  1227. When actually called,  interactive  just returns nil.
  1228.  
  1229. The argument of  interactive  is usually a string containing a code letter
  1230.  followed by a prompt.  (Some code letters do not use I/O to get
  1231.  the argument and do not need prompts.)  To prompt for multiple arguments,
  1232.  give a code letter, its prompt, a newline, and another code letter, etc.
  1233. If the argument is not a string, it is evaluated to get a list of
  1234.  arguments to pass to the function.
  1235. Just  (interactive)  means pass no args when calling interactively.
  1236.  
  1237. Code letters available are:
  1238. a -- Function name: symbol with a function definition.
  1239. b -- Name of existing buffer.
  1240. B -- Name of buffer, possibly nonexistent.
  1241. c -- Character.
  1242. C -- Command name: symbol with interactive function definition.
  1243. d -- Value of point as number.  Does not do I/O.
  1244. D -- Directory name.
  1245. f -- Existing file name.
  1246. F -- Possibly nonexistent file name.
  1247. k -- Key sequence (string).
  1248. m -- Value of mark as number.  Does not do I/O.
  1249. n -- Number read using minibuffer.
  1250. N -- Prefix arg converted to number, or if none, do like code `n'.
  1251. p -- Prefix arg converted to number.  Does not do I/O.
  1252. P -- Prefix arg in raw form.  Does not do I/O.
  1253. r -- Region: point and mark as 2 numeric args, smallest first.  Does no I/O.
  1254. s -- Any string.
  1255. S -- Any symbol.
  1256. v -- Variable name: symbol that is user-variable-p.
  1257. x -- Lisp expression read but not evaluated.
  1258. X -- Lisp expression read and evaluated.
  1259. In addition, if the first character of the string is '*' then an error is
  1260.  signaled if the buffer is read-only.
  1261.  This happens before reading any arguments.Fcall-interactively
  1262. Call FUNCTION, reading args according to its interactive calling specs.
  1263. The function contains a specification of how to do the argument reading.
  1264. In the case of user-defined functions, this is specified by placing a call
  1265. to the function `interactive' at the top level of the function body.
  1266. See `interactive'.
  1267.  
  1268. Optional second arg RECORD-FLAG non-nil
  1269. means unconditionally put this command in the command-history.
  1270. Otherwise, this is done only if an arg is read using the minibuffer.Fprefix-numeric-value
  1271. Return numeric meaning of raw prefix argument ARG.
  1272. A raw prefix argument is what you get from (interactive "P").Vprefix-arg
  1273. The value of the prefix argument for the next editing command.
  1274. It may be a number, or the symbol - for just a minus sign as arg,
  1275. or a list whose car is a number for just one or more C-U's
  1276. or nil if no argument has been specified.
  1277.  
  1278. You cannot examine this variable to find the argument for this command
  1279. since it has been set to nil by the time you can look.
  1280. Instead, you should use the variable current-prefix-arg, although
  1281. normally commands can get this prefix argument with (interactive "P").Vcurrent-prefix-arg
  1282. The value of the prefix argument for this editing command.
  1283. It may be a number, or the symbol - for just a minus sign as arg,
  1284. or a list whose car is a number for just one or more C-U's
  1285. or nil if no argument has been specified.
  1286. This is what (interactive "P") returns.Vcommand-history
  1287. List of recent commands that read arguments from terminal.
  1288. Each command is represented as a form to evaluate.For
  1289. Eval args until one of them yields non-NIL, then return that value.
  1290. The remaining args are not evalled at all.
  1291. If all args return NIL, return NIL.Fand
  1292. Eval args until one of them yields NIL, then return NIL.
  1293. The remaining args are not evalled at all.
  1294. If no arg yields NIL, return the last arg's value.Fif
  1295. (if C T E...) if C yields non-NIL do T, else do E...
  1296. Returns the value of T or the value of the last of the E's.
  1297. There may be no E's; then if C yields NIL, the value is NIL.Fcond
  1298. (cond CLAUSES...) tries each clause until one succeeds.
  1299. Each clause looks like (C BODY...).  C is evaluated
  1300. and, if the value is non-nil, this clause succeeds:
  1301. then the expressions in BODY are evaluated and the last one's
  1302. value is the value of the cond expression.
  1303. If a clause looks like (C), C's value if non-nil is returned from cond.
  1304. If no clause succeeds, cond returns nil.Fprogn
  1305. Eval arguments in sequence, and return the value of the last one.Fprog1
  1306. Eval arguments in sequence, then return the FIRST arg's value.
  1307. This value is saved during the evaluation of the remaining args,
  1308. whose values are discarded.Fprog2
  1309. Eval arguments in sequence, then return the SECOND arg's value.
  1310. This value is saved during the evaluation of the remaining args,
  1311. whose values are discarded.Fsetq
  1312. (setq SYM VAL SYM VAL ...) sets each SYM to the value of its VAL.
  1313. The SYMs are not evaluated.  Thus (setq x y) sets x to the value of y.
  1314. Each SYM is set before the next VAL is computed.Fquote
  1315. Return the argument, without evaluating it.  (quote x)  yields  x.Ffunction
  1316. Quote a function object.
  1317. Equivalent to the quote function in the interpreter,
  1318. but causes the compiler to compile the argument as a function
  1319. if it is not a symbol.Finteractive-p
  1320. Return t if function in which this appears was called interactively.
  1321. This means that the function was called with call-interactively (which
  1322. includes being called as the binding of a key)
  1323. and input is currently coming from the keyboard (not in keyboard macro).Fdefun
  1324. (defun NAME ARGLIST [DOCSTRING] BODY...) defines NAME as a function.
  1325. The definition is (lambda ARGLIST [DOCSTRING] BODY...).
  1326. See also the function  interactive .Fdefmacro
  1327. (defmacro NAME ARGLIST [DOCSTRING] BODY...) defines NAME as a macro.
  1328. The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
  1329. When the macro is called, as in (NAME ARGS...),
  1330. the function (lambda ARGLIST BODY...) is applied to
  1331. the list ARGS... as it appears in the expression,
  1332. and the result should be a form to be evaluated instead of the original.Fdefvar
  1333. (defvar SYMBOL INITVALUE DOCSTRING) defines SYMBOL as an advertised variable.
  1334. INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
  1335. INITVALUE and DOCSTRING are optional.
  1336. If DOCSTRING starts with *, this variable is identified as a user option.
  1337.  This means that M-x set-variable and M-x edit-options recognize it.
  1338. If INITVALUE is missing, SYMBOL's value is not set.Fdefconst
  1339. (defconst SYMBOL INITVALUE DOCSTRING) defines SYMBOL as a constant variable.
  1340. The intent is that programs do not change this value (but users may).
  1341. Always sets the value of SYMBOL to the result of evalling INITVALUE.
  1342. DOCSTRING is optional.
  1343. If DOCSTRING starts with *, this variable is identified as a user option.
  1344.  This means that M-x set-variable and M-x edit-options recognize it.Fuser-variable-p
  1345. Returns t if VARIABLE is intended to be set and modified by users,
  1346. as opposed to by programs.
  1347. Determined by whether the first character of the documentation
  1348. for the variable is "*"Flet*
  1349. (let* VARLIST BODY...) binds variables according to VARLIST then executes BODY.
  1350. The value of the last form in BODY is returned.
  1351. Each element of VARLIST is a symbol (which is bound to NIL)
  1352. or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
  1353. Each VALUEFORM can refer to the symbols already bound by this VARLIST.Flet
  1354. (let VARLIST BODY...) binds variables according to VARLIST then executes BODY.
  1355. The value of the last form in BODY is returned.
  1356. Each element of VARLIST is a symbol (which is bound to NIL)
  1357. or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
  1358. All the VALUEFORMs are evalled before any symbols are bound.Fwhile
  1359. (while TEST BODY...) if TEST yields non-NIL, execute the BODY forms and repeat.Fmacroexpand
  1360. If FORM is a macro call, expand it.
  1361. If the result of expansion is another macro call, expand it, etc.
  1362. Return the ultimate expansion.
  1363. The second optional arg ENVIRONMENT species an environment of macro
  1364. definitions to shadow the loaded ones for use in file byte-compilation.Fcatch
  1365. (catch TAG BODY...) perform BODY allowing nonlocal exits using (throw TAG).
  1366. TAG is evalled to get the tag to use.  throw  to that tag exits this catch.
  1367. Then the BODY is executed.  If no  throw  happens, the value of the last BODY
  1368. form is returned from  catch.  If a  throw  happens, it specifies the value to
  1369. return from  catch.Fthrow
  1370. (throw TAG VALUE): throw to the catch for TAG and return VALUE from it.
  1371. Both TAG and VALUE are evalled.Funwind-protect
  1372. Do BODYFORM, protecting with UNWINDFORMS.
  1373. Usage looks like (unwind-protect BODYFORM UNWINDFORMS...) 
  1374. If BODYFORM completes normally, its value is returned
  1375. after executing the UNWINDFORMS.
  1376. If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.Fcondition-case
  1377. Regain control when an error is signaled.
  1378.  (condition-case VAR BODYFORM HANDLERS...)
  1379. executes BODYFORM and returns its value if no error happens.
  1380. Each element of HANDLERS looks like (CONDITION-NAME BODY...)
  1381. where the BODY is made of Lisp expressions.
  1382. The handler is applicable to an error
  1383. if CONDITION-NAME is one of the error's condition names.
  1384. When a handler handles an error,
  1385. control returns to the condition-case and the handler BODY... is executed
  1386. with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
  1387. The value of the last BODY form is returned from the condition-case.
  1388. See SIGNAL for more info.Fsignal
  1389. Signal an error.  Args are SIGNAL-NAME, and associated DATA.
  1390. A signal name is a symbol with an  error-conditions  property
  1391. that is a list of condition names.
  1392. A handler for any of those names will get to handle this signal.
  1393. The symbol  error  should always be one of them.
  1394.  
  1395. DATA should be a list.  Its elements are printed as part of the error message.
  1396. If the signal is handled, DATA is made available to the handler.
  1397. See  condition-case.Fcommandp
  1398. T if FUNCTION makes provisions for interactive calling.
  1399. This means it contains a description for how to read arguments to give it.
  1400. The value is nil for an invalid function or a symbol with no function definition.
  1401.  
  1402. Interactively callable functions include strings (treated as keyboard macros),
  1403. lambda-expressions that contain a top-level call to  interactive ,
  1404. autoload definitions made by  autoload  with non-nil fourth argument,
  1405. and some of the built-in functions of Lisp.
  1406.  
  1407. Also, a symbol is commandp if its function definition is commandp.Fautoload
  1408. Define FUNCTION to autoload from FILE.
  1409. FUNCTION is a symbol; FILE is a file name string to pass to  load.
  1410. Third arg DOCSTRING is documentation for the function.
  1411. Fourth arg FROM_KBD if non-nil says function can be called interactively.
  1412. Fifth arg MACRO if non-nil says the function is really a macro.
  1413. Third through fifth args give info about the real definition.
  1414. They default to nil.
  1415. If FUNCTION is already defined other than as an autoload,
  1416. this does nothing and returns nil.Feval
  1417. Evaluate FORM and return its value.Fapply
  1418. Call FUNCTION, passing remaining arguments to it.  The last argument
  1419. is a list of arguments to pass.
  1420. Thus, (apply '+ 1 2 '(3 4)) returns 10.Ffuncall
  1421. Call first argument as a function, passing remaining arguments to it.
  1422. Thus,  (funcall 'cons 'x 'y)  returns  (x . y).Fbacktrace-debug
  1423. Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
  1424. The debugger is entered when that frame exits, if the flag is non-nil.Fbacktrace
  1425. Print a trace of Lisp function calls currently active.
  1426. Output stream used is value of standard-output.Vmax-specpdl-size
  1427. Limit on number of Lisp variable bindings & unwind-protects before error.Vmax-lisp-eval-depth
  1428. Limit on depth in eval, apply and funcall before error.Vquit-flag
  1429. Non-nil causes  eval  to abort, unless  inhibit-quit  is non-nil.
  1430. Typing C-G sets  quit-flag  non-nil, regardless of  inhibit-quit.Vinhibit-quit
  1431. Non-nil inhibits C-g quitting from happening immediately.
  1432. Note that  quit-flag  will still be set by typing C-g,
  1433. so a quit will be signalled as soon as  inhibit-quit  is nil.
  1434. To prevent this happening, set  quit-flag  to nil
  1435. before making  inhibit-quit  nil.Vstack-trace-on-error
  1436. *Non-nil means automatically display a backtrace buffer
  1437. after any error that is handled by the editor command loop.Vdebug-on-error
  1438. *Non-nil means enter debugger if an error is signaled.
  1439. Does not apply to errors handled by condition-case.
  1440. See also variable debug-on-quit.Vdebug-on-quit
  1441. *Non-nil means enter debugger if quit is signaled (C-G, for example).
  1442. Does not apply if quit is handled by a condition-case.Vdebug-on-next-call
  1443. Non-nil means enter debugger before next eval, apply or funcall.Vdebugger
  1444. Function to call to invoke debugger.
  1445. If due to frame exit, args are 'exit and value being returned;
  1446.  this function's value will be returned instead of that.
  1447. If due to error, args are 'error and list of signal's args.
  1448. If due to apply or funcall entry, one arg, 'lambda.
  1449. If due to eval entry, one arg, 't.Vmocklisp-arguments
  1450. While in a mocklisp function, the list of its unevaluated args.Fidentity
  1451. Return the argument unchanged.Frandom
  1452. Return a pseudo-random number.
  1453. On most systems all integers representable in Lisp are equally likely.
  1454.   This is 24 bits' worth.
  1455. On some systems, absolute value of result never exceeds 2 to the 14.
  1456. If optional argument is supplied as  t,
  1457.  the random number seed is set based on the current time and pid.Flength
  1458. Return the length of vector, list or string SEQUENCE.Fstring-equal
  1459. T if two strings have identical contents.
  1460. Symbols are also allowed; their print names are used instead.Fstring-lessp
  1461. T if first arg string is less than second in lexicographic order.
  1462. Symbols are also allowed; their print names are used instead.Fappend
  1463. Concatenate arguments and make the result a list.
  1464. The result is a list whose elements are the elements of all the arguments.
  1465. Each argument may be a list, vector or string.Fconcat
  1466. Concatenate arguments and make the result a string.
  1467. The result is a string whose elements are the elements of all the arguments.
  1468. Each argument may be a string, a list of numbers, or a vector of numbers.Fvconcat
  1469. Concatenate arguments and make the result a vector.
  1470. The result is a vector whose elements are the elements of all the arguments.
  1471. Each argument may be a list, vector or string.Fcopy-sequence
  1472. Return a copy of a list, vector or string.Fcopy-alist
  1473. Return a copy of ALIST.
  1474. This is a new alist which represents the same mapping
  1475. from objects to objects, but does not share the alist structure with ALIST.
  1476. The objects mapped (cars and cdrs of elements of the alist)
  1477. are shared, however.Fsubstring
  1478. Return a substring of STRING, starting at index FROM and ending before TO.
  1479. TO may be nil or omitted; then the substring runs to the end of STRING.
  1480. If FROM or TO is negative, it counts from the end.Fnthcdr
  1481. Takes cdr N times on LIST, returns the result.Fnth
  1482. Returns the Nth element of LIST.
  1483. N counts from zero.  If LIST is not that long, nil is returned.Felt
  1484. Returns element of SEQUENCE at index N.Fmemq
  1485. Returns non-nil if ELT is an element of LIST.  Comparison done with EQ.
  1486. The value is actually the tail of LIST whose car is ELT.Fassq
  1487. Returns non-nil if ELT is the car of an element of LIST.  Comparison done with eq.
  1488. The value is actually the element of LIST whose car is ELT.Fassoc
  1489. Returns non-nil if ELT is the car of an element of LIST.  Comparison done with  equal.
  1490. The value is actually the element of LIST whose car is ELT.Frassq
  1491. Returns non-nil if ELT is the cdr of an element of LIST.  Comparison done with EQ.
  1492. The value is actually the element of LIST whose cdr is ELT.Fdelq
  1493. Deletes by side effect any occurrences of ELT as a member of LIST.
  1494. The modified LIST is returned.
  1495. If the first member of LIST is ELT, there is no way to remove it by side effect;
  1496. therefore, write  (setq foo (delq element foo))  to be sure of changing  foo.Fnreverse
  1497. Reverses LIST by modifying cdr pointers.  Returns the beginning of the reversed list.Freverse
  1498. Reverses LIST, copying.  Returns the beginning of the reversed list.
  1499. See also the function  nreverse, which is used more often.Fsort
  1500. Sort LIST, stably, comparing elements using PREDICATE.
  1501. Returns the sorted list.  LIST is modified by side effects.
  1502. PREDICATE is called with two elements of LIST, and should return T
  1503. if the first element is "less" than the second.Fget
  1504. Return the value of SYMBOL's PROPNAME property.
  1505. This is the last VALUE stored with  (put SYMBOL PROPNAME VALUE).Fput
  1506. Store SYMBOL's PROPNAME property with value VALUE.
  1507. It can be retrieved with  (get SYMBOL PROPNAME).Fequal
  1508. T if two Lisp objects have similar structure and contents.
  1509. They must have the same data type.
  1510. Conses are compared by comparing the cars and the cdrs.
  1511. Vectors and strings are compared element by element.
  1512. Numbers are compared by value.  Symbols must match exactly.Ffillarray
  1513. Store each element of ARRAY with ITEM.  ARRAY is a vector or string.Fnconc
  1514. Concatenate any number of lists by altering them.
  1515. Only the last argument is not altered, and need not be a list.Fmapconcat
  1516. Apply FN to each element of SEQ, and concat the results as strings.
  1517. In between each pair of results, stick in SEP.
  1518. Thus, " " as SEP results in spaces between the values return by FN.Fmapcar
  1519. Apply FUNCTION to each element of LIST, and make a list of the results.
  1520. The result is a list just as long as LIST.Fy-or-n-p
  1521. Ask user a "y or n" question.  Return t if answer is "y".
  1522. No confirmation of the answer is requested; a single character is enough.
  1523. Also accepts Space to mean yes, or Delete to mean no.Fyes-or-no-p
  1524. Ask user a yes or no question.  Return t if answer is yes.
  1525. The user must confirm the answer with a newline, and can rub it out if not confirmed.Fload-average
  1526. Return the current 1 minute, 5 minute and 15 minute load averages
  1527. in a list (all floating point load average values are multiplied by 100
  1528. and then turned into integers).Ffeaturep
  1529. Returns t if FEATURE is present in this Emacs.
  1530. Use this to conditionalize execution of lisp code based on the presence or
  1531. absence of emacs or environment extensions.
  1532. Use  provide  to declare that a feature is available.
  1533. This function looks at the value of the variable  features.Fprovide
  1534. Announce that FEATURE is a feature of the current Emacs.Frequire
  1535. If FEATURE is not present in Emacs (ie (featurep FEATURE) is false),
  1536. load FILENAME.  FILENAME is optional and defaults to FEATURE.Vfeatures
  1537. A list of symbols which are the features of the executing emacs.
  1538. Used by  featurep  and  require, and altered by  provide.Fwrite-char
  1539. Output character CHAR to stream STREAM.
  1540. STREAM defaults to the value of `standard-output' (which see).Fwith-output-to-temp-buffer
  1541. Binding `standard-output' to buffer named BUFNAME, execute BODY then display that buffer.
  1542. The buffer is cleared out initially, and marked as unmodified when done.
  1543. All output done by BODY is inserted in that buffer by default.
  1544. It is displayed in another window, but not selected.
  1545. The value of the last form in BODY is returned.
  1546. If variable `temp-buffer-show-hook' is non-nil, call it at the end
  1547. to get the buffer displayed.  It gets one argument, the buffer to display.Fterpri
  1548. Output a newline to STREAM (or value of standard-output).Fprin1
  1549. Output the printed representation of OBJECT, any Lisp object.
  1550. Quoting characters are printed when needed to make output that `read'
  1551. can handle, whenever this is possible.
  1552. Output stream is STREAM, or value of `standard-output' (which see).Fprin1-to-string
  1553. Return a string containing the printed representation of OBJECT,
  1554. any Lisp object.  Quoting characters are used when needed to make output
  1555. that `read' can handle, whenever this is possible.Fprinc
  1556. Output the printed representation of OBJECT, any Lisp object.
  1557. No quoting characters are used; no delimiters are printed around
  1558. the contents of strings.
  1559. Output stream is STREAM, or value of standard-output (which see).Fprint
  1560. Output the printed representation of OBJECT, with newlines around it.
  1561. Quoting characters are printed when needed to make output that `read'
  1562. can handle, whenever this is possible.
  1563. Output stream is STREAM, or value of `standard-output' (which see).Vstandard-output
  1564. Function print uses by default for outputting a character.
  1565. This may be any function of one argument.
  1566. It may also be a buffer (output is inserted before point)
  1567. or a marker (output is inserted and the marker is advanced)
  1568. or the symbol t (output appears in the minibuffer line).Vprint-length
  1569. Maximum length of list to print before abbreviating.`nil' means no limit.Vprint-escape-newlines
  1570. Non-nil means print newlines in strings as backslash-n.Fread-char
  1571. Read a character from the command input (keyboard or macro).
  1572. It is returned as a number.Fget-file-char
  1573. Don't use this yourself.Fload
  1574. Execute a file of Lisp code named FILE.
  1575. First tries FILE with .elc appended, then tries with .el,
  1576.  then tries FILE unmodified.  Searches directories in  load-path.
  1577. If optional second arg NOERROR is non-nil,
  1578.  report no error if FILE doesn't exist.
  1579. Print messages at start and end of loading unless
  1580.  optional third arg NOMESSAGE is non-nil.
  1581. If optional fourth arg NOSUFFIX is non-nil, don't try adding
  1582.  suffixes .elc or .el to the specified name FILE.
  1583. Return t if file exists.Feval-current-buffer
  1584. Execute the current buffer as Lisp code.
  1585. Programs can pass argument PRINTFLAG which controls printing of output:
  1586. nil means discard it; anything else is stream for print.Feval-region
  1587. Execute the region as Lisp code.
  1588. When called from programs, expects two arguments,
  1589. giving starting and ending indices in the current buffer
  1590. of the text to be executed.
  1591. Programs can pass third argument PRINTFLAG which controls printing of output:
  1592. nil means discard it; anything else is stream for print.Fread
  1593. Read one Lisp expression as text from STREAM, return as Lisp object.
  1594. If STREAM is nil, use the value of standard-input (which see).
  1595. STREAM or standard-input may be:
  1596.  a buffer (read from point and advance it)
  1597.  a marker (read from where it points and advance it)
  1598.  a function (call it with no arguments for each character)
  1599.  a string (takes text from string, starting at the beginning)
  1600.  t (read text line using minibuffer and use it).Fread-from-string
  1601. Read one Lisp expression which is represented as text by STRING.
  1602. Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
  1603. START and END optionally delimit a substring of STRING from which to read;
  1604.  they default to 0 and (length STRING) respectively.Fintern
  1605. Return the symbol whose name is STRING.
  1606. A second optional argument specifies the obarray to use;
  1607. it defaults to the value of  obarray.Fintern-soft
  1608. Return the symbol whose name is STRING, or nil if none exists yet.
  1609. A second optional argument specifies the obarray to use;
  1610. it defaults to the value of  obarray.Fmapatoms
  1611. Call FUNCTION on every symbol in OBARRAY.
  1612. OBARRAY defaults to the value of  obarray.Vobarray
  1613. Symbol table for use by  intern  and  read.
  1614. It is a vector whose length ought to be prime for best results.
  1615. Each element is a list of all interned symbols whose names hash in that bucket.Vvalues
  1616. List of values of all expressions which were read, evaluated and printed.
  1617. Order is reverse chronological.Vstandard-input
  1618. Stream for read to get input from.
  1619. See documentation of read for possible values.Vload-path
  1620. *List of directories to search for files to load.
  1621. Each element is a string (directory name) or nil (try default directory).
  1622. Initialized based on EMACSLOADPATH environment variable, if any,
  1623. otherwise to default specified in by file paths.h when emacs was built.Vload-in-progress
  1624. Non-nil iff inside of  load.Fmake-abbrev-table
  1625. Create a new, empty abbrev table object.Fclear-abbrev-table
  1626. Undefine all abbrevs in abbrev table TABLE, leaving it empty.Fdefine-abbrev
  1627. Define an abbrev in TABLE named NAME, to expand to EXPANSION or call HOOK.
  1628. NAME and EXPANSION are strings.  HOOK is a function or nil.
  1629. To undefine an abbrev, define it with EXPANSION = nilFdefine-global-abbrev
  1630. Define ABBREV as a global abbreviation for EXPANSION.Fdefine-mode-abbrev
  1631. Define ABBREV as a mode-specific abbreviation for EXPANSION.Fabbrev-symbol
  1632. Return the symbol representing abbrev named ABBREV.
  1633. Value is nil if that abbrev is not defined.
  1634. Optional second arg TABLE is abbrev table to look it up in.
  1635. Default is try buffer's mode-specific abbrev table, then global table.Fabbrev-expansion
  1636. Return the string that ABBREV expands into in the current buffer.
  1637. Optionally specify an abbrev table; then ABBREV is looked up in that table only.Fexpand-abbrev
  1638. Expand the abbrev before point, if it is an abbrev.
  1639. Effective when explicitly called even when abbrev-mode is not enabled.
  1640. Returns t if expansion took place.Funexpand-abbrev
  1641. Undo the expansion of the last abbrev that expanded.Finsert-abbrev-table-description
  1642. Insert before point a description of abbrev table named NAME.
  1643. NAME is a symbol whose value is an abbrev table.
  1644. If 2nd arg READABLE is non-nil, a readable description is inserted.
  1645. Otherwise description is an expression,
  1646. a call to define-abbrev-table which would
  1647. define NAME exactly as it is currently defined.Fdefine-abbrev-table
  1648. Define TABNAME (a symbol) as an abbrev table name.
  1649. Define abbrevs in it according to DEFINITIONS, a list of elements
  1650. of the form (ABBREVNAME EXPANSION HOOK USECOUNT).Vabbrev-table-name-list
  1651. List of symbols whose values are  abbrev tables.Vglobal-abbrev-table
  1652. The abbrev table whose abbrevs affect all buffers.
  1653. Each buffer may also have a local abbrev table.
  1654. If it does, the local table overrides the global one
  1655. for any particular abbrev defined in both.Vfundamental-mode-abbrev-table
  1656. The abbrev table of mode-specific abbrevs for Fundamental Mode.Vlast-abbrev
  1657. The abbrev-symbol of the last abbrev expanded.Vlast-abbrev-text
  1658. The exact text of the last abbrev expanded.
  1659. nil if the abbrev has already been unexpanded.Vlast-abbrev-location
  1660. The location of the last abbrev expanded.Vabbrev-start-location
  1661. Buffer position for expand-abbrev to use as the start of the abbrev.
  1662. nil means use the word before point as the abbrev.
  1663. Set to nil each time expand-abbrev is called.Vabbrev-start-location-buffer
  1664. Buffer that abbrev-start-location has been set for.
  1665. Trying to expand an abbrev in any other buffer clears abbrev-start-location.Vlocal-abbrev-table
  1666. Local (mode-specific) abbrev table of current buffer.Vabbrevs-changed
  1667. Set non-nil by defining or altering any word abbrevs.Vabbrev-all-caps
  1668. *Set non-nil means expand multi-word abbrevs all caps if abbrev was so.Fsyntax-table-p
  1669. Return t if ARG is a syntax table.
  1670. Any vector of 256 elements will do.Fsyntax-table
  1671. Return the current syntax table.
  1672. This is the one specified by the current buffer.Fstandard-syntax-table
  1673. Return the standard syntax table.
  1674. This is the one used for new buffers.Fcopy-syntax-table
  1675. Construct a new syntax table and return it.
  1676. It is a copy of the TABLE, which defaults to the standard syntax table.Fset-syntax-table
  1677. Select a new syntax table for the current buffer.
  1678. One argument, a syntax table.Fchar-syntax
  1679. Return the syntax code of CHAR, described by a character.
  1680. For example, if CHAR is a word constituent, ?w is returned.
  1681. The characters that correspond to various syntax codes
  1682. are listed in the documentation of  modify-syntax-entry.Fmodify-syntax-entry
  1683. Set syntax for character CHAR according to string S.
  1684. The syntax is changed only for table TABLE, which defaults to
  1685.  the current buffer's syntax table.
  1686. The first character of S should be one of the following:
  1687.   Space    whitespace syntax.    w   word constituent.
  1688.   _        symbol constituent.   .   punctuation.
  1689.   (        open-parenthesis.     )   close-parenthesis.
  1690.   "        string quote.         \   character-quote.
  1691.   $        paired delimiter.     '   expression prefix operator.
  1692.   <       comment starter.     >   comment ender.
  1693. Only single-character comment start and end sequences are represented thus.
  1694. Two-character sequences are represented as described below.
  1695. The second character of S is the matching parenthesis,
  1696.  used only if the first character is ( or ).
  1697. Any additional characters are flags.
  1698. Defined flags are the characters 1, 2, 3 and 4.
  1699.  1 means C is the start of a two-char comment start sequence.
  1700.  2 means C is the second character of such a sequence.
  1701.  3 means C is the start of a two-char comment end sequence.
  1702.  4 means C is the second character of such a sequence.Fdescribe-syntax
  1703. Describe the syntax specifications in the syntax table.
  1704. The descriptions are inserted in a buffer, which is selected so you can see it.Fforward-word
  1705. Move point forward ARG words (backward if ARG is negative).
  1706. Normally returns t.
  1707. If an edge of the buffer is reached, point is left there
  1708. and nil is returned.Fscan-lists
  1709. Scan from character number FROM by COUNT lists.
  1710. Returns the character number of the position thus found.
  1711.  
  1712. If DEPTH is nonzero, paren depth begins counting from that value,
  1713. only places where the depth in parentheses becomes zero
  1714. are candidates for stopping; COUNT such places are counted.
  1715. Thus, a positive value for DEPTH means go out levels.
  1716.  
  1717. Comments are ignored if parse-sexp-ignore-comments is non-nil.
  1718.  
  1719. If the beginning or end of (the visible part of) the buffer is reached
  1720. and the depth is wrong, an error is signaled.
  1721. If the depth is right but the count is not used up, nil is returned.Fscan-sexps
  1722. Scan from character number FROM by COUNT balanced expressions.
  1723. Returns the character number of the position thus found.
  1724.  
  1725. Comments are ignored if parse-sexp-ignore-comments is non-nil.
  1726.  
  1727. If the beginning or end of (the visible part of) the buffer is reached
  1728. in the middle of a parenthetical grouping, an error is signaled.
  1729. If the beginning or end is reached between groupings but before count is used up,
  1730. nil is returned.Fbackward-prefix-chars
  1731. Move point backward over any number of chars with syntax "prefix".Fparse-partial-sexp
  1732. Parse Lisp syntax starting at FROM until TO; return status of parse at TO.
  1733. Parsing stops at TO or when certain criteria are met;
  1734.  point is set to where parsing stops.
  1735. If fifth arg STATE is omitted or nil,
  1736.  parsing assumes that FROM is the beginning of a function.
  1737. Value is a list of seven elements describing final state of parsing:
  1738.  1. depth in parens.
  1739.  2. character address of start of innermost containing list; nil if none.
  1740.  3. character address of start of last complete sexp terminated.
  1741.  4. non-nil if inside a string.
  1742.     (it is the character that will terminate the string.)
  1743.  5. t if inside a comment.
  1744.  6. t if following a quote character.
  1745.  7. the minimum paren-depth encountered during this scan.
  1746. If third arg TARGETDEPTH is non-nil, parsing stops if the depth
  1747. in parentheses becomes equal to TARGETDEPTH.
  1748. Fourth arg STOPBEFORE non-nil means stop when come to
  1749.  any character that starts a sexp.
  1750. Fifth arg STATE is a seven-list like what this function returns.
  1751. It is used to initialize the state of the parse.Vparse-sexp-ignore-comments
  1752. Non-nil means forward-sexp, etc., should treat comments as whitespace.
  1753. Non-nil works only when the comment terminator is something like */,
  1754. and appears only when it ends a comment.
  1755. If comments are terminated by newlines,
  1756. you must make this variable nil.Fml-if
  1757. if  for mocklisp programsFml-nargs
  1758. # arguments to this mocklisp functionFml-arg
  1759. Argument #N to this mocklisp function.Fml-interactive
  1760. True if this mocklisp function was called interactively.Fml-provide-prefix-argument
  1761. Evaluate second argument, using first argument as prefix arg value.Fml-prefix-argument-loop
  1762. Fml-substr
  1763. Return a substring of STRING, starting at index FROM and of length LENGTH.
  1764. If either FROM or LENGTH is negative, the length of STRING is added to it.Finsert-string
  1765. Mocklisp-compatibility insert function.
  1766. Like the function `insert' except that any argument that is a number
  1767. is converted into a string by expressing it in decimal.Fbyte-code
  1768. Fprocessp
  1769. Return t if OBJECT is a process.Fget-process
  1770. Return the process named NAME, or nil if there is none.Fget-buffer-process
  1771. Return the (or, a) process associated with BUFFER.
  1772. BUFFER may be a buffer or the name of one.Fdelete-process
  1773. Delete PROCESS: kill it and forget about it immediately.
  1774. PROCESS may be a process or the name of one, or a buffer name.Fprocess-status
  1775. Return the status of PROCESS: a symbol, one of these:
  1776. run  -- for a process that is running.
  1777. stop -- for a process stopped but continuable.
  1778. exit -- for a process that has exited.
  1779. signal -- for a process that has got a fatal signal.
  1780. open -- for a network stream connection that is open.
  1781. closed -- for a network stream connection that is closed.
  1782. nil -- if arg is a process name and no such process exists.Fprocess-exit-status
  1783. Return the exit status of PROCESS or the signal number that killed it.
  1784. If PROCESS has not yet exited or died, return 0.
  1785. If PROCESS is a net connection that was closed remotely, return 256.Fprocess-id
  1786. Return the process id of PROCESS.
  1787. This is the pid of the Unix process which PROCESS uses or talks to.
  1788. For a network connection, this value is nil.Fprocess-name
  1789. Return the name of PROCESS, as a string.
  1790. This is the name of the program invoked in PROCESS,
  1791. possibly modified to make it unique among process names.Fprocess-command
  1792. Return the command that was executed to start PROCESS.
  1793. This is a list of strings, the first string being the program executed
  1794. and the rest of the strings being the arguments given to it.
  1795. For a non-child channel, this is nil.Fset-process-buffer
  1796. Set buffer associated with PROCESS to BUFFER (a buffer, or nil).Fprocess-buffer
  1797. Return the buffer PROCESS is associated with.
  1798. Output from PROCESS is inserted in this buffer
  1799. unless PROCESS has a filter.Fprocess-mark
  1800. Return the marker for the end of the last output from PROCESS.Fset-process-filter
  1801. Give PROCESS the filter function FILTER; nil means no filter.
  1802. When a process has a filter, each time it does output
  1803. the entire string of output is passed to the filter.
  1804. The filter gets two arguments: the process and the string of output.
  1805. If the process has a filter, its buffer is not used for output.Fprocess-filter
  1806. Returns the filter function of PROCESS; nil if none.
  1807. See set-process-filter for more info on filter functions.Fset-process-sentinel
  1808. Give PROCESS the sentinel SENTINEL; nil for none.
  1809. The sentinel is called as a function when the process changes state.
  1810. It gets two arguments: the process, and a string describing the change.Fprocess-sentinel
  1811. Return the sentinel of PROCESS; nil if none.
  1812. See set-process-sentinel for more info on sentinels.Fprocess-kill-without-query
  1813. Say no query needed if PROCESS is running when Emacs is exited.
  1814. Optional second argument if non-nil says to require a query.
  1815. Value is t if a query was formerly required.Flist-processes
  1816. Display a list of all processes.
  1817. (Any processes listed as Exited or Signaled are actually eliminated
  1818. after the listing is made.)Fprocess-list
  1819. Return a list of all processes.Fstart-process
  1820. Start a program in a subprocess.  Return the process object for it.
  1821. Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS
  1822. NAME is name for process.  It is modified if necessary to make it unique.
  1823. BUFFER is the buffer or (buffer-name) to associate with the process.
  1824.  Process output goes at end of that buffer, unless you specify
  1825.  an output stream or filter function to handle the output.
  1826.  BUFFER may be also nil, meaning that this process is not associated
  1827.  with any buffer
  1828. Third arg is program file name.  It is searched for as in the shell.
  1829. Remaining arguments are strings to give program as arguments.Fopen-network-stream
  1830. Open a TCP connection for a service to a host.
  1831. Returns a subprocess-object to represent the connection.
  1832. Input and output work as for subprocesses; `delete-process' closes it.
  1833. Args are NAME BUFFER HOST SERVICE.
  1834. NAME is name for process.  It is modified if necessary to make it unique.
  1835. BUFFER is the buffer (or buffer-name) to associate with the process.
  1836.  Process output goes at end of that buffer, unless you specify
  1837.  an output stream or filter function to handle the output.
  1838.  BUFFER may be also nil, meaning that this process is not associated
  1839.  with any buffer
  1840. Third arg is name of the host to connect to.
  1841. Fourth arg SERVICE is name of the service desired, or an integer
  1842.  specifying a port number to connect to.Faccept-process-output
  1843. Allow any pending output from subprocesses to be read by Emacs.
  1844. It is read into the process' buffers or given to their filter functions.
  1845. Non-nil arg PROCESS means do not return until some output has been received
  1846. from PROCESS.Fwaiting-for-user-input-p
  1847. Returns non-NIL if emacs is waiting for input from the user.
  1848. This is intended for use by asynchronous process output filters and sentinels.Fprocess-send-region
  1849. Send current contents of region as input to PROCESS.
  1850. PROCESS may be a process name.
  1851. Called from program, takes three arguments, PROCESS, START and END.Fprocess-send-string
  1852. Send PROCESS the contents of STRING as input.
  1853. PROCESS may be a process name.Finterrupt-process
  1854. Interrupt process PROCESS.  May be process or name of one.
  1855. Nil or no arg means current buffer's process.
  1856. Second arg CURRENT-GROUP non-nil means send signal to
  1857. the current process-group of the process's controlling terminal
  1858. rather than to the process's own process group.
  1859. If the process is a shell, this means interrupt current subjob
  1860. rather than the shell.Fkill-process
  1861. Kill process PROCESS.  May be process or name of one.
  1862. See function interrupt-process for more details on usage.Fquit-process
  1863. Send QUIT signal to process PROCESS.  May be process or name of one.
  1864. See function interrupt-process for more details on usage.Fstop-process
  1865. Stop process PROCESS.  May be process or name of one.
  1866. See function interrupt-process for more details on usage.Fcontinue-process
  1867. Continue process PROCESS.  May be process or name of one.
  1868. See function interrupt-process for more details on usage.Fprocess-send-eof
  1869. Make PROCESS see end-of-file in its input.
  1870. Eof comes after any text already sent to it.
  1871. nil or no arg means current buffer's process.Vdelete-exited-processes
  1872. *Non-nil means delete processes immediately when they exit.
  1873. nil means don't delete them until `list-processes' is run.Vprocess-connection-type
  1874. Control type of device used to communicate with subprocesses.
  1875. Values are nil to use a pipe, t for a pty (or pipe if ptys not supported).
  1876. Value takes effect when `start-process' is called.Fcall-process
  1877. Call PROGRAM in separate process.
  1878. Program's input comes from file INFILE (nil means /dev/null).
  1879. Insert output in BUFFER before point; t means current buffer;
  1880.  nil for BUFFER means discard it; 0 means discard and don't wait.
  1881. Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
  1882. Remaining arguments are strings passed as command arguments to PROGRAM.
  1883. Otherwise waits for PROGRAM to terminate
  1884. and returns a numeric exit status or a signal name as a string.
  1885. If you quit, the process is killed with SIGKILL.Fcall-process-region
  1886. Send text from START to END to a process running PROGRAM.
  1887. Delete the text if DELETE is non-nil.
  1888. Insert output in BUFFER before point; t means current buffer;
  1889.  nil for BUFFER means discard it; 0 means discard and don't wait.
  1890. Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
  1891. Remaining args are passed to PROGRAM at startup as command args.
  1892. This function normally waits for the process to terminate;
  1893. if you quit, the process is killed.Vshell-file-name
  1894. *File name to load inferior shells from.
  1895. Initialized from the SHELL environment variable.Vexec-path
  1896. *List of directories to search programs to run in subprocesses.
  1897. Each element is a string (directory name) or nil (try default directory).Vexec-directory
  1898. Directory that holds programs that come with GNU Emacs,
  1899. intended for Emacs to invoke.Vprocess-environment
  1900. List of strings to append to environment of subprocesses that are started.
  1901. Each string should have the format ENVVARNAME=VALUE.Fopen-line
  1902. Insert a newline and leave point before it.
  1903. With arg, inserts that many newlines.Fsplit-line
  1904. Split current line, moving portion beyond point vertically down.Fquoted-insert
  1905. Read next input character and insert it.
  1906. Useful for inserting control characters.
  1907. You may also type up to 3 octal digits, to insert a character with that codeFdelete-indentation
  1908. Join this line to previous and fix up whitespace at join.
  1909. With argument, join this line to following line.Ffixup-whitespace
  1910. Fixup white space between objects around point.
  1911. Leave one space or none, according to the context.Fdelete-horizontal-space
  1912. Delete all spaces and tabs around point.Fjust-one-space
  1913. Delete all spaces and tabs around point, leaving one space.Fdelete-blank-lines
  1914. On blank line, delete all surrounding blank lines, leaving just one.
  1915. On isolated blank line, delete that one.
  1916. On nonblank line, delete all blank lines that follow it.Fback-to-indentation
  1917. Move point to the first non-whitespace character on this line.Fnewline-and-indent
  1918. Insert a newline, then indent according to major mode.
  1919. Indentation is done using the current indent-line-function.
  1920. In programming language modes, this is the same as TAB.
  1921. In some text modes, where TAB inserts a tab, this indents to the
  1922. specified left-margin column.Freindent-then-newline-and-indent
  1923. Reindent current line, insert newline, then indent the new line.
  1924. Indentation of both lines is done according to the current major mode,
  1925. which means that the current value of indent-line-function is called.
  1926. In programming language modes, this is the same as TAB.
  1927. In some text modes, where TAB inserts a tab, this indents to the
  1928. specified left-margin column.Fbackward-delete-char-untabify
  1929. Delete characters backward, changing tabs into spaces.
  1930. Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
  1931. Interactively, ARG is the prefix arg (default 1)
  1932. and KILLP is t if prefix arg is was specified.Fzap-to-char
  1933. Kill up to (but not including) ARG'th occurrence of CHAR.
  1934. Goes backward if ARG is negative; goes to end of buffer if CHAR not found.Fbeginning-of-buffer
  1935. Move point to the beginning of the buffer; leave mark at previous position.
  1936. With arg N, put point N/10 of the way from the true beginning.
  1937. Don't use this in Lisp programs!
  1938. (goto-char (point-min)) is faster and does not set the mark.Fend-of-buffer
  1939. Move point to the end of the buffer; leave mark at previous position.
  1940. With arg N, put point N/10 of the way from the true end.
  1941. Don't use this in Lisp programs!
  1942. (goto-char (point-max)) is faster and does not set the mark.Fmark-whole-buffer
  1943. Put point at beginning and mark at end of buffer.Fcount-lines-region
  1944. Print number of lines in the region.Fwhat-line
  1945. Print the current line number (in the buffer) of point.Fcount-lines
  1946. Return number of newlines between START and END.Fwhat-cursor-position
  1947. Print info on cursor position (on screen and within buffer).Ffundamental-mode
  1948. Major mode not specialized for anything in particular.
  1949. Other major modes are defined by comparison with this one.Feval-expression
  1950. Evaluate EXPRESSION and print value in minibuffer.
  1951. Value is also consed on to front of variable  values  's value.Fedit-and-eval-command
  1952. Prompting with PROMPT, let user edit COMMAND and eval result.
  1953. COMMAND is a Lisp expression.  Let user edit that expression in
  1954. the minibuffer, then read and evaluate the result.Frepeat-complex-command
  1955. Edit and re-evaluate last complex command, or ARGth from last.
  1956. A complex command is one which used the minibuffer.
  1957. The command is placed in the minibuffer as a Lisp form for editing.
  1958. The result is executed, repeating the command as changed.
  1959. If the command has been changed or is not the most recent previous command
  1960. it is added to the front of the command history.
  1961. Whilst editing the command, the following commands are available:
  1962. \{repeat-complex-command-map}Fnext-complex-command
  1963. Inserts the next element of `command-history' into the minibuffer.Fprevious-complex-command
  1964. Inserts the previous element of `command-history' into the minibuffer.Fgoto-line
  1965. Goto line ARG, counting from line 1 at beginning of buffer.Fundo
  1966. Undo some previous changes.
  1967. Repeat this command to undo more changes.
  1968. A numeric argument serves as a repeat count.Fshell-command
  1969. Execute string COMMAND in inferior shell; display output, if any.
  1970. Optional second arg non-nil (prefix arg, if interactive)
  1971. means insert output in current buffer after point (leave mark after it).Fshell-command-on-region
  1972. Execute string COMMAND in inferior shell with region as input.
  1973. Normally display output (if any) in temp buffer;
  1974. Prefix arg means replace the region with it.
  1975. Noninteractive args are START, END, COMMAND, FLAG.
  1976. Noninteractively FLAG means insert output in place of text from START to END,
  1977. and put point at the end, but don't alter the mark.Funiversal-argument
  1978. Begin a numeric argument for the following command.
  1979. Digits or minus sign following \[universal-argument] make up the numeric argument.
  1980. \[universal-argument] following the digits or minus sign ends the argument.
  1981. \[universal-argument] without digits or minus sign provides 4 as argument.
  1982. Repeating \[universal-argument] without digits or minus sign
  1983.  multiplies the argument by 4 each time.Fdigit-argument
  1984. Part of the numeric argument for the next command.
  1985. \[universal-argument] following digits or minus sign ends the argument.Fnegative-argument
  1986. Begin a negative numeric argument for the next command.
  1987. \[universal-argument] following digits or minus sign ends the argument.Fforward-to-indentation
  1988. Move forward ARG lines and position at first nonblank character.Fbackward-to-indentation
  1989. Move backward ARG lines and position at first nonblank character.Fkill-line
  1990. Kill the rest of the current line; if no nonblanks there, kill thru newline.
  1991. With prefix argument, kill that many lines from point.
  1992. Negative arguments kill lines backward.
  1993.  
  1994. When calling from a program, nil means "no arg",
  1995. a number counts as a prefix arg.Vkill-ring
  1996. List of killed text sequences.Vkill-ring-max
  1997. *Maximum length of kill ring before oldest elements are thrown away.Vkill-ring-yank-pointer
  1998. The tail of the kill ring whose car is the last thing yanked.Fkill-region
  1999. Kill between point and mark.
  2000. The text is deleted but saved in the kill ring.
  2001. The command \[yank] can retrieve it from there.
  2002. (If you want to kill and then yank immediately, use \[copy-region-as-kill].)
  2003.  
  2004. This is the primitive for programs to kill text (as opposed to deleting it).
  2005. Supply two arguments, character numbers indicating the stretch of text
  2006.  to be killed.
  2007. Any command that calls this function is a "kill command".
  2008. If the previous command was also a kill command,
  2009. the text killed this time appends to the text killed last time
  2010. to make one entry in the kill ring.Fcopy-region-as-kill
  2011. Save the region as if killed, but don't kill it.Fappend-next-kill
  2012. Cause following command, if kill, to append to previous kill.Frotate-yank-pointer
  2013. Rotate the yanking point in the kill ring.Fyank-pop
  2014. Replace just-yanked stretch of killed-text with a different stretch.
  2015. This command is allowed only immediately after a  yank  or a  yank-pop.
  2016. At such a time, the region contains a stretch of reinserted
  2017. previously-killed text.  yank-pop  deletes that text and inserts in its
  2018. place a different stretch of killed text.
  2019.  
  2020. With no argument, the previous kill is inserted.
  2021. With argument n, the n'th previous kill is inserted.
  2022. If n is negative, this is a more recent kill.
  2023.  
  2024. The sequence of kills wraps around, so that after the oldest one
  2025. comes the newest one.Fyank
  2026. Reinsert the last stretch of killed text.
  2027. More precisely, reinsert the stretch of killed text most recently
  2028. killed OR yanked.
  2029. With just C-U as argument, same but put point in front (and mark at end).
  2030. With argument n, reinsert the nth most recently killed stretch of killed
  2031. text.
  2032. See also the command \[yank-pop].Finsert-buffer
  2033. Insert after point the contents of BUFFER.
  2034. Puts mark after the inserted text.
  2035. BUFFER may be a buffer or a buffer name.Fappend-to-buffer
  2036. Append to specified buffer the text of the region.
  2037. It is inserted into that buffer before its point.
  2038.  
  2039. When calling from a program, give three arguments:
  2040. a buffer or the name of one, and two character numbers
  2041. specifying the portion of the current buffer to be copied.Fprepend-to-buffer
  2042. Prepend to specified buffer the text of the region.
  2043. It is inserted into that buffer after its point.
  2044.  
  2045. When calling from a program, give three arguments:
  2046. a buffer or the name of one, and two character numbers
  2047. specifying the portion of the current buffer to be copied.Fcopy-to-buffer
  2048. Copy to specified buffer the text of the region.
  2049. It is inserted into that buffer, replacing existing text there.
  2050.  
  2051. When calling from a program, give three arguments:
  2052. a buffer or the name of one, and two character numbers
  2053. specifying the portion of the current buffer to be copied.Fmark
  2054. Return this buffer's mark value as integer, or nil if no mark.
  2055. If you are using this in an editing command, you are most likely making
  2056. a mistake; see the documentation of `set-mark'.Fset-mark
  2057. Set this buffer's mark to POS.  Don't use this function!
  2058. That is to say, don't use this function unless you want
  2059. the user to see that the mark has moved, and you want the previous
  2060. mark position to be lost.
  2061.  
  2062. Normally, when a new mark is set, the old one should go on the stack.
  2063. This is why most applications should use push-mark, not set-mark.
  2064.  
  2065. Novice emacs-lisp programmers often try to use the mark for the wrong
  2066. purposes.  The mark saves a location for the user's convenience.
  2067. Most editing commands should not alter the mark.
  2068. To remember a location for internal use in the Lisp program,
  2069. store it in a Lisp variable.  Example:
  2070.  
  2071.    (let ((beg (point))) (forward-line 1) (delete-region beg (point))).Vmark-ring
  2072. The list of saved former marks of the current buffer,
  2073. most recent first.Vmark-ring-max
  2074. *Maximum size of mark ring.  Start discarding off end if gets this big.Fset-mark-command
  2075. Set mark at where point is, or jump to mark.
  2076. With no prefix argument, set mark, and push previous mark on mark ring.
  2077. With argument, jump to mark, and pop into mark off the mark ring.
  2078.  
  2079. Novice emacs-lisp programmers often try to use the mark for the wrong
  2080. purposes.  See the documentation of `set-mark' for more information.Fpush-mark
  2081. Set mark at LOCATION (point, by default) and push old mark on mark ring.
  2082. Displays "Mark set" unless the optional second arg NOMSG is non-nil.
  2083.  
  2084. Novice emacs-lisp programmers often try to use the mark for the wrong
  2085. purposes.  See the documentation of `set-mark' for more information.Fpop-mark
  2086. Pop off mark ring into the buffer's actual mark.
  2087. Does not set point.  Does nothing if mark ring is empty.Fexchange-point-and-mark
  2088. Put the mark where point is now, and point where the mark is now.Fnext-line
  2089. Move cursor vertically down ARG lines.
  2090. If there is no character in the target line exactly under the current column,
  2091. the cursor is positioned after the character in that line which spans this
  2092. column, or at the end of the line if it is not long enough.
  2093. If there is no line in the buffer after this one,
  2094. a newline character is inserted to create a line
  2095. and the cursor moves to that line.
  2096.  
  2097. The command \[set-goal-column] can be used to create
  2098. a semipermanent goal column to which this command always moves.
  2099. Then it does not try to move vertically.
  2100.  
  2101. If you are thinking of using this in a Lisp program, consider
  2102. using `forward-line' instead.  It is usually easier to use
  2103. and more reliable (no dependence on goal column, etc.).Fprevious-line
  2104. Move cursor vertically up ARG lines.
  2105. If there is no character in the target line exactly over the current column,
  2106. the cursor is positioned after the character in that line which spans this
  2107. column, or at the end of the line if it is not long enough.
  2108.  
  2109. The command \[set-goal-column] can be used to create
  2110. a semipermanent goal column to which this command always moves.
  2111. Then it does not try to move vertically.
  2112.  
  2113. If you are thinking of using this in a Lisp program, consider using
  2114. `forward-line' with negative argument instead..  It is usually easier
  2115. to use and more reliable (no dependence on goal column, etc.).Vtrack-eol
  2116. *Non-nil means vertical motion starting at the end of a line should keep to ends of lines.
  2117. This means moving to the end of each line moved onto.Vgoal-column
  2118. *Semipermanent goal column for vertical motion, as set by \[set-goal-column], or nil.Vtemporary-goal-column
  2119. Current goal column for vertical motion.
  2120. It is the column where point was at the start of current run of vertical motion commands.Fset-goal-column
  2121. Set the current horizontal position as a goal for \[next-line] and \[previous-line].
  2122. Those commands will move to this position in the line moved to
  2123. rather than trying to keep the same horizontal position.
  2124. With a non-nil argument, clears out the goal column
  2125. so that \[next-line] and \[previous-line] resume vertical motion.Ftranspose-chars
  2126. Interchange characters around point, moving forward one character.
  2127. With prefix arg ARG, effect is to take character before point
  2128. and drag it forward past ARG other characters (backward if ARG negative).
  2129. If no argument and at end of line, the previous two chars are exchanged.Ftranspose-words
  2130. Interchange words around point, leaving point at end of them.
  2131. With prefix arg ARG, effect is to take word before or around point
  2132. and drag it forward past ARG other words (backward if ARG negative).
  2133. If ARG is zero, the words around or after point and around or after mark
  2134. are interchanged.Ftranspose-sexps
  2135. Like \[transpose-words] but applies to sexps.
  2136. Does not work on a sexp that point is in the middle of
  2137. if it is a list or string.Ftranspose-lines
  2138. Exchange current line and previous line, leaving point after both.
  2139. With argument ARG, takes previous line and moves it past ARG lines.
  2140. With argument 0, interchanges line point is in with line mark is in.Vcomment-column
  2141. *Column to indent right-margin comments to.
  2142. Setting this variable automatically makes it local to the current buffer.Vcomment-start
  2143. *String to insert to start a new comment, or nil if no comment syntax defined.Vcomment-start-skip
  2144. *Regexp to match the start of a comment plus everything up to its body.
  2145. If there are any \(...\) pairs, the comment delimiter text is held to begin
  2146. at the place matched by the close of the first pair.Vcomment-end
  2147. *String to insert to end a new comment.
  2148. Should be an empty string if comments are terminated by end-of-line.Vcomment-indent-hook
  2149. Function to compute desired indentation for a comment
  2150. given the character number it starts at.Findent-for-comment
  2151. Indent this line's comment to comment column, or insert an empty comment.Fset-comment-column
  2152. Set the comment column based on point.
  2153. With no arg, set the comment column to the current column.
  2154. With just minus as arg, kill any comment on this line.
  2155. With any other arg, set comment column to indentation of the previous comment
  2156.  and then align or create a comment on this line at that column.Fkill-comment
  2157. Kill the comment on this line, if any.
  2158. With argument, kill comments on that many lines starting with this one.Fbackward-word
  2159. Move backward until encountering the end of a word.
  2160. With argument, do this that many times.
  2161. In programs, it is faster to call forward-word with negative arg.Fmark-word
  2162. Set mark arg words away from point.Fkill-word
  2163. Kill characters forward until encountering the end of a word.
  2164. With argument, do this that many times.Fbackward-kill-word
  2165. Kill characters backward until encountering the end of a word.
  2166. With argument, do this that many times.Vfill-prefix
  2167. *String for filling to insert at front of new line, or nil for none.
  2168. Setting this variable automatically makes it local to the current buffer.Vcomment-multi-line
  2169. *Non-nil means \[indent-new-comment-line] should continue same comment
  2170. on new line, with no new terminator or starter.Findent-new-comment-line
  2171. Break line at point and indent, continuing comment if presently within one.
  2172. The body of the continued comment is indented under the previous comment line.Fauto-fill-mode
  2173. Toggle auto-fill mode.
  2174. With arg, turn auto-fill mode on iff arg is positive.
  2175. In auto-fill mode, inserting a space at a column beyond  fill-column
  2176. automatically breaks the line at a previous space.Fturn-on-auto-fill
  2177. Unconditionally turn on Auto Fill mode.Fset-fill-column
  2178. Set fill-column to current column, or to argument if given.
  2179. fill-column's value is separate for each buffer.Fset-selective-display
  2180. Set selective-display to ARG; clear it if no arg.
  2181. When selective-display is a number > 0,
  2182. lines whose indentation is >= selective-display are not displayed.
  2183. selective-display's value is separate for each buffer.Foverwrite-mode
  2184. Toggle overwrite mode.
  2185. With arg, turn overwrite mode on iff arg is positive.
  2186. In overwrite mode, printing characters typed in replace existing text
  2187. on a one-for-one basis, rather than pushing it to the right.Vblink-matching-paren
  2188. *Non-nil means show matching open-paren when close-paren is inserted.Vblink-matching-paren-distance
  2189. *If non-nil, is maximum distance to search for matching open-paren
  2190. when close-paren is inserted.Fblink-matching-open
  2191. Move cursor momentarily to the beginning of the sexp before point.Fkeyboard-quit
  2192. Signal a  quit  condition.Fset-variable
  2193. Set VARIABLE to VALUE.  VALUE is a Lisp object.
  2194. When using this interactively, supply a Lisp expression for VALUE.
  2195. If you want VALUE to be a string, you must surround it with doublequotes.Vmode-specific-map
  2196. Keymap for characters following C-c.Vhelp-map
  2197. Keymap for characters following the Help key.Fhelp-with-tutorial
  2198. Select the Emacs learn-by-doing tutorial.Fdescribe-key-briefly
  2199. Print the name of the function KEY invokes.  KEY is a string.Fprint-help-return-message
  2200. Display or return message saying how to restore windows after help command.
  2201. Computes a message and applies the argument FUNCTION to it.
  2202. If FUNCTION is nil, applies `message' to it, thus printing it.Fdescribe-key
  2203. Display documentation of the function KEY invokes.  KEY is a string.Fdescribe-mode
  2204. Display documentation of current major mode.Fdescribe-distribution
  2205. Display info on how to obtain the latest version of GNU Emacs.Fdescribe-copying
  2206. Display info on how you may redistribute copies of GNU Emacs.Fdescribe-no-warranty
  2207. Display info on all the kinds of warranty Emacs does NOT have.Fview-emacs-news
  2208. Display info on recent changes to Emacs.Fview-lossage
  2209. Display last 100 input keystrokes.Fhelp-for-help
  2210. You have typed C-h, the help character.  Type a Help option:
  2211.  
  2212. A  command-apropos.   Give a substring, and see a list of commands
  2213.               (functions interactively callable) that contain
  2214.           that substring.  See also the  apropos  command.
  2215. B  describe-bindings.  Display table of all key bindings.
  2216. C  describe-key-briefly.  Type a command key sequence;
  2217.           it prints the function name that sequence runs.
  2218. F  describe-function.  Type a function name and get documentation of it.
  2219. I  info. The  info  documentation reader.
  2220. K  describe-key.  Type a command key sequence;
  2221.           it displays the full documentation.
  2222. L  view-lossage.  Shows last 100 characters you typed.
  2223. M  describe-mode.  Print documentation of current major mode,
  2224.           which describes the commands peculiar to it.
  2225. N  view-emacs-news.  Shows emacs news file.
  2226. S  describe-syntax.  Display contents of syntax table, plus explanations
  2227. T  help-with-tutorial.  Select the Emacs learn-by-doing tutorial.
  2228. V  describe-variable.  Type name of a variable;
  2229.           it displays the variable's documentation and value.
  2230. W  where-is.  Type command name; it prints which keystrokes
  2231.           invoke that command.
  2232. C-c print Emacs copying permission (General Public License).
  2233. C-d print Emacs ordering information.
  2234. C-n print news of recent Emacs changes.
  2235. C-w print information on absence of warranty for GNU Emacs.Fdescribe-function
  2236. Display the full documentation of FUNCTION (a symbol).Fdescribe-variable
  2237. Display the full documentation of VARIABLE (a symbol).Fcommand-apropos
  2238. Like apropos but lists only symbols that are names of commands
  2239. (interactively callable functions).Vdelete-auto-save-files
  2240. *Non-nil means delete a buffer's auto-save file
  2241. when the buffer is saved for real.Vmake-backup-files
  2242. *Create a backup of each file when it is saved for the first time.
  2243. This can be done by renaming the file or by copying.
  2244.  
  2245. Renaming means that Emacs renames the existing file so that it is a
  2246. backup file, then writes the buffer into a new file.  Any other names
  2247. that the old file had will now refer to the backup file.
  2248. The new file is owned by you and its group is defaulted.
  2249.  
  2250. Copying means that Emacs copies the existing file into the backup file,
  2251. then writes the buffer on top of the existing file.  Any other names
  2252. that the old file had will now refer to the new (edited) file.
  2253. The file's owner and group are unchanged.
  2254.  
  2255. The choice of renaming or copying is controlled by the variables
  2256. backup-by-copying, backup-by-copying-when-linked and
  2257. backup-by-copying-when-mismatch.Vbackup-by-copying
  2258. *Non-nil means always use copying to create backup files.
  2259. See documentation of variable  make-backup-files.Vbackup-by-copying-when-linked
  2260. *Non-nil means use copying to create backups for files with multiple names.
  2261. This causes the alternate names to refer to the latest version as edited.
  2262. This variable is relevant only if  backup-by-copying  is nil.Vbackup-by-copying-when-mismatch
  2263. *Non-nil means create backups by copying if this preserves owner or group.
  2264. Renaming may still be used (subject to control of other variables)
  2265. when it would not result in changing the owner or group of the file;
  2266. that is, for files which are owned by you and whose group matches
  2267. the default for a new file created there by you.
  2268. This variable is relevant only if  backup-by-copying  is nil.Vbuffer-offer-save
  2269. *Non-nil in a buffer means offer to save the buffer on exit
  2270. even if the buffer is not visiting a file.  Automatically local in
  2271. all buffers.Vfile-precious-flag
  2272. *Non-nil means protect against I/O errors while saving files.
  2273. Some modes set this non-nil in particular buffers.Vversion-control
  2274. *Control use of version numbers for backup files.
  2275. t means make numeric backup versions unconditionally.
  2276. nil means make them for files that have some already.
  2277. never means do not make them.Vdired-kept-versions
  2278. *When cleaning directory, number of versions to keep.Vtrim-versions-without-asking
  2279. *If true, deletes excess backup versions silently.
  2280. Otherwise asks confirmation.Vkept-old-versions
  2281. *Number of oldest versions to keep when a new numbered backup is made.Vkept-new-versions
  2282. *Number of newest versions to keep when a new numbered backup is made.
  2283. Includes the new backup.  Must be > 0Vrequire-final-newline
  2284. *t says silently put a newline at the end whenever a file is saved.
  2285. Non-nil but not t says ask user whether to add a newline in each such case.
  2286. nil means don't add newlines.Vauto-save-default
  2287. *t says by default do auto-saving of every file-visiting buffer.Vauto-save-visited-file-name
  2288. *t says auto-save a buffer in the file it is visiting, when practical.
  2289. Normally auto-save files are written under other names.Vsave-abbrevs
  2290. *Non-nil means save word abbrevs too when files are saved.
  2291. Loading an abbrev file sets this to t.Vfind-file-run-dired
  2292. *Non-nil says run dired if find-file is given the name of a directory.Vfind-file-not-found-hooks
  2293. List of functions to be called for find-file on nonexistent file.
  2294. These functions are called as soon as the error is detected.
  2295. buffer-file-name is already set up.
  2296. The functions are called in the order given,
  2297. until one of them returns non-nil.Vfind-file-hooks
  2298. List of functions to be called after a buffer is loaded from a file.
  2299. The buffer's local variables (if any) will have been processed before the
  2300. functions are called.Vwrite-file-hooks
  2301. List of functions to be called before writing out a buffer to a file.
  2302. If one of them returns non-nil, the file is considered already written
  2303. and the rest are not called.Vinhibit-local-variables
  2304. *Non-nil means query before obeying a file's local-variables list.
  2305. This applies when the local-variables list is scanned automatically
  2306. after you find a file.  If you explicitly request such a scan with
  2307. \[normal-mode], there is no query, regardless of this variable.Vignore-local-eval
  2308. *Non-nil means ignore the "variable" `eval' in a file's local variables.
  2309. This applies when the local-variables list is scanned automatically
  2310. after you find a file.  If you explicitly request such a scan with
  2311. \[normal-mode], there is no query, regardless of this variable.Fpwd
  2312. Show the current default directory.Fcd
  2313. Make DIR become the current buffer's default directory.Fload-file
  2314. Load the file FILE of Lisp code.Fload-library
  2315. Load the library named LIBRARY.
  2316. This is an interface to the function `load'.Fswitch-to-buffer-other-window
  2317. Select buffer BUFFER in another window.Ffind-file
  2318. Edit file FILENAME.
  2319. Switch to a buffer visiting file FILENAME,
  2320. creating one if none already exists.Ffind-file-other-window
  2321. Edit file FILENAME, in another window.
  2322. May create a new window, or reuse an existing one;
  2323. see the function display-buffer.Ffind-file-read-only
  2324. Edit file FILENAME but don't save without confirmation.
  2325. Like find-file but marks buffer as read-only.Ffind-alternate-file
  2326. Find file FILENAME, select its buffer, kill previous buffer.
  2327. If the current buffer now contains an empty file that you just visited
  2328. (presumably by mistake), use this command to visit the file you really want.Fcreate-file-buffer
  2329. Create a suitably named buffer for visiting FILENAME, and return it.
  2330. FILENAME (sans directory) is used unchanged if that name is free;
  2331. otherwise a string <2> or <3> or ... is appended to get an unused name.Vautomount-dir-prefix
  2332. Regexp to match the automounter prefix in a directory name.Ffind-file-noselect
  2333. Read file FILENAME into a buffer and return the buffer.
  2334. If a buffer exists visiting FILENAME, return that one,
  2335. but verify that the file has not changed since visited or saved.
  2336. The buffer is not selected, just returned to the caller.Fafter-find-file
  2337. Called after finding a file and by the default revert function.
  2338. Sets buffer mode, parses local variables.
  2339. Optional args ERROR and WARN: ERROR non-nil means there was an
  2340. error in reading the file.  WARN non-nil means warn if there
  2341. exists an auto-save file more recent than the visited file.
  2342. Finishes by calling the functions in find-file-hooks.Fnormal-mode
  2343. Choose the major mode for this buffer automatically.
  2344. Also sets up any specified local variables of the file.
  2345. Uses the visited file name, the -*- line, and the local variables spec.
  2346.  
  2347. This function is called automatically from `find-file'.  In that case,
  2348. if `inhibit-local-variables' is non-`nil' we require confirmation before
  2349. processing a local variables spec.  If you run `normal-mode' explicitly,
  2350. confirmation is never required.Fset-auto-mode
  2351. Select major mode appropriate for current buffer.
  2352. May base decision on visited file name (See variable  auto-mode-list)
  2353. or on buffer contents (-*- line or local variables spec), but does not look
  2354. for the "mode:" local variable.  For that, use  hack-local-variables.Fhack-local-variables
  2355. Parse, and bind or evaluate as appropriate, any local variables
  2356. for current buffer.Fset-visited-file-name
  2357. Change name of file visited in current buffer to FILENAME.
  2358. The next time the buffer is saved it will go in the newly specified file.
  2359. nil or empty string as argument means make buffer not be visiting any file.
  2360. Remember to delete the initial contents of the minibuffer
  2361. if you wish to pass an empty string as the argument.Fwrite-file
  2362. Write current buffer into file FILENAME.
  2363. Makes buffer visit that file, and marks it not modified.Fbackup-buffer
  2364. Make a backup of the disk file visited by the current buffer, if appropriate.
  2365. This is normally done before saving the buffer the first time.
  2366. If the value is non-nil, it is the result of `file-modes' on the original file;
  2367. this means that the caller, after saving the buffer, should change the modes
  2368. of the new file to agree with the old modes.Ffile-name-sans-versions
  2369. Return FILENAME sans backup versions or strings.
  2370. This is a separate procedure so your site-init or startup file can
  2371. redefine it.Fmake-backup-file-name
  2372. Create the non-numeric backup file name for FILE.
  2373. This is a separate function so you can redefine it for customization.Fbackup-file-name-p
  2374. Return non-nil if FILE is a backup file name (numeric or not).
  2375. This is a separate function so you can redefine it for customization.
  2376. You may need to redefine file-name-sans-versions as well.Ffind-backup-file-name
  2377. Find a file name for a backup file, and suggestions for deletions.
  2378. Value is a list whose car is the name for the backup file
  2379.  and whose cdr is a list of old versions to consider deleting now.Ffile-nlinks
  2380. Return number of names file FILENAME has.Fsave-buffer
  2381. Save current buffer in visited file if modified.  Versions described below.
  2382.  
  2383. By default, makes the previous version into a backup file
  2384.  if previously requested or if this is the first save.
  2385. With 1 or 3 \[universal-argument]'s, marks this version
  2386.  to become a backup when the next save is done.
  2387. With 2 or 3 \[universal-argument]'s,
  2388.  unconditionally makes the previous version into a backup file.
  2389. With argument of 0, never makes the previous version into a backup file.
  2390.  
  2391. If a file's name is FOO, the names of its numbered backup versions are
  2392.  FOO.~i~ for various integers i.  A non-numbered backup file is called FOO~.
  2393. Numeric backups (rather than FOO~) will be made if value of
  2394.  `version-control' is not the atom `never' and either there are already
  2395.  numeric versions of the file being backed up, or `version-control' is
  2396.  non-nil.
  2397. We don't want excessive versions piling up, so there are variables
  2398.  `kept-old-versions', which tells Emacs how many oldest versions to keep,
  2399.  and `kept-new-versions', which tells how many newest versions to keep.
  2400.  Defaults are 2 old versions and 2 new.
  2401. `dired-kept-versions' controls dired's clean-directory (.) command.
  2402. If `trim-versions-without-asking' is nil, system will query user
  2403.  before trimming versions.  Otherwise it does it silently.Fdelete-auto-save-file-if-necessary
  2404. Delete the auto-save filename for the current buffer (if it has one)
  2405. if variable  delete-auto-save-files  is non-nil.Fbasic-save-buffer
  2406. Save the current buffer in its visited file, if it has been modified.Fsave-some-buffers
  2407. Save some modified file-visiting buffers.  Asks user about each one.
  2408. Optional argument (the prefix) non-nil means save all with no questions.
  2409. Optional second argument EXITING means ask about certain non-file buffers
  2410.  as well as about file buffers.Fnot-modified
  2411. Mark current buffer as unmodified, not needing to be saved.Ftoggle-read-only
  2412. Change whether this buffer is visiting its file read-only.Finsert-file
  2413. Insert contents of file FILENAME into buffer after point.
  2414. Set mark after the inserted text.Fappend-to-file
  2415. Append the contents of the region to the end of file FILENAME.
  2416. When called from a function, expects three arguments,
  2417. START, END and FILENAME.  START and END are buffer positions
  2418. saying what text to write.Vrevert-buffer-function
  2419. Function to use to revert this buffer, or nil to do the default.Frevert-buffer
  2420. Replace the buffer text with the text of the visited file on disk.
  2421. This undoes all changes since the file was visited or saved.
  2422. If latest auto-save file is more recent than the visited file,
  2423. asks user whether to use that instead.
  2424. First argument (optional) non-nil means don't offer to use auto-save file.
  2425.  This is the prefix arg when called interactively.
  2426.  
  2427. Second argument (optional) non-nil means don't ask for confirmation at all.
  2428.  
  2429. If revert-buffer-function's value is non-nil, it is called to do the work.Frecover-file
  2430. Visit file FILE, but get contents from its last auto-save file.Fkill-some-buffers
  2431. For each buffer, ask whether to kill it.Fauto-save-mode
  2432. Toggle auto-saving of contents of current buffer.
  2433. With arg, turn auto-saving on if arg is positive, else off.Frename-auto-save-file
  2434. Adjust current buffer's auto save file name for current conditions.
  2435. Also rename any existing auto save file.Fmake-auto-save-file-name
  2436. Return file name to use for auto-saves of current buffer.
  2437. Does not consider auto-save-visited-file-name; that is checked
  2438. before calling this function.
  2439. You can redefine this for customization.
  2440. See also auto-save-file-name-p.Fauto-save-file-name-p
  2441. Return non-nil if FILENAME can be yielded by make-auto-save-file-name.
  2442. FILENAME should lack slashes.
  2443. You can redefine this for customization.Vlist-directory-brief-switches
  2444. *Switches for list-directory to pass to `ls' for brief listing,Vlist-directory-verbose-switches
  2445. *Switches for list-directory to pass to `ls' for verbose listing,Flist-directory
  2446. Display a list of files in or matching DIRNAME, a la `ls'.
  2447. DIRNAME is globbed by the shell if necessary.
  2448. Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
  2449. Actions controlled by variables list-directory-brief-switches
  2450.  and list-directory-verbose-switches.Fsave-buffers-kill-emacs
  2451. Offer to save each buffer, then kill this Emacs fork.
  2452. With prefix arg, silently save all file-visiting buffers, then kill.Vctl-x-4-map
  2453. Keymap for subcommands of C-x 4Fsplit-window-vertically
  2454. Split current window into two windows, one above the other.
  2455. This window becomes the uppermost of the two, and gets
  2456. ARG lines.  No arg means split equally.Fsplit-window-horizontally
  2457. Split current window into two windows side by side.
  2458. This window becomes the leftmost of the two, and gets
  2459. ARG columns.  No arg means split equally.Fenlarge-window-horizontally
  2460. Make current window ARG columns wider.Fshrink-window-horizontally
  2461. Make current window ARG columns narrower.Findent-according-to-mode
  2462. Indent line in proper way for current major mode.Findent-for-tab-command
  2463. Indent line in proper way for current major mode.Findent-rigidly
  2464. Indent all lines starting in the region sideways by ARG columns.
  2465. Called from a program, takes three arguments, START, END and ARG.Vindent-region-function
  2466. Function which is short cut to indent each line in region with Tab.
  2467. nil means really call Tab on each line.Findent-region
  2468. Indent each nonblank line in the region.
  2469. With no argument, indent each line with Tab.
  2470. With argument COLUMN, indent each line to that column.
  2471. Called from a program, takes three args: START, END and COLUMN.Findent-relative-maybe
  2472. Indent a new line like previous nonblank line.Findent-relative
  2473. Space out to under next indent point in previous nonblank line.
  2474. An indent point is a non-whitespace character following whitespace.
  2475. If the previous nonblank line has no indent points beyond
  2476. the column point starts at,  tab-to-tab-stop  is done instead.Vtab-stop-list
  2477. *List of tab stop positions used by tab-to-tab-stops.Vedit-tab-stops-map
  2478. Keymap used in edit-tab-stops.Vedit-tab-stops-buffer
  2479. Buffer whose tab stops are being edited--in case
  2480. the variable tab-stop-list is local in that buffer.Fedit-tab-stops
  2481. Edit the tab stops used by tab-to-tab-stop.
  2482. Creates a buffer *Tab Stops* containing text describing the tab stops.
  2483. A colon indicates a column where there is a tab stop.
  2484. You can add or remove colons and then do C-c C-c to make changes take effect.Fedit-tab-stops-note-changes
  2485. Put edited tab stops into effect.Ftab-to-tab-stop
  2486. Insert spaces or tabs to next defined tab-stop column.
  2487. The variable tab-stop-list is a list of columns at which there are tab stops.
  2488. Use \[edit-tab-stops] to edit them interactively.Vmode-line-buffer-identification
  2489. Mode-line control for identifying the buffer being displayed.
  2490. Its default value is "Emacs: %17b".  Major modes that edit things
  2491. other than ordinary files may change this (e.g. Info, Dired,...)Vmode-line-process
  2492. Mode-line control for displaying info on process status.
  2493. Normally nil in most modes, since there is no process to display.Vmode-line-modified
  2494. Mode-line control for displaying whether current buffer is modified.Vminor-mode-alist
  2495. Alist saying how to show minor modes in the mode line.
  2496. Each element looks like (VARIABLE STRING);
  2497. STRING is included in the mode line iff VARIABLE's value is non-nil.Vfunction-keymap
  2498. Keymap containing definitions of keypad and function keys.Vparagraph-start
  2499. *Regexp for beginning of a line that starts OR separates paragraphs.Vparagraph-separate
  2500. *Regexp for beginning of a line that separates paragraphs.
  2501. If you change this, you may have to change paragraph-start also.Vsentence-end
  2502. *Regexp describing the end of a sentence.
  2503. All paragraph boundaries also end sentences, regardless.Vpage-delimiter
  2504. *Regexp describing line-beginnings that separate pages.Vcase-replace
  2505. *Non-nil means query-replace should preserve case in replacements.Vindent-line-function
  2506. Function to indent current line.Vonly-global-abbrevs
  2507. *t means user plans to use global abbrevs only.
  2508. Makes the commands to define mode-specific abbrevs define global ones instead.Vcompile-command
  2509. *Last shell command used to do a compilation; default for next compilation.Vdired-listing-switches
  2510. *Switches passed to ls for Dired.  MUST contain the `l' option.
  2511. MUST NOT contain the `F, `s' or `i'' option.Vlpr-switches
  2512. *List of strings to pass as extra switch args to lpr when it is invoked.Vtags-file-name
  2513. *File name of tag table.
  2514. To switch to a new tag table, setting this variable is sufficient.
  2515. Use the `etags' program to make a tag table file.Vshell-prompt-pattern
  2516. *Regexp used by Newline command in shell mode to match subshell prompts.
  2517. Anything from beginning of line up to the end of what this pattern matches
  2518. is deemed to be prompt, and is not reexecuted.Vledit-save-files
  2519. *Non-nil means Ledit should save files before transferring to Lisp.Vledit-go-to-lisp-string
  2520. *Shell commands to execute to resume Lisp job.Vledit-go-to-liszt-string
  2521. *Shell commands to execute to resume Lisp compiler job.Vdisplay-time-day-and-date
  2522. *Non-nil means M-x display-time should display day and date as well as time.Vauto-mode-alist
  2523. Alist of filename patterns vs corresponding major mode functions.
  2524. Each element looks like (REGEXP . FUNCTION).
  2525. Visiting a file whose name matches REGEXP causes FUNCTION to be called.Vctl-x-4-map
  2526. Keymap for subcommands of C-x 4Fadd-change-log-entry
  2527. Find change log file and add an entry for today.
  2528. First arg (interactive prefix) non-nil means prompt for user name and site.
  2529. Second arg is file name of change log.
  2530. Optional third arg OTHER-WINDOW non-nil means visit in other window.Fadd-change-log-entry-other-window
  2531. Find change log file in other window, and add an entry for today.F`
  2532. (` FORM) Expands to a form that will generate FORM.
  2533. FORM is `almost quoted' -- see backquote.el for a description.Fbyte-compile-file
  2534. Compile a file of Lisp code named FILENAME into a file of byte code.
  2535. The output file's name is made by appending "c" to the end of FILENAME.Fbyte-recompile-directory
  2536. Recompile every .el file in DIRECTORY that needs recompilation.
  2537. This is if a .elc file exists but is older than the .el file.
  2538. If the .elc file does not exist, offer to compile the .el file
  2539. only if a prefix argument has been specified.Fbatch-byte-compile
  2540. Runs byte-compile-file on the files remaining on the command line.
  2541. Must be used only with -batch, and kills emacs on completion.
  2542. Each file will be processed even if an error occurred previously.
  2543. For example, invoke "emacs -batch -f batch-byte-compile $emacs/ ~/*.el"Fcalendar
  2544. Display three-month calendar in another window.
  2545. The three months appear side by side, with the current month in the middle
  2546. surrounded by the previous and next months.  The cursor is put on today's date.
  2547.  
  2548. An optional prefix argument ARG causes the calendar displayed to be
  2549. ARG months in the future if ARG is positive or in the past if ARG is
  2550. negative; in this case the cursor goes on the first day of the month.
  2551.  
  2552. The Gregorian calendar is assumed.
  2553.  
  2554. After preparing the calendar window, the hooks calendar-hook are run
  2555. when the calendar is for the current month--that is, the was no prefix
  2556. argument.  If the calendar is for a future or past month--that is, there
  2557. was a prefix argument--the hooks offset-calendar-hook are run.  Thus, for
  2558. example, setting calendar-hooks to 'star-date will cause today's date to be
  2559. replaced by asterisks to highlight it in the window.Flist-command-history
  2560. List history of commands typed to minibuffer.
  2561. The number of commands listed is controlled by  list-command-history-max.
  2562. Calls value of  list-command-history-filter  (if non-nil) on each history
  2563. element to judge if that element should be excluded from the list.
  2564.  
  2565. The buffer is left in Command History mode.Fcommand-history-mode
  2566. Major mode for examining commands from  command-history.
  2567. The number of commands listed is controlled by  list-command-history-max.
  2568. The command history is filtered by  list-command-history-filter  if non-nil.
  2569.  
  2570. Like Emacs-Lisp Mode except that characters do not insert themselves and
  2571. Digits provide prefix arguments.  Tab does not indent.
  2572. \{command-history-map}
  2573. Calls the value of  command-history-hook  if that is non-nil
  2574. The Command History listing is recomputed each time this mode is
  2575. invoked.Frepeat-matching-complex-command
  2576. Edit and re-evaluate complex command with name matching PATTERN.
  2577. Matching occurrences are displayed, most recent first, until you
  2578. select a form for evaluation.  If PATTERN is empty (or nil), every form
  2579. in the command history is offered.  The form is placed in the minibuffer
  2580. for editing and the result is evaluated.Fcompare-windows
  2581. Compare text in current window with text in next window.
  2582. Compares the text starting at point in each window,
  2583. moving over text in each one as far as they match.Fcompile
  2584. Compile the program including the current buffer.  Default: run `make'.
  2585. Runs COMMAND, a shell command, in a separate process asynchronously
  2586. with output going to the buffer *compilation*.
  2587. You can then use the command \[next-error] to find the next error message
  2588. and move to the source code that caused it.Fgrep
  2589. Run grep, with user-specified args, and collect output in a buffer.
  2590. While grep runs asynchronously, you can use the \[next-error] command
  2591. to find the text that grep hits refer to.Fnext-error
  2592. Visit next compilation error message and corresponding source code.
  2593. This operates on the output from the \[compile] command.
  2594. If all preparsed error messages have been processed,
  2595. the error message buffer is checked for new ones.
  2596. A non-nil argument (prefix arg, if interactive)
  2597. means reparse the error message buffer and start at the first error.Fdabbrev-expand
  2598. Expand previous word "dynamically".
  2599. Expands to the most recent, preceding word for which this is a prefix.
  2600. If no suitable preceding word is found, words following point are considered.
  2601.  
  2602. A positive prefix argument, N, says to take the Nth backward DISTINCT
  2603. possibility.  A negative argument says search forward.  The variable
  2604. dabbrev-backward-only may be used to limit the direction of search to
  2605. backward if set non-nil.
  2606.  
  2607. If the cursor has not moved from the end of the previous expansion and
  2608. no argument is given, replace the previously-made expansion
  2609. with the next possible expansion not yet tried.Fdebug
  2610. Enter debugger.  Returns if user says "continue".
  2611. Arguments are mainly for use when this is called
  2612.  from the internals of the evaluator.
  2613. You may call with no args, or you may
  2614.  pass nil as the first arg and any other args you like.
  2615.  In that case, the list of args after the first will 
  2616.  be printed into the backtrace buffer.Fcancel-debug-on-entry
  2617. Undoes effect of debug-on-entry on FUNCTION.Fdebug-on-entry
  2618. Request FUNCTION to invoke debugger each time it is called.
  2619. If the user continues, FUNCTION's execution proceeds.
  2620. Works by modifying the definition of FUNCTION,
  2621. which must be written in Lisp, not predefined.
  2622. Use `cancel-debug-on-entry' to cancel the effect of this command.
  2623. Redefining FUNCTION also does that.Fdired
  2624. "Edit" directory DIRNAME--delete, rename, print, etc. some files in it.
  2625. Dired displays a list of files in DIRNAME.
  2626. You can move around in it with the usual commands.
  2627. You can flag files for deletion with C-d
  2628. and then delete them by typing `x'.
  2629. Type `h' after entering dired for more info.Fdired-other-window
  2630. "Edit" directory DIRNAME.  Like \[dired] but selects in another window.Fdired-noselect
  2631. Like M-x dired but returns the dired buffer as value, does not select it.Fdissociated-press
  2632. Dissociate the text of the current buffer.
  2633. Output goes in buffer named *Dissociation*,
  2634. which is redisplayed each time text is added to it.
  2635. Every so often the user must say whether to continue.
  2636. If ARG is positive, require ARG chars of continuity.
  2637. If ARG is negative, require -ARG words of continuity.
  2638. Default is 2.Fdoctor
  2639. Switch to *doctor* buffer and start giving psychotherapy.Fdisassemble
  2640. Print disassembled code for OBJECT on (optional) STREAM.
  2641. OBJECT can be a function name, lambda expression or any function object
  2642. returned by SYMBOL-FUNCTION.  If OBJECT is not already compiled, we will
  2643. compile it (but not redefine it).Felectric-buffer-list
  2644. Vaguely like ITS lunar select buffer;
  2645. combining typeoutoid buffer listing with menuoid buffer selection.
  2646.  
  2647. This pops up a buffer describing the set of emacs buffers.
  2648. If the very next character typed is a space then the buffer list
  2649.  window disappears.
  2650.  
  2651. Otherwise, one may move around in the buffer list window, marking
  2652.  buffers to be selected, saved or deleted.
  2653.  
  2654. To exit and select a new buffer, type Space when the cursor is on the
  2655.  appropriate line of the buffer-list window.
  2656.  
  2657. Other commands are much like those of buffer-menu-mode.
  2658.  
  2659. Calls value of  electric-buffer-menu-mode-hook  on entry if non-nil.
  2660.  
  2661. \{electric-buffer-menu-mode-map}Felectric-command-history
  2662. Major mode for examining and redoing commands from  command-history.
  2663. The number of command listed is controlled by  list-command-history-max.
  2664. The command history is filtered by  list-command-history-filter  if non-nil.
  2665. Combines typeout Command History list window with menu like selection
  2666. of an expression from the history for re-evaluation in the *original* buffer.
  2667.  
  2668. The history displayed is filtered by  list-command-history-filter  if non-nil.
  2669.  
  2670. This pops up a window with the Command History listing.  If the very
  2671. next character typed is Space, the listing is killed and the previous
  2672. window configuration is restored.  Otherwise, you can browse in the
  2673. Command History with  Return  moving down and  Delete  moving up, possibly
  2674. selecting an expression to be redone with Space or quitting with `Q'.
  2675.  
  2676. Like Emacs-Lisp Mode except that characters do not insert themselves and
  2677. Tab and linefeed do not indent.  Instead these commands are provided:
  2678. Space or !    edit then evaluate current line in history inside
  2679.            the ORIGINAL buffer which invoked this mode.
  2680.            The previous window configuration is restored
  2681.            unless the invoked command changes it.
  2682. C-c C-c, C-], Q    Quit and restore previous window configuration.
  2683. LFD, RET    Move to the next line in the history.
  2684. DEL        Move to the previous line in the history.
  2685. ?        Provides a complete list of commands.
  2686.  
  2687. Calls the value of  electric-command-history-hook  if that is non-nil
  2688. The Command History listing is recomputed each time this mode is invoked.Fedt-emulation-on
  2689. Begin emulating DEC's EDT editor.
  2690. Certain keys are rebound; including nearly all keypad keys.
  2691. Use \[edt-emulation-off] to undo all rebindings except the keypad keys.
  2692. Note that this function does not work if called directly from the .emacs file.
  2693. Instead, the .emacs file should do (setq term-setup-hook 'edt-emulation-on)
  2694. Then this function will be called at the time when it will work.Ffortran-mode
  2695. Major mode for editing fortran code.
  2696. Tab indents the current fortran line correctly. 
  2697. `do' statements must not share a common `continue'.
  2698.  
  2699. Type `;?' or `;\[help-command]' to display a list of built-in abbrevs for Fortran keywords.
  2700.  
  2701. Variables controlling indentation style and extra features:
  2702.  
  2703.  comment-start
  2704.     Normally nil in Fortran mode.  If you want to use comments
  2705.     starting with `!', set this to the string "!".
  2706.  fortran-do-indent
  2707.     Extra indentation within do blocks.  (default 3)
  2708.  fortran-if-indent
  2709.     Extra indentation within if blocks.  (default 3)
  2710.  fortran-continuation-indent
  2711.     Extra indentation appled to continuation statements.  (default 5)
  2712.  fortran-comment-line-column
  2713.     Amount of indentation for text within full-line comments. (default 6)
  2714.  fortran-comment-indent-style
  2715.     nil    means don't change indentation of text in full-line comments,
  2716.     fixed  means indent that text at column fortran-comment-line-column
  2717.     relative  means indent at fortran-comment-line-column beyond the
  2718.            indentation for a line of code.
  2719.     Default value is fixed.
  2720.  fortran-comment-indent-char
  2721.     Character to be inserted instead of space for full-line comment
  2722.     indentation.  (default is a space)
  2723.  fortran-minimum-statement-indent
  2724.     Minimum indentation for fortran statements. (default 6)
  2725.  fortran-line-number-indent
  2726.     Maximum indentation for line numbers.  A line number will get
  2727.     less than this much indentation if necessary to avoid reaching
  2728.     column 5.  (default 1)
  2729.  fortran-check-all-num-for-matching-do
  2730.     Non-nil causes all numbered lines to be treated as possible 'continue'
  2731.     statements.  (default nil)
  2732.  fortran-continuation-char
  2733.     character to be inserted in column 5 of a continuation line.
  2734.     (default $)
  2735.  fortran-comment-region
  2736.     String inserted by \[fortran-comment-region] at start of each line in 
  2737.     region.  (default "c$$$")
  2738.  fortran-electric-line-number
  2739.     Non-nil causes line number digits to be moved to the correct column 
  2740.     as typed.  (default t)
  2741.  fortran-startup-message
  2742.     Set to nil to inhibit message first time fortran-mode is used.
  2743.  
  2744. Turning on Fortran mode calls the value of the variable fortran-mode-hook 
  2745. with no args, if that value is non-nil.
  2746. \{fortran-mode-map}Fftp-find-file
  2747. FTP to HOST to get FILE, logging in as USER with password PASSWORD.
  2748. Interactively, HOST and FILE are specified by reading a string with
  2749.  a colon character separating the host from the filename.
  2750. USER and PASSWORD are defaulted from the values used when
  2751.  last ftping from HOST (unless password-remembering is disabled).
  2752.  Supply a password of the symbol `t' to override this default
  2753.  (interactively, this is done by giving a prefix arg)Fftp-write-file
  2754. FTP to HOST to write FILE, logging in as USER with password PASSWORD.
  2755. Interactively, HOST and FILE are specified by reading a string with colon
  2756. separating the host from the filename.
  2757. USER and PASSWORD are defaulted from the values used when
  2758.  last ftping from HOST (unless password-remembering is disabled).
  2759.  Supply a password of the symbol `t' to override this default
  2760.  (interactively, this is done by giving a prefix arg)Fgdb
  2761. Run gdb on program FILE in buffer *gdb-FILE*.
  2762. The directory containing FILE becomes the initial working directory
  2763. and source-file directory for GDB.  If you wish to change this, use
  2764. the GDB commands `cd DIR' and `directory'.Fset-gosmacs-bindings
  2765. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  2766. Use \[set-gnu-bindings] to restore previous global bindings.Fhanoi
  2767. Towers of Hanoi diversion.  Argument is number of rings.FHelper-help
  2768. Provide help for current mode.FHelper-describe-bindings
  2769. Describe local key bindings of current mode.Finfo
  2770. Enter Info, the documentation browser.FInfo-tagify
  2771. Create or update Info-file tag table in current buffer.FInfo-validate
  2772. Check current buffer for validity as an Info file.
  2773. Check that every node pointer points to an existing node.FInfo-split
  2774. Split an info file into an indirect file plus bounded-size subfiles.
  2775. Each subfile will be up to 50000 characters plus one node.
  2776.  
  2777. To use this command, first visit a large Info file that has a tag table.
  2778. The buffer is modified into a (small) indirect info file
  2779. which should be saved in place of the original visited file.
  2780.  
  2781. The subfiles are written in the same directory the original file is in,
  2782. with names generated by appending `-' and a number to the original file name.
  2783.  
  2784. The indirect file still functions as an Info file, but it contains
  2785. just the tag table and a directory of subfiles.Fbatch-info-validate
  2786. Runs  Info-validate  on the files remaining on the command line.
  2787. Must be used only with -batch, and kills emacs on completion.
  2788. Each file will be processed even if an error occurred previously.
  2789. For example, invoke "emacs -batch -f batch-info-validate $info/ ~/*.info"Fledit-mode
  2790. Major mode for editing text and stuffing it to a Lisp job.
  2791. Like Lisp mode, plus these special commands:
  2792.   M-C-d    -- record defun at or after point
  2793.        for later transmission to Lisp job.
  2794.   M-C-r -- record region for later transmission to Lisp job.
  2795.   C-x z -- transfer to Lisp job and transmit saved text.
  2796.   M-C-c -- transfer to Liszt (Lisp compiler) job
  2797.        and transmit saved text.
  2798. \{ledit-mode-map}
  2799. To make Lisp mode automatically change to Ledit mode,
  2800. do (setq lisp-mode-hook 'ledit-from-lisp-mode)Flpr-buffer
  2801. Print buffer contents as with Unix command `lpr'.
  2802. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Fprint-buffer
  2803. Print buffer contents as with Unix command `lpr -p'.
  2804. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Flpr-region
  2805. Print region contents as with Unix command `lpr'.
  2806. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Fprint-region
  2807. Print region contents as with Unix command `lpr -p'.
  2808. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Finsert-kbd-macro
  2809. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  2810. Second argument KEYS non-nil means also record the keys it is on.
  2811.  (This is the prefix argument, when calling interactively.)
  2812.  
  2813. This Lisp code will, when executed, define the kbd macro with the
  2814. same definition it has now.  If you say to record the keys,
  2815. the Lisp code will also rebind those keys to the macro.
  2816. Only global key bindings are recorded since executing this Lisp code
  2817. always makes global bindings.
  2818.  
  2819. To save a kbd macro, visit a file of Lisp code such as your ~/.emacs,
  2820. use this command, and then save the file.Fkbd-macro-query
  2821. Query user during kbd macro execution.
  2822. With prefix argument, enters recursive edit,
  2823.  reading keyboard commands even within a kbd macro.
  2824.  You can give different commands each time the macro executes.
  2825. Without prefix argument, reads a character.  Your options are:
  2826.  Space -- execute the rest of the macro.
  2827.  DEL -- skip the rest of the macro; start next repetition.
  2828.  C-d -- skip rest of the macro and don't repeat it any more.
  2829.  C-r -- enter a recursive edit, then on exit ask again for a character
  2830.  C-l -- redisplay screen and ask again.Fname-last-kbd-macro
  2831. Assign a name to the last keyboard macro defined.
  2832. One arg, a symbol, which is the name to define.
  2833. The symbol's function definition becomes the keyboard macro string.
  2834. Such a "function" cannot be called from Lisp, but it is a valid command
  2835. definition for the editor command loop.Fmake-command-summary
  2836. Make a summary of current key bindings in the buffer *Summary*.
  2837. Previous contents of that buffer are killed first.Fdefine-mail-alias
  2838. Define NAME as a mail-alias that translates to DEFINITION.Fmanual-entry
  2839. Display the Unix manual entry for TOPIC.
  2840. TOPIC is either the title of the entry, or has the form TITLE(SECTION)
  2841. where SECTION is the desired section of the manual, as in `tty(4)'.Fmh-rmail
  2842. Inc(orporate) new mail (no arg) or scan a MH mail box (arg given).
  2843. This front end uses the MH mail system, which uses different conventions
  2844. from the usual mail system.Fmh-smail
  2845. Send mail using the MH mail system.Fconvert-mocklisp-buffer
  2846. Convert buffer of Mocklisp code to real Lisp that GNU Emacs can run.Fmodula-2-mode
  2847. This is a mode intended to support program development in Modula-2.
  2848. All control constructs of Modula-2 can be reached by typing
  2849. Control-C followed by the first character of the construct.
  2850. \{m2-mode-map}
  2851.   Control-c b begin         Control-c c case
  2852.   Control-c d definition    Control-c e else
  2853.   Control-c f for           Control-c h header
  2854.   Control-c i if            Control-c m module
  2855.   Control-c l loop          Control-c o or
  2856.   Control-c p procedure     Control-c Control-w with
  2857.   Control-c r record        Control-c s stdio
  2858.   Control-c t type          Control-c u until
  2859.   Control-c v var           Control-c w while
  2860.   Control-c x export        Control-c y import
  2861.   Control-c { begin-comment Control-c } end-comment
  2862.   Control-c Control-z suspend-emacs     Control-c Control-t toggle
  2863.   Control-c Control-c compile           Control-x ` next-error
  2864.   Control-c Control-l link
  2865.  
  2866.    m2-indent controls the number of spaces for each indentation.
  2867.    m2-compile-command holds the command to compile a Modula-2 program.
  2868.    m2-link-command holds the command to link a Modula-2 program.Fenable-command
  2869. Allow COMMAND to be executed without special confirmation from now on.
  2870. The user's .emacs file is altered so that this will apply
  2871. to future sessions.Fdisable-command
  2872. Require special confirmation to execute COMMAND from now on.
  2873. The user's .emacs file is altered so that this will apply
  2874. to future sessions.Fnroff-mode
  2875. Major mode for editing text intended for nroff to format.
  2876. \{nroff-mode-map}
  2877. Turning on Nroff mode runs text-mode-hook, then nroff-mode-hook.
  2878. Also, try nroff-electric-mode, for automatically inserting
  2879. closing requests for requests that are used in matched pairs.Flist-options
  2880. Display a list of Emacs user options, with values and documentation.Fedit-options
  2881. Edit a list of Emacs user option values.
  2882. Selects a buffer containing such a list,
  2883. in which there are commands to set the option values.
  2884. Type \[describe-mode] in that buffer for a list of commands.Foutline-mode
  2885. Set major mode for editing outlines with selective display.
  2886. Headings are lines which start with asterisks: one for major headings,
  2887. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  2888.  
  2889. Body text or subheadings under a heading can be made temporarily
  2890. invisible, or visible again.  Invisible lines are attached to the end 
  2891. of the heading, so they move with it, if the line is killed and yanked
  2892. back.  A heading with text hidden under it is marked with an ellipsis (...).
  2893.  
  2894. Commands:
  2895. C-c C-n   outline-next-visible-heading      move by visible headings
  2896. C-c C-p   outline-previous-visible-heading
  2897. C-c C-f   outline-forward-same-level        similar but skip subheadings
  2898. C-c C-b   outline-backward-same-level
  2899. C-c C-u   outline-up-heading            move from subheading to heading
  2900.  
  2901. Meta-x hide-body    make all text invisible (not headings).
  2902. Meta-x show-all        make everything in buffer visible.
  2903.  
  2904. The remaining commands are used when point is on a heading line.
  2905. They apply to some of the body or subheadings of that heading.
  2906. C-c C-h   hide-subtree    make body and subheadings invisible.
  2907. C-c C-s   show-subtree    make body and subheadings visible.
  2908. C-c C-i   show-children    make direct subheadings visible.
  2909.          No effect on body, or subheadings 2 or more levels down.
  2910.          With arg N, affects subheadings N levels down.
  2911. M-x hide-entry       make immediately following body invisible.
  2912. M-x show-entry       make it visible.
  2913. M-x hide-leaves       make body under heading and under its subheadings invisible.
  2914.              The subheadings remain visible.
  2915. M-x show-branches  make all subheadings at all levels visible.
  2916.  
  2917. The variable outline-regexp can be changed to control what is a heading.
  2918. A line is a heading if outline-regexp matches something at the
  2919. beginning of the line.  The longer the match, the deeper the level.
  2920.  
  2921. Turning on outline mode calls the value of text-mode-hook and then of
  2922. outline-mode-hook, if they are non-nil.Fedit-picture
  2923. Switch to Picture mode, in which a quarter-plane screen model is used.
  2924. Printing characters replace instead of inserting themselves with motion
  2925. afterwards settable by these commands:
  2926.   C-c <      Move left after insertion.
  2927.   C-c >      Move right after insertion.
  2928.   C-c ^      Move up after insertion.
  2929.   C-c .      Move down after insertion.
  2930.   C-c `      Move northwest (nw) after insertion.
  2931.   C-c '      Move northeast (ne) after insertion.
  2932.   C-c /      Move southwest (sw) after insertion.
  2933.   C-c \   Move southeast (se) after insertion.
  2934. The current direction is displayed in the mode line.  The initial
  2935. direction is right.  Whitespace is inserted and tabs are changed to
  2936. spaces when required by movement.  You can move around in the buffer
  2937. with these commands:
  2938.   C-p      Move vertically to SAME column in previous line.
  2939.   C-n      Move vertically to SAME column in next line.
  2940.   C-e      Move to column following last non-whitespace character.
  2941.   C-f      Move right inserting spaces if required.
  2942.   C-b      Move left changing tabs to spaces if required.
  2943.   C-c C-f Move in direction of current picture motion.
  2944.   C-c C-b Move in opposite direction of current picture motion.
  2945.   Return  Move to beginning of next line.
  2946. You can edit tabular text with these commands:
  2947.   M-Tab      Move to column beneath (or at) next interesting charecter.
  2948.         `Indents' relative to a previous line.
  2949.   Tab      Move to next stop in tab stop list.
  2950.   C-c Tab Set tab stops according to context of this line.
  2951.         With ARG resets tab stops to default (global) value.
  2952.         See also documentation of variable    picture-tab-chars
  2953.         which defines "interesting character".  You can manually
  2954.         change the tab stop list with command \[edit-tab-stops].
  2955. You can manipulate text with these commands:
  2956.   C-d      Clear (replace) ARG columns after point without moving.
  2957.   C-c C-d Delete char at point - the command normally assigned to C-d.
  2958.   Delete  Clear (replace) ARG columns before point, moving back over them.
  2959.   C-k      Clear ARG lines, advancing over them.     The cleared
  2960.         text is saved in the kill ring.
  2961.   C-o      Open blank line(s) beneath current line.
  2962. You can manipulate rectangles with these commands:
  2963.   C-c C-k Clear (or kill) a rectangle and save it.
  2964.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  2965.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  2966.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  2967.   \[copy-rectangle-to-register]   Copies a rectangle to a register.
  2968.   \[advertised-undo]   Can undo effects of rectangle overlay commands
  2969.         commands if invoked soon enough.
  2970. You can return to the previous mode with:
  2971.   C-c C-c Which also strips trailing whitespace from every line.
  2972.         Stripping is suppressed by supplying an argument.
  2973.  
  2974. Entry to this mode calls the value of  edit-picture-hook  if non-nil.
  2975.  
  2976. Note that Picture mode commands will work outside of Picture mode, but
  2977. they are not defaultly assigned to keys.Fprolog-mode
  2978. Major mode for editing Prolog code for Prologs.
  2979. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  2980. Commands:
  2981. \{prolog-mode-map}
  2982. Entry to this mode calls the value of prolog-mode-hook
  2983. if that value is non-nil.Frun-prolog
  2984. Run an inferior Prolog process, input and output via buffer *prolog*.Fclear-rectangle
  2985. Blank out rectangle with corners at point and mark.
  2986. The text previously in the region is overwritten by the blanks.Fdelete-rectangle
  2987. Delete (don't save) text in rectangle with point and mark as corners.
  2988. The same range of columns is deleted in each line
  2989. starting with the line where the region begins
  2990. and ending with the line where the region ends.Fdelete-extract-rectangle
  2991. Return and delete contents of rectangle with corners at START and END.
  2992. Value is list of strings, one for each line of the rectangle.Fextract-rectangle
  2993. Return contents of rectangle with corners at START and END.
  2994. Value is list of strings, one for each line of the rectangle.Finsert-rectangle
  2995. Insert text of RECTANGLE with upper left corner at point.
  2996. RECTANGLE's first line is inserted at point,
  2997. its second line is inserted at a point vertically under point, etc.
  2998. RECTANGLE should be a list of strings.Fkill-rectangle
  2999. Delete rectangle with corners at point and mark; save as last killed one.
  3000. Calling from program, supply two args START and END, buffer positions.
  3001. But in programs you might prefer to use delete-extract-rectangle.Fopen-rectangle
  3002. Blank out rectangle with corners at point and mark, shifting text right.
  3003. The text previously in the region is not overwritten by the blanks,
  3004. but insted winds up to the right of the rectangle.Fyank-rectangle
  3005. Yank the last killed rectangle with upper left corner at point.Frnews
  3006. Read USENET news for groups for which you are a member and add or
  3007. delete groups.
  3008. You can reply to articles posted and send articles to any group.
  3009.  
  3010. Type \[describe-mode] once reading news to get a list of rnews commands.Fnews-post-news
  3011. Begin editing a new USENET news article to be posted.
  3012. Type \[describe-mode] once editing the article to get a list of commands.Frmail
  3013. Read and edit incoming mail.
  3014. Moves messages into file named by  rmail-file-name  (a babyl format file)
  3015.  and edits that file in RMAIL Mode.
  3016. Type \[describe-mode] once editing that file, for a list of RMAIL commands.
  3017.  
  3018. May be called with filename as argument;
  3019. then performs rmail editing on that file,
  3020. but does not copy any new mail into the file.Frmail-input
  3021. Run RMAIL on file FILENAME.Vrmail-dont-reply-to-names
  3022. *A regular expression specifying names to prune in replying to messages.
  3023. nil means don't reply to yourself.Vrmail-default-dont-reply-to-names
  3024. A regular expression specifying part of the value of the default value of
  3025. the variable `rmail-dont-reply-to-names', for when the user does not set
  3026. `rmail-dont-reply-to-names' explicitly.  (The other part of the default
  3027. value is the user's name.)
  3028. It is useful to set this variable in the site customisation file.Vrmail-primary-inbox-list
  3029. *List of files which are inboxes for user's primary mail file ~/RMAIL.
  3030. `nil' means the default, which is ("~/mbox" "/usr/spool/mail/$USER")
  3031. (the second name varies depending on the operating system).Vrmail-ignored-headers
  3032. *Gubbish header fields one would rather not see.Vrmail-delete-after-output
  3033. *Non-nil means automatically delete a message that is copied to a file.Frun-scheme
  3034. Run an inferior Scheme process.
  3035. Output goes to the buffer `*scheme*'.
  3036. With argument, asks for a command line.Fscheme-mode
  3037. Major mode for editing Scheme code.
  3038. Editing commands are similar to those of lisp-mode.
  3039.  
  3040. In addition, if an inferior Scheme process is running, some additional
  3041. commands will be defined, for evaluating expressions and controlling
  3042. the interpreter, and the state of the process will be displayed in the
  3043. modeline of all Scheme buffers.  The names of commands that interact
  3044. with the Scheme process start with "xscheme-".  For more information
  3045. see the documentation for xscheme-interaction-mode.
  3046.  
  3047. Commands:
  3048. Delete converts tabs to spaces as it moves back.
  3049. Blank lines separate paragraphs.  Semicolons start comments.
  3050. \{scheme-mode-map}
  3051. Entry to this mode calls the value of scheme-mode-hook
  3052. if that value is non-nil.Fscribe-mode
  3053. Major mode for editing files of Scribe (a text formatter) source.
  3054. Scribe-mode is similar text-mode, with a few extra commands added.
  3055. \{scribe-mode-map}
  3056.  
  3057. Interesting variables:
  3058.  
  3059. scribe-fancy-paragraphs
  3060.   Non-nil makes Scribe mode use a different style of paragraph separation.
  3061.  
  3062. scribe-electric-quote
  3063.   Non-nil makes insert of double quote use `` or '' depending on context.
  3064.  
  3065. scribe-electric-parenthesis
  3066.   Non-nil makes an open-parenthesis char (one of `([<{')
  3067.   automatically insert its close if typed after an @Command form.Vsend-mail-function
  3068. Function to call to send the current buffer as mail.
  3069. The headers are delimited by a string found in mail-header-separator.Vmail-self-blind
  3070. *Non-nil means insert BCC to self in messages to be sent.
  3071. This is done when the message is initialized,
  3072. so you can remove or alter the BCC field to override the default.Vmail-interactive
  3073. *Non-nil means when sending a message wait for and display errors.
  3074. nil means let mailer mail back a message to report errors.Vmail-yank-ignored-headers
  3075. Delete these headers from old message when it's inserted in a reply.Vmail-header-separator
  3076. *Line used to separate headers from text in messages being composed.Vmail-archive-file-name
  3077. *Name of file to write all outgoing messages in, or nil for none.Vmail-aliases
  3078. Alias of mail address aliases,
  3079. or t meaning should be initialized from .mailrc.Fmail-other-window
  3080. Like `mail' command, but display mail buffer in another window.Fmail
  3081. Edit a message to be sent.  Argument means resume editing (don't erase).
  3082. Returns with message buffer selected; value t if message freshly initialized.
  3083. While editing message, type C-c C-c to send the message and exit.
  3084.  
  3085. Various special commands starting with C-c are available in sendmail mode
  3086. to move to message header fields:
  3087. \{mail-mode-map}
  3088.  
  3089. If mail-self-blind is non-nil, a BCC to yourself is inserted
  3090. when the message is initialized.
  3091.  
  3092. If mail-default-reply-to is non-nil, it should be an address (a string);
  3093. a Reply-to: field with that address is inserted.
  3094.  
  3095. If mail-archive-file-name is non-nil, an FCC field with that file name
  3096. is inserted.
  3097.  
  3098. If mail-setup-hook is bound, its value is called with no arguments
  3099. after the message is initialized.  It can add more default fields.
  3100.  
  3101. When calling from a program, the second through fifth arguments
  3102.  TO, SUBJECT, IN-REPLY-TO and CC specify if non-nil
  3103.  the initial contents of those header fields.
  3104.  These arguments should not have final newlines.
  3105. The sixth argument REPLYBUFFER is a buffer whose contents
  3106.  should be yanked if the user types C-c C-y.Vmail-use-rfc822
  3107. *If non-nil, use a full, hairy RFC822 parser on mail addresses.
  3108. Otherwise, (the default) use a smaller, somewhat faster and
  3109. often-correct parser.Fserver-start
  3110. Allow this Emacs process to be a server for client processes.
  3111. This starts a server communications subprocess through which
  3112. client "editors" can send your editing commands to this Emacs job.
  3113. To use the server, set up the program `etc/emacsclient' in the
  3114. Emacs distribution as your standard "editor".
  3115.  
  3116. Prefix arg means just kill any existing server communications subprocess.Frun-lisp
  3117. Run an inferior Lisp process, input and output via buffer *lisp*.Fshell
  3118. Run an inferior shell, with I/O through buffer *shell*.
  3119. If buffer exists but shell process is not running, make new shell.
  3120. Program used comes from variable explicit-shell-file-name,
  3121.  or (if that is nil) from the ESHELL environment variable,
  3122.  or else from SHELL if there is no ESHELL.
  3123. If a file ~/.emacs_SHELLNAME exists, it is given as initial input
  3124.  (Note that this may lose due to a timing error if the shell
  3125.   discards input when it starts up.)
  3126. The buffer is put in shell-mode, giving commands for sending input
  3127. and controlling the subjobs of the shell.  See shell-mode.
  3128. See also variable shell-prompt-pattern.
  3129.  
  3130. The shell file name (sans directories) is used to make a symbol name
  3131. such as `explicit-csh-arguments'.  If that symbol is a variable,
  3132. its value is used as a list of arguments when invoking the shell.
  3133. Otherwise, one argument `-i' is passed to the shell.
  3134.  
  3135. Note that many people's .cshrc files unconditionally clear the prompt.
  3136. If yours does, you will probably want to change it.Fsort-lines
  3137. Sort lines in region alphabetically; argument means descending order.
  3138. Called from a program, there are three arguments:
  3139. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-paragraphs
  3140. Sort paragraphs in region alphabetically; argument means descending order.
  3141. Called from a program, there are three arguments:
  3142. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-pages
  3143. Sort pages in region alphabetically; argument means descending order.
  3144. Called from a program, there are three arguments:
  3145. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-numeric-fields
  3146. Sort lines in region numerically by the ARGth field of each line.
  3147. Fields are separated by whitespace and numbered from 1 up.
  3148. Specified field must contain a number in each line of the region.
  3149. With a negative arg, sorts by the -ARG'th field, in reverse order.
  3150. Called from a program, there are three arguments:
  3151. FIELD, BEG and END.  BEG and END specify region to sort.Fsort-fields
  3152. Sort lines in region lexicographically by the ARGth field of each line.
  3153. Fields are separated by whitespace and numbered from 1 up.
  3154. With a negative arg, sorts by the -ARG'th field, in reverse order.
  3155. Called from a program, there are three arguments:
  3156. FIELD, BEG and END.  BEG and END specify region to sort.Fsort-columns
  3157. Sort lines in region alphabetically by a certain range of columns.
  3158. For the purpose of this command, the region includes
  3159. the entire line that point is in and the entire line the mark is in.
  3160. The column positions of point and mark bound the range of columns to sort on.
  3161. A prefix argument means sort into reverse order.
  3162.  
  3163. Note that sort-columns uses the sort utility program and therefore
  3164. cannot work on text containing TAB characters.  Use M-x untabify
  3165. to convert tabs to spaces before sorting.Fsort-regexp-fields
  3166. Sort the region lexicographically as specifed by RECORD-REGEXP and KEY.
  3167. RECORD-REGEXP specifies the textual units which should be sorted.
  3168.   For example, to sort lines RECORD-REGEXP would be "^.*$"
  3169. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  3170.   is to be used for sorting.
  3171.   If it is "\digit" then the digit'th "\(...\)" match field from
  3172.   RECORD-REGEXP is used.
  3173.   If it is "\&" then the whole record is used.
  3174.   Otherwise, it is a regular-expression for which to search within the record.
  3175. If a match for KEY is not found within a record then that record is ignored.
  3176.  
  3177. With a negative prefix arg sorts in reverse order.
  3178.  
  3179. For example: to sort lines in the region by the first word on each line
  3180.  starting with the letter "f",
  3181.  RECORD-REGEXP would be "^.*$" and KEY "\<f\w*\>"Fspell-buffer
  3182. Check spelling of every word in the buffer.
  3183. For each incorrect word, you are asked for the correct spelling
  3184. and then put into a query-replace to fix some or all occurrences.
  3185. If you do not want to change a word, just give the same word
  3186. as its "correct" spelling; then the query replace is skipped.Fspell-region
  3187. Like spell-buffer but applies only to region.
  3188. From program, applies from START to END.Fspell-word
  3189. Check spelling of word at or before point.
  3190. If it is not correct, ask user for the correct spelling
  3191. and query-replace the entire buffer to substitute it.Fspell-string
  3192. Check spelling of string supplied as argument.Funtabify
  3193. Convert all tabs in region to multiple spaces, preserving columns.
  3194. The variable tab-width controls the action.Ftabify
  3195. Convert multiple spaces in region to tabs when possible.
  3196. A group of spaces is partially replaced by tabs
  3197. when this can be done without changing the column they end at.
  3198. The variable tab-width controls the action.Ffind-tag
  3199. Find tag (in current tag table) whose name contains TAGNAME.
  3200.  Selects the buffer that the tag is contained in
  3201. and puts point at its definition.
  3202.  If TAGNAME is a null string, the expression in the buffer
  3203. around or before point is used as the tag name.
  3204.  If second arg NEXT is non-nil (interactively, with prefix arg),
  3205. searches for the next tag in the tag table
  3206. that matches the tagname used in the previous find-tag.
  3207.  
  3208. See documentation of variable tags-file-name.Ffind-tag-other-window
  3209. Find tag (in current tag table) whose name contains TAGNAME.
  3210.  Selects the buffer that the tag is contained in in another window
  3211. and puts point at its definition.
  3212.  If TAGNAME is a null string, the expression in the buffer
  3213. around or before point is used as the tag name.
  3214.  If second arg NEXT is non-nil (interactively, with prefix arg),
  3215. searches for the next tag in the tag table
  3216. that matches the tagname used in the previous find-tag.
  3217.  
  3218. See documentation of variable tags-file-name.Flist-tags
  3219. Display list of tags in file FILE.
  3220. FILE should not contain a directory spec
  3221. unless it has one in the tag table.Fnext-file
  3222. Select next file among files in current tag table.
  3223. Non-nil argument (prefix arg, if interactive)
  3224. initializes to the beginning of the list of files in the tag table.Ftags-apropos
  3225. Display list of all tags in tag table REGEXP matches.Ftags-loop-continue
  3226. Continue last \[tags-search] or \[tags-query-replace] command.
  3227. Used noninteractively with non-nil argument
  3228. to begin such a command.  See variable tags-loop-form.Ftag-table-files
  3229. Return a list of files in the current tag table.
  3230. File names returned are absolute.Ftags-query-replace
  3231. Query-replace-regexp FROM with TO through all files listed in tag table.
  3232. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  3233. If you exit (C-G or ESC), you can resume the query-replace
  3234. with the command \[tags-loop-continue].
  3235.  
  3236. See documentation of variable tags-file-name.Ftags-search
  3237. Search through all files listed in tag table for match for REGEXP.
  3238. Stops when a match is found.
  3239. To continue searching for next match, use command \[tags-loop-continue].
  3240.  
  3241. See documentation of variable tags-file-name.Fvisit-tags-table
  3242. Tell tags commands to use tag table file FILE.
  3243. FILE should be the name of a file created with the `etags' program.
  3244. A directory name is ok too; it means file TAGS in that directory.Ftelnet
  3245. Open a network login connection to host named HOST (a string).
  3246. Communication with HOST is recorded in a buffer *HOST-telnet*.
  3247. Normally input is edited in Emacs and sent a line at a time.Fterminal-emulator
  3248. Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
  3249. ARGS is a list of argument-strings.  Remaining arguments are WIDTH and HEIGHT.
  3250. BUFFER's contents are made an image of the display generated by that program,
  3251. and any input typed when BUFFER is the current Emacs buffer is sent to that
  3252. program an keyboard input.
  3253.  
  3254. Interactively, BUFFER defaults to "*terminal*" and PROGRAM and ARGS
  3255. are parsed from an input-string using your usual shell.
  3256. WIDTH and HEIGHT are determined from the size of the current window
  3257. -- WIDTH will be one less than the window's width, HEIGHT will be its height.
  3258.  
  3259. To switch buffers and leave the emulator, or to give commands
  3260. to the emulator itself (as opposed to the program running under it),
  3261. type Control-^.  The following character is an emulator command.
  3262. Type Control-^ twice to send it to the subprogram.
  3263. This escape character may be changed using the variable `terminal-escape-char'.
  3264.  
  3265. `Meta' characters may not currently be sent through the terminal emulator.
  3266.  
  3267. Here is a list of some of the variables which control the behaviour
  3268. of the emulator -- see their documentation for more information:
  3269. terminal-escape-char, terminal-scrolling, terminal-more-processing,
  3270. terminal-redisplay-interval.
  3271.  
  3272. This function calls the value of terminal-mode-hook if that exists
  3273. and is non-nil after the terminal buffer has been set up and the
  3274. subprocess started.
  3275.  
  3276. Presently with `termcap' only; if somebody sends us code to make this
  3277. work with `terminfo' we will try to use it.Flatex-mode
  3278. Major mode for editing files of input for LaTeX.
  3279. Makes $ and } display the characters they match.
  3280. Makes " insert `` when it seems to be the beginning of a quotation,
  3281. and '' when it appears to be the end; it inserts " only after a \.
  3282.  
  3283. Use \[TeX-region] to run LaTeX on the current region, plus the preamble
  3284. copied from the top of the file (containing \documentstyle, etc.),
  3285. running LaTeX under a special subshell.  \[TeX-buffer] does the whole buffer.
  3286. \[TeX-print] prints the .dvi file made by either of these.
  3287.  
  3288. Use \[validate-TeX-buffer] to check buffer for paragraphs containing
  3289. mismatched $'s or braces.
  3290.  
  3291. Special commands:
  3292. \{TeX-mode-map}
  3293.  
  3294. Mode variables:
  3295. TeX-directory
  3296.     Directory in which to create temporary files for TeX jobs
  3297.     run by \[TeX-region] or \[TeX-buffer].
  3298. TeX-dvi-print-command
  3299.     Command string used by \[TeX-print] to print a .dvi file.
  3300. TeX-show-queue-command
  3301.     Command string used by \[TeX-show-print-queue] to show the print
  3302.     queue that \[TeX-print] put your job on.
  3303.  
  3304. Entering LaTeX mode calls the value of text-mode-hook,
  3305. then the value of TeX-mode-hook, and then the value
  3306. of LaTeX-mode-hook.Fplain-tex-mode
  3307. Major mode for editing files of input for plain TeX.
  3308. Makes $ and } display the characters they match.
  3309. Makes " insert `` when it seems to be the beginning of a quotation,
  3310. and '' when it appears to be the end; it inserts " only after a \.
  3311.  
  3312. Use \[TeX-region] to run TeX on the current region, plus a "header"
  3313. copied from the top of the file (containing macro definitions, etc.),
  3314. running TeX under a special subshell.  \[TeX-buffer] does the whole buffer.
  3315. \[TeX-print] prints the .dvi file made by either of these.
  3316.  
  3317. Use \[validate-TeX-buffer] to check buffer for paragraphs containing
  3318. mismatched $'s or braces.
  3319.  
  3320. Special commands:
  3321. \{TeX-mode-map}
  3322.  
  3323. Mode variables:
  3324. TeX-directory
  3325.     Directory in which to create temporary files for TeX jobs
  3326.     run by \[TeX-region] or \[TeX-buffer].
  3327. TeX-dvi-print-command
  3328.     Command string used by \[TeX-print] to print a .dvi file.
  3329. TeX-show-queue-command
  3330.     Command string used by \[TeX-show-print-queue] to show the print
  3331.     queue that \[TeX-print] put your job on.
  3332.  
  3333. Entering plain-TeX mode calls the value of text-mode-hook,
  3334. then the value of TeX-mode-hook, and then the value
  3335. of plain-TeX-mode-hook.Ftex-mode
  3336. Major mode for editing files of input for TeX or LaTeX.
  3337. Trys to intuit whether this file is for plain TeX or LaTeX and
  3338. calls plain-tex-mode or latex-mode.  If it cannot be determined
  3339. (e.g., there are no commands in the file), the value of
  3340. TeX-default-mode is used.Ftexinfo-mode
  3341. Major mode for editing texinfo files.
  3342. These are files that are input for TEX and also to be turned
  3343. into Info files by \[texinfo-format-buffer].
  3344. These files must be written in a very restricted and
  3345. modified version of TEX input format.
  3346.  
  3347. As for editing commands, like text-mode except for syntax table,
  3348. which is set up so expression commands skip texinfo bracket groups.Ftexinfo-format-buffer
  3349. Process the current buffer as texinfo code, into an Info file.
  3350. The Info file output is generated in a buffer
  3351. visiting the Info file names specified in the @setfilename command.
  3352.  
  3353. Non-nil argument (prefix, if interactive) means don't make tag table
  3354. and don't split the file if large.  You can use Info-tagify and
  3355. Info-split to do these manually.Ftexinfo-format-region
  3356. Convert the the current region of the Texinfo file to Info format.
  3357. This lets you see what that part of the file will look like in Info.
  3358. The command is bound to \[texinfo-format-region].  The text that is
  3359. converted to Info is stored in a temporary buffer.Fbatch-texinfo-format
  3360. Runs  texinfo-format-buffer  on the files remaining on the command line.
  3361. Must be used only with -batch, and kills emacs on completion.
  3362. Each file will be processed even if an error occurred previously.
  3363. For example, invoke
  3364.   "emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo".Fdisplay-time
  3365. Display current time and load level in mode line of each buffer.
  3366. Updates automatically every minute.
  3367. If display-time-day-and-date is non-nil, the current day and date
  3368. are displayed as well.Funderline-region
  3369. Underline all nonblank characters in the region.
  3370. Works by overstriking underscores.
  3371. Called from program, takes two arguments START and END
  3372. which specify the range to operate on.Fununderline-region
  3373. Remove all underlining (overstruck underscores) in the region.
  3374. Called from program, takes two arguments START and END
  3375. which specify the range to operate on.Fask-user-about-lock
  3376. Ask user what to do when he wants to edit FILE but it is locked by USER.
  3377. This function has a choice of three things to do:
  3378.   do (signal 'buffer-file-locked (list FILE USER))
  3379.     to refrain from editing the file
  3380.   return t (grab the lock on the file)
  3381.   return nil (edit the file even though it is locked).
  3382. You can rewrite it to use any criterion you like to choose which one to do.Fask-user-about-supersession-threat
  3383. Ask a user who is about to modify an obsolete buffer what to do.
  3384. This function has two choices: it can return, in which case the modification
  3385. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  3386. in which case the proposed buffer modification will not be made.
  3387. You can rewrite this to use any criterion you like to choose which one to do.Fvi-mode
  3388. Major mode that acts like the `vi' editor.
  3389. The purpose of this mode is to provide you the combined power of vi (namely,
  3390. the "cross product" effect of commands and repeat last changes) and Emacs.
  3391.  
  3392. This command redefines nearly all keys to look like vi commands.
  3393. It records the previous major mode, and any vi command for input
  3394. (`i', `a', `s', etc.) switches back to that mode.
  3395. Thus, ordinary Emacs (in whatever major mode you had been using)
  3396. is "input" mode as far as vi is concerned.
  3397.  
  3398. To get back into vi from "input" mode, you must issue this command again.
  3399. Therefore, it is recommended that you assign it to a key.
  3400.  
  3401. Major differences between this mode and real vi :
  3402.  
  3403. * Limitations and unsupported features
  3404.   - Search patterns with line offset (e.g. /pat/+3 or /pat/z.) are
  3405.     not supported.
  3406.   - Ex commands are not implemented; try ':' to get some hints.
  3407.   - No line undo (i.e. the 'U' command), but multi-undo is a standard feature.
  3408.  
  3409. * Modifications
  3410.   - The stopping positions for some point motion commands (word boundary,
  3411.     pattern search) are slightly different from standard 'vi'.
  3412.     Also, no automatic wrap around at end of buffer for pattern searching.
  3413.   - Since changes are done in two steps (deletion then insertion), you need
  3414.     to undo twice to completely undo a change command.  But this is not needed
  3415.     for undoing a repeated change command.
  3416.   - No need to set/unset 'magic', to search for a string with regular expr
  3417.     in it just put a prefix arg for the search commands.  Replace cmds too.
  3418.   - ^R is bound to incremental backward search, so use ^L to redraw screen.
  3419.  
  3420. * Extensions
  3421.   - Some standard (or modified) Emacs commands were integrated, such as
  3422.     incremental search, query replace, transpose objects, and keyboard macros.
  3423.   - In command state, ^X links to the 'ctl-x-map', and ESC can be linked to
  3424.     esc-map or set undefined.  These can give you the full power of Emacs.
  3425.   - See vi-com-map for those keys that are extensions to standard vi, e.g.
  3426.     `vi-name-last-change-or-macro', `vi-verify-spelling', `vi-locate-def',
  3427.     `vi-mark-region', and 'vi-quote-words'.  Some of them are quite handy.
  3428.   - Use \[vi-switch-mode] to switch among different modes quickly.
  3429.   
  3430. Syntax table and abbrevs while in vi mode remain as they were in Emacs.Fview-file
  3431. View FILE in View mode, returning to previous buffer when done.
  3432. The usual Emacs commands are not available; instead,
  3433. a special set of commands (mostly letters and punctuation)
  3434. are defined for moving around in the buffer.
  3435. Space scrolls forward, Delete scrolls backward.
  3436. For list of all View commands, type ? or h while viewing.
  3437.  
  3438. Calls the value of  view-hook  if that is non-nil.Fview-buffer
  3439. View BUFFER in View mode, returning to previous buffer when done.
  3440. The usual Emacs commands are not available; instead,
  3441. a special set of commands (mostly letters and punctuation)
  3442. are defined for moving around in the buffer.
  3443. Space scrolls forward, Delete scrolls backward.
  3444. For list of all View commands, type ? or h while viewing.
  3445.  
  3446. Calls the value of  view-hook  if that is non-nil.Fview-mode
  3447. Major mode for viewing text but not editing it.
  3448. Letters do not insert themselves.  Instead these commands are provided.
  3449. Most commands take prefix arguments.  Commands dealing with lines
  3450. default to "scroll size" lines (initially size of window).
  3451. Search commands default to a repeat count of one.
  3452. M-< or <    move to beginning of buffer.
  3453. M-> or >    move to end of buffer.
  3454. C-v or Space    scroll forward lines.
  3455. M-v or DEL    scroll backward lines.
  3456. CR or LF    scroll forward one line (backward with prefix argument).
  3457. z        like Space except set number of lines for further
  3458.            scrolling commands to scroll by.
  3459. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  3460. =        prints the current line number.
  3461. g        goes to line given by prefix argument.
  3462. / or M-C-s    searches forward for regular expression
  3463. \ or M-C-r    searches backward for regular expression.
  3464. n        searches forward for last regular expression.
  3465. p        searches backward for last regular expression.
  3466. C-@ or .    set the mark.
  3467. x        exchanges point and mark.
  3468. C-s or s    do forward incremental search.
  3469. C-r or r    do reverse incremental search.
  3470. @ or '        return to mark and pops mark ring.
  3471.           Mark ring is pushed at start of every
  3472.           successful search and when jump to line to occurs.
  3473.           The mark is set on jump to buffer start or end.
  3474. ? or h        provide help message (list of commands).
  3475. C-h        provides help (list of commands or description of a command).
  3476. C-n        moves down lines vertically.
  3477. C-p        moves upward lines vertically.
  3478. C-l        recenters the screen.
  3479. q or C-c    exit view-mode and return to previous buffer.
  3480.  
  3481. Entry to this mode calls the value of  view-hook  if non-nil.
  3482. \{view-mode-map}Fvip-mode
  3483. Begin emulating the vi editor.  This is distinct from `vi-mode'.
  3484. This emulator has different capabilities from the `vi-mode' emulator.
  3485. See the text at the beginning of the source file .../lisp/vip.el
  3486. in the Emacs distribution.Fyow
  3487. Return or display a Zippy quotationFpsychoanalyze-pinhead
  3488. Zippy goes to the analyst.Fisearch-forward
  3489. Do incremental search forward.
  3490. As you type characters, they add to the search string and are found.
  3491. Type Delete to cancel characters from end of search string.
  3492. Type ESC to exit, leaving point at location found.
  3493. Type C-s to search again forward, C-r to search again backward.
  3494. Type C-w to yank word from buffer onto end of search string and search for it.
  3495. Type C-y to yank rest of line onto end of search string, etc.
  3496. Type C-q to quote control character to search for it.
  3497. Other control and meta characters terminate the search
  3498.  and are then executed normally.
  3499. The above special characters are mostly controlled by parameters;
  3500.  do M-x apropos on search-.*-char to find them.
  3501. C-g while searching or when search has failed
  3502.  cancels input back to what has been found successfully.
  3503. C-g when search is successful aborts and moves point to starting point.Fisearch-forward-regexp
  3504. Do incremental search forward for regular expression.
  3505. Like ordinary incremental search except that your input
  3506. is treated as a regexp.  See \[isearch-forward] for more info.Fisearch-backward
  3507. Do incremental search backward.
  3508. See \[isearch-forward] for more information.Fisearch-backward-regexp
  3509. Do incremental search backward for regular expression.
  3510. Like ordinary incremental search except that your input
  3511. is treated as a regexp.  See \[isearch-forward] for more info.Vsearch-last-string
  3512. Last string search for by a non-regexp search command.
  3513. This does not include direct calls to the primitive search functions,
  3514. and does not include searches that are aborted.Vsearch-last-regexp
  3515. Last string searched for by a regexp search command.
  3516. This does not include direct calls to the primitive search functions,
  3517. and does not include searches that are aborted.Vsearch-repeat-char
  3518. *Character to repeat incremental search forwards.Vsearch-reverse-char
  3519. *Character to repeat incremental search backwards.Vsearch-exit-char
  3520. *Character to exit incremental search.Vsearch-delete-char
  3521. *Character to delete from incremental search string.Vsearch-quote-char
  3522. *Character to quote special characters for incremental search.Vsearch-yank-word-char
  3523. *Character to pull next word from buffer into search string.Vsearch-yank-line-char
  3524. *Character to pull rest of line from buffer into search string.Vsearch-exit-option
  3525. *Non-nil means random control characters terminate incremental search.Vsearch-slow-window-lines
  3526. *Number of lines in slow search display windows.
  3527. These are the short windows used during incremental search on slow terminals.
  3528. Negative means put the slow search window at the top (normally it's at bottom)
  3529. and the value is minus the number of lines.Vsearch-slow-speed
  3530. *Highest terminal speed at which to use "slow" style incremental search.
  3531. This is the style where a one-line window is created to show the line
  3532. that the search has reached.Fquery-replace
  3533. Replace some occurrences of FROM-STRING with TO-STRING.
  3534. As each match is found, the user must type a character saying
  3535. what to do with it.  For directions, type \[help-command] at that time.
  3536.  
  3537. Preserves case in each replacement if  case-replace  and  case-fold-search
  3538. are non-nil and FROM-STRING has no uppercase letters.
  3539. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3540. only matches surrounded by word boundaries.Fquery-replace-regexp
  3541. Replace some things after point matching REGEXP with TO-STRING.
  3542. As each match is found, the user must type a character saying
  3543. what to do with it.  For directions, type \[help-command] at that time.
  3544.  
  3545. Preserves case in each replacement if  case-replace  and  case-fold-search
  3546. are non-nil and REGEXP has no uppercase letters.
  3547. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3548. only matches surrounded by word boundaries.
  3549. In TO-STRING, \& means insert what matched REGEXP,
  3550. and \=\<n> means insert what matched <n>th \(...\) in REGEXP.Freplace-string
  3551. Replace occurrences of FROM-STRING with TO-STRING.
  3552. Preserve case in each match if  case-replace  and  case-fold-search
  3553. are non-nil and FROM-STRING has no uppercase letters.
  3554. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3555. only matches surrounded by word boundaries.Freplace-regexp
  3556. Replace things after point matching REGEXP with TO-STRING.
  3557. Preserve case in each match if case-replace and case-fold-search
  3558. are non-nil and REGEXP has no uppercase letters.
  3559. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  3560. only matches surrounded by word boundaries.
  3561. In TO-STRING, \& means insert what matched REGEXP,
  3562. and \=\<n> means insert what matched <n>th \(...\) in REGEXP.Vcommand-line-processed
  3563. t once command line has been processedVinhibit-startup-message
  3564. *Non-nil inhibits the initial startup messages.
  3565. This is for use in your personal init file, once you are familiar
  3566. with the contents of the startup message.Vinhibit-default-init
  3567. *Non-nil inhibits loading the `default' library.Vcommand-switch-alist
  3568. Alist of command-line switches.
  3569. Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
  3570. HANDLER-FUNCTION receives switch name as sole arg;
  3571. remaining command-line args are in the variable `command-line-args-left'.Vterm-setup-hook
  3572. Function to be called after loading terminal-specific lisp code.
  3573. It is called with no arguments.  You can use this to override the
  3574. definitions made by the terminal-specific file.Vinitial-major-mode
  3575. Major mode command symbol to use for the initial *scratch* buffer.Fforward-sexp
  3576. Move forward across one balanced expression.
  3577. With argument, do this that many times.Fbackward-sexp
  3578. Move backward across one balanced expression.
  3579. With argument, do this that many times.Fmark-sexp
  3580. Set mark ARG sexps from point.Fforward-list
  3581. Move forward across one balanced group of parentheses.
  3582. With argument, do this that many times.Fbackward-list
  3583. Move backward across one balanced group of parentheses.
  3584. With argument, do this that many times.Fdown-list
  3585. Move forward down one level of parentheses.
  3586. With argument, do this that many times.
  3587. A negative argument means move backward but still go down a level.Fbackward-up-list
  3588. Move backward out of one level of parentheses.
  3589. With argument, do this that many times.
  3590. A negative argument means move forward but still to a less deep spot.Fup-list
  3591. Move forward out of one level of parentheses.
  3592. With argument, do this that many times.
  3593. A negative argument means move backward but still to a less deep spot.Fkill-sexp
  3594. Kill the syntactic expression following the cursor.
  3595. With argument, kill that many expressions after (or before) the cursor.Fbackward-kill-sexp
  3596. Kill the syntactic expression preceding the cursor.
  3597. With argument, kill that many expressions before (or after) the cursor.Fbeginning-of-defun
  3598. Move backward to next beginning-of-defun.
  3599. With argument, do this that many times.
  3600. Returns t unless search stops due to end of buffer.Fend-of-defun
  3601. Move forward to next end of defun.
  3602. An end of a defun is found by moving forward from the beginning of one.Fmark-defun
  3603. Put mark at end of defun, point at beginning.Finsert-parentheses
  3604. Put parentheses around next ARG sexps.  Leave point after open-paren.
  3605. No argument is equivalent to zero: just insert () and leave point between.Fmove-past-close-and-reindent
  3606. Move past next ), delete indentation before it, then indent after it.Flisp-complete-symbol
  3607. Perform completion on Lisp symbol preceding point.
  3608. That symbol is compared against the symbols that exist
  3609. and any additional characters determined by what is there
  3610. are inserted.
  3611. If the symbol starts just after an open-parenthesis,
  3612. only symbols with function definitions are considered.
  3613. Otherwise, all symbols with function definitions, values
  3614. or properties are considered.Fforward-page
  3615. Move forward to page boundary.  With arg, repeat, or go back if negative.
  3616. A page boundary is any line whose beginning matches the regexp  page-delimiter.Fbackward-page
  3617. Move backward to page boundary.  With arg, repeat, or go fwd if negative.
  3618. A page boundary is any line whose beginning matches the regexp  page-delimiter.Fmark-page
  3619. Put mark at end of page, point at beginning.
  3620. A numeric arg specifies to move forward or backward by that many pages,
  3621. thus marking a page other than the one point was originally in.Fnarrow-to-page
  3622. Make text outside current page invisible.
  3623. A numeric arg specifies to move forward or backward by that many pages,
  3624. thus showing a page other than the one point was originally in.Fcount-lines-page
  3625. Report number of lines on current page, and how many are before or after point.Fwhat-page
  3626. Print page and line number of point.Vregister-alist
  3627. Alist of elements (NAME . CONTENTS), one for each Emacs register.
  3628. NAME is a character (a number).  CONTENTS is a string, number,
  3629. mark or list.  A list represents a rectangle; its elements are strings.Fget-register
  3630. Return contents of Emacs register named CHAR, or nil if none.Fset-register
  3631. Set contents of Emacs register named CHAR to VALUE.Fpoint-to-register
  3632. Store current location of point in a register.
  3633. Argument is a character, naming the register.Fregister-to-point
  3634. Move point to location stored in a register.
  3635. Argument is a character, naming the register.Fview-register
  3636. Display what is contained in register named REGISTER.
  3637. REGISTER is a character.Finsert-register
  3638. Insert contents of register REG.  REG is a character.
  3639. Normally puts point before and mark after the inserted text.
  3640. If optional second arg is non-nil, puts mark before and point after.
  3641. Interactively, second arg is non-nil if prefix arg is supplied.Fcopy-to-register
  3642. Copy region into register REG.
  3643. With prefix arg, delete as well.
  3644. Called from program, takes four args:
  3645. REG, START, END and DELETE-FLAG.
  3646. START and END are buffer positions indicating what to copy.Fappend-to-register
  3647. Append region to text in register REG.
  3648. With prefix arg, delete as well.
  3649. Called from program, takes four args:
  3650. REG, START, END and DELETE-FLAG.
  3651. START and END are buffer positions indicating what to append.Fprepend-to-register
  3652. Prepend region to text in register REG.
  3653. With prefix arg, delete as well.
  3654. Called from program, takes four args:
  3655. REG, START, END and DELETE-FLAG.
  3656. START and END are buffer positions indicating what to prepend.Fcopy-rectangle-to-register
  3657. Copy rectangular region into register REG.
  3658. With prefix arg, delete as well.
  3659. Called from program, takes four args:
  3660. REG, START, END and DELETE-FLAG.
  3661. START and END are buffer positions giving two corners of rectangle.Vparagraph-ignore-fill-prefix
  3662. Non-nil means the paragraph commands are not affected by fill-prefix.
  3663. This is desirable in modes where blank lines are the paragraph delimiters.Fforward-paragraph
  3664. Move forward to end of paragraph.  With arg, do it arg times.
  3665. A line which  paragraph-start  matches either separates paragraphs
  3666. (if  paragraph-separate  matches it also) or is the first line of a paragraph.
  3667. A paragraph end is the beginning of a line which is not part of the paragraph
  3668. to which the end of the previous line belongs, or the end of the buffer.Fbackward-paragraph
  3669. Move backward to start of paragraph.  With arg, do it arg times.
  3670. A paragraph start is the beginning of a line which is a first-line-of-paragraph
  3671. or which is ordinary text and follows a paragraph-separating line; except:
  3672. if the first real line of a paragraph is preceded by a blank line,
  3673. the paragraph starts at that blank line.
  3674. See forward-paragraph for more information.Fmark-paragraph
  3675. Put point at beginning of this paragraph, mark at end.Fkill-paragraph
  3676. Kill to end of paragraph.Fbackward-kill-paragraph
  3677. Kill back to start of paragraph.Ftranspose-paragraphs
  3678. Interchange this (or next) paragraph with previous one.Fforward-sentence
  3679. Move forward to next sentence-end.  With argument, repeat.
  3680. With negative argument, move backward repeatedly to sentence-beginning.
  3681. Sentence ends are identified by the value of sentence-end
  3682. treated as a regular expression.  Also, every paragraph boundary
  3683. terminates sentences as well.Fbackward-sentence
  3684. Move backward to start of sentence.  With arg, do it arg times.
  3685. See forward-sentence for more information.Fkill-sentence
  3686. Kill from point to end of sentence.
  3687. With arg, repeat, or backward if negative arg.Fbackward-kill-sentence
  3688. Kill back from point to start of sentence.
  3689. With arg, repeat, or forward if negative arg.Fmark-end-of-sentence
  3690. Put mark at end of sentence.  Arg works as in forward-sentence.Ftranspose-sentences
  3691. Interchange this (next) and previous sentence.Vlisp-mode-syntax-table
  3692. Vemacs-lisp-mode-syntax-table
  3693. Vlisp-mode-abbrev-table
  3694. Vemacs-lisp-mode-map
  3695. Femacs-lisp-mode
  3696. Major mode for editing Lisp code to run in Emacs.
  3697. Commands:
  3698. Delete converts tabs to spaces as it moves back.
  3699. Blank lines separate paragraphs.  Semicolons start comments.
  3700. \{emacs-lisp-mode-map}
  3701. Entry to this mode calls the value of emacs-lisp-mode-hook
  3702. if that value is non-nil.Flisp-mode
  3703. Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
  3704. Commands:
  3705. Delete converts tabs to spaces as it moves back.
  3706. Blank lines separate paragraphs.  Semicolons start comments.
  3707. \{lisp-mode-map}
  3708. Note that `run-lisp' may be used either to start an inferior Lisp job
  3709. or to switch back to an existing one.
  3710.  
  3711. Entry to this mode calls the value of lisp-mode-hook
  3712. if that value is non-nil.Flisp-send-defun
  3713. Send the current defun to the Lisp process made by M-x run-lisp.Flisp-interaction-mode
  3714. Major mode for typing and evaluating Lisp forms.
  3715. Like Lisp mode except that \[eval-print-last-sexp] evals the Lisp expression
  3716. before point, and prints its value into the buffer, advancing point.
  3717.  
  3718. Commands:
  3719. Delete converts tabs to spaces as it moves back.
  3720. Paragraphs are separated only by blank lines.  Semicolons start comments.
  3721. \{lisp-interaction-mode-map}
  3722. Entry to this mode calls the value of lisp-interaction-mode-hook
  3723. if that value is non-nil.Feval-print-last-sexp
  3724. Evaluate sexp before point; print value into current buffer.Feval-last-sexp
  3725. Evaluate sexp before point; print value in minibuffer.
  3726. With argument, print output into current buffer.Feval-defun
  3727. Evaluate defun that point is in or before.
  3728. Print value in minibuffer.
  3729. With argument, insert value in current buffer after the defun.Vlisp-indent-offset
  3730. Vlisp-indent-hook
  3731. Flisp-indent-line
  3732. Indent current line as Lisp code.
  3733. With argument, indent any additional lines of the same expression
  3734. rigidly along with this one.Fcalculate-lisp-indent
  3735. Return appropriate indentation for current line as Lisp code.
  3736. In usual case returns an integer: the column to indent to.
  3737. Can instead return a list, whose car is the column to indent to.
  3738. This means that following lines at the same level of indentation
  3739. should not necessarily be indented the same way.
  3740. The second element of the list is the buffer position
  3741. of the start of the containing expression.Vlisp-body-indent
  3742. Findent-sexp
  3743. Indent each line of the list starting just after point.Findent-code-rigidly
  3744. Indent all lines of code, starting in the region, sideways by ARG columns.
  3745. Does not affect lines starting inside comments or strings,
  3746. assuming that the start of the region is not inside them.
  3747. Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
  3748. The last is a regexp which, if matched at the beginning of a line,
  3749. means don't indent that line.Vtext-mode-syntax-table
  3750. Syntax table used while in text mode.Vtext-mode-abbrev-table
  3751. Abbrev table used while in text mode.Vtext-mode-map
  3752. Ftext-mode
  3753. Major mode for editing text intended for humans to read.  Special commands:\{text-mode-map}
  3754. Turning on text-mode calls the value of the variable text-mode-hook,
  3755. if that value is non-nil.Findented-text-mode
  3756. Major mode for editing indented text intended for humans to read.\{indented-text-mode-map}
  3757. Turning on indented-text-mode calls the value of the variable text-mode-hook,
  3758. if that value is non-nil.Fcenter-paragraph
  3759. Center each line in the paragraph at or after point.
  3760. See center-line for more info.Fcenter-region
  3761. Center each line starting in the region.
  3762. See center-line for more info.Fcenter-line
  3763. Center the line point is on, within the width specified by `fill-column'.
  3764. This means adjusting the indentation to match
  3765. the distance between the end of the text and `fill-column'.Fset-fill-prefix
  3766. Set the fill-prefix to the current line up to point.
  3767. Filling expects lines to start with the fill prefix
  3768. and reinserts the fill prefix in each resulting line.Ffill-region-as-paragraph
  3769. Fill region as one paragraph: break lines to fit fill-column.
  3770. Prefix arg means justify too.
  3771. From program, pass args FROM, TO and JUSTIFY-FLAG.Ffill-paragraph
  3772. Fill paragraph at or after point.
  3773. Prefix arg means justify as well.Ffill-region
  3774. Fill each of the paragraphs in the region.
  3775. Prefix arg (non-nil third arg, if called from program)
  3776. means justify as well.Fjustify-current-line
  3777. Add spaces to line point is in, so it ends at fill-column.Ffill-individual-paragraphs
  3778. Fill each paragraph in region according to its individual fill prefix.
  3779. Calling from a program, pass range to fill as first two arguments.
  3780. Optional third and fourth arguments JUSTIFY-FLAG and MAIL-FLAG:
  3781. JUSTIFY-FLAG to justify paragraphs (prefix arg),
  3782. MAIL-FLAG for a mail message, i. e. don't fill header lines.Vc-mode-abbrev-table
  3783. Abbrev table in use in C-mode buffers.Vc-mode-map
  3784. Keymap used in C mode.Fc-macro-expand
  3785. Display the result of expanding all C macros occurring in the region.
  3786. The expansion is entirely correct because it uses the C preprocessor.Vc-mode-syntax-table
  3787. Syntax table in use in C-mode buffers.Vc-indent-level
  3788. *Indentation of C statements with respect to containing block.Vc-brace-imaginary-offset
  3789. *Imagined indentation of a C open brace that actually follows a statement.Vc-brace-offset
  3790. *Extra indentation for braces, compared with other text in same context.Vc-argdecl-indent
  3791. *Indentation level of declarations of C function arguments.Vc-label-offset
  3792. *Offset of C label lines and case statements relative to usual indentation.Vc-continued-statement-offset
  3793. *Extra indent for lines not starting new statements.Vc-continued-brace-offset
  3794. *Extra indent for substatements that start with open-braces.
  3795. This is in addition to c-continued-statement-offset.Vc-auto-newline
  3796. *Non-nil means automatically newline before and after braces,
  3797. and after colons and semicolons, inserted in C code.Vc-tab-always-indent
  3798. *Non-nil means TAB in C mode should always reindent the current line,
  3799. regardless of where in the line point is when the TAB command is used.Fc-mode
  3800. Major mode for editing C code.
  3801. Expression and list commands understand all C brackets.
  3802. Tab indents for C code.
  3803. Comments are delimited with /* ... */.
  3804. Paragraphs are separated by blank lines only.
  3805. Delete converts tabs to spaces as it moves back.
  3806. \{c-mode-map}
  3807. Variables controlling indentation style:
  3808.  c-tab-always-indent
  3809.     Non-nil means TAB in C mode should always reindent the current line,
  3810.     regardless of where in the line point is when the TAB command is used.
  3811.  c-auto-newline
  3812.     Non-nil means automatically newline before and after braces,
  3813.     and after colons and semicolons, inserted in C code.
  3814.  c-indent-level
  3815.     Indentation of C statements within surrounding block.
  3816.     The surrounding block's indentation is the indentation
  3817.     of the line on which the open-brace appears.
  3818.  c-continued-statement-offset
  3819.     Extra indentation given to a substatement, such as the
  3820.     then-clause of an if or body of a while.
  3821.  c-continued-brace-offset
  3822.     Extra indentation given to a brace that starts a substatement.
  3823.     This is in addition to c-continued-statement-offset.
  3824.  c-brace-offset
  3825.     Extra indentation for line if it starts with an open brace.
  3826.  c-brace-imaginary-offset
  3827.     An open brace following other text is treated as if it were
  3828.     this far to the right of the start of its line.
  3829.  c-argdecl-indent
  3830.     Indentation level of declarations of C function arguments.
  3831.  c-label-offset
  3832.     Extra indentation for line that is a label, or case or default.
  3833.  
  3834. Settings for K&R and BSD indentation styles are
  3835.   c-indent-level                5    8
  3836.   c-continued-statement-offset  5    8
  3837.   c-brace-offset               -5   -8
  3838.   c-argdecl-indent              0    8
  3839.   c-label-offset               -5   -8
  3840.  
  3841. Turning on C mode calls the value of the variable c-mode-hook with no args,
  3842. if that value is non-nil.Felectric-c-brace
  3843. Insert character and correct line's indentation.Felectric-c-semi
  3844. Insert character and correct line's indentation.Felectric-c-terminator
  3845. Insert character and correct line's indentation.Fc-indent-command
  3846. Indent current line as C code, or in some cases insert a tab character.
  3847. If c-tab-always-indent is non-nil (the default), always indent current line.
  3848. Otherwise, indent the current line only if point is at the left margin
  3849. or in the line's indentation; otherwise insert a tab.
  3850.  
  3851. A numeric argument, regardless of its value,
  3852. means indent rigidly all the lines of the expression starting after point
  3853. so that this line becomes properly indented.
  3854. The relative indentation among the lines of the expression are preserved.Fc-indent-line
  3855. Indent current line as C code.
  3856. Return the amount the indentation changed by.Fcalculate-c-indent
  3857. Return appropriate indentation for current line as C code.
  3858. In usual case returns an integer: the column to indent to.
  3859. Returns nil if line starts inside a string, t if in a comment.Fcalculate-c-indent-within-comment
  3860. Return the indentation amount for line, assuming that
  3861. the current line is to be regarded as part of a block comment.Fc-backward-to-start-of-if
  3862. Move to the start of the last ``unbalanced'' if.Fmark-c-function
  3863. Put mark at end of C function, point at beginning.Findent-c-exp
  3864. Indent each line of the C grouping following point.Fkeep-lines
  3865. Delete all lines except those containing matches for REGEXP.
  3866. A match split across lines preserves all the lines it lies in.
  3867. Applies to all lines after point.Fflush-lines
  3868. Delete lines containing matches for REGEXP.
  3869. If a match is split across lines, all the lines it lies in are deleted.
  3870. Applies to lines after point.Fhow-many
  3871. Print number of matches for REGEXP following point.Foccur-mode
  3872. Major mode for output from \[occur].
  3873. Move point to one of the occurrences in this buffer,
  3874. then use \[occur-mode-goto-occurrence] to go to the same occurrence
  3875. in the buffer that the occurrences were found in.
  3876. \{occur-mode-map}Foccur-mode-goto-occurrence
  3877. Go to the line this occurrence was found in, in the buffer it was found in.Vlist-matching-lines-default-context-lines
  3878. *Default number of context lines to include around a list-matching-lines
  3879. match.  A negative number means to include that many lines before the match.
  3880. A positive number means to include that many lines both before and after.Foccur
  3881. Show all lines following point containing a match for REGEXP.
  3882. Display each line with NLINES lines before and after,
  3883.  or -NLINES before if NLINES is negative.
  3884. NLINES defaults to list-matching-lines-default-context-lines.
  3885. Interactively it is the prefix arg.
  3886.  
  3887. The lines are shown in a buffer named *Occur*.
  3888. It serves as a menu to find any of the occurrences in this buffer.
  3889. \[describe-mode] in that buffer will explain how.Fabbrev-mode
  3890. Toggle abbrev mode.
  3891. With arg, turn abbrev mode on iff arg is positive.
  3892. In abbrev mode, inserting an abbreviation causes it to expand
  3893. and be replaced by its expansion.Vedit-abbrevs-map
  3894. Keymap used in edit-abbrevs.Fkill-all-abbrevs
  3895. Undefine all defined abbrevs.Finsert-abbrevs
  3896. Insert after point a description of all defined abbrevs.
  3897. Mark is set after the inserted text.Flist-abbrevs
  3898. Display a list of all defined abbrevs.Fedit-abbrevs-mode
  3899. Major mode for editing the list of abbrev definitions.
  3900. \{edit-abbrevs-map}Fedit-abbrevs
  3901. Alter abbrev definitions by editing a list of them.
  3902. Selects a buffer containing a list of abbrev definitions.
  3903. You can edit them and type C-c C-c to redefine abbrevs
  3904. according to your editing.
  3905. Buffer contains a header line for each abbrev table,
  3906.  which is the abbrev table name in parentheses.
  3907. This is followed by one line per abbrev in that table:
  3908. NAME   USECOUNT   EXPANSION   HOOK
  3909. where NAME and EXPANSION are strings with quotes,
  3910. USECOUNT is an integer, and HOOK is any valid function
  3911. or may be omitted (it is usually omitted).Fedit-abbrevs-redefine
  3912. Redefine abbrevs according to current buffer contents.Fdefine-abbrevs
  3913. Define abbrevs according to current visible buffer contents.
  3914. See documentation of edit-abbrevs for info on the format of the
  3915. text you must have in the buffer.
  3916. With argument, eliminate all abbrev definitions except
  3917. the ones defined from the buffer now.Fread-abbrev-file
  3918. Read abbrev definitions from file written with write-abbrev-file.
  3919. Takes file name as argument.
  3920. Optional second argument non-nil means don't print anything.Fquietly-read-abbrev-file
  3921. Read abbrev definitions from file written with write-abbrev-file.
  3922. Takes file name as argument.  Does not print anything.Fwrite-abbrev-file
  3923. Write all abbrev definitions to file of Lisp code.
  3924. The file can be loaded to define the same abbrevs.Fadd-mode-abbrev
  3925. Define mode-specific abbrev for last word(s) before point.
  3926. Argument is how many words before point form the expansion;
  3927. or zero means the region is the expansion.
  3928. A negative argument means to undefine the specified abbrev.
  3929. Reads the abbreviation in the minibuffer.Fadd-global-abbrev
  3930. Define global (all modes) abbrev for last word(s) before point.
  3931. Argument is how many words before point form the expansion;
  3932. or zero means the region is the expansion.
  3933. A negative argument means to undefine the specified abbrev.
  3934. Reads the abbreviation in the minibuffer.Finverse-add-mode-abbrev
  3935. Define last word before point as a mode-specific abbrev.
  3936. With argument N, defines the Nth word before point.
  3937. Reads the expansion in the minibuffer.
  3938. Expands the abbreviation after defining it.Finverse-add-global-abbrev
  3939. Define last word before point as a global (mode-independent) abbrev.
  3940. With argument N, defines the Nth word before point.
  3941. Reads the expansion in the minibuffer.
  3942. Expands the abbreviation after defining it.Fabbrev-prefix-mark
  3943. Mark current point as the beginning of an abbrev.
  3944. Abbrev to be expanded starts here rather than at
  3945. beginning of word.  This way, you can expand an abbrev
  3946. with a prefix: insert the prefix, use this command,
  3947. then insert the abbrev.Fexpand-region-abbrevs
  3948. For abbrev occurrence in the region, offer to expand it.
  3949. The user is asked to type y or n for each occurrence.
  3950. A numeric argument means don't query; expand all abbrevs.
  3951. Calling from a program, arguments are START END &optional NOQUERY.VBuffer-menu-mode-map
  3952. FBuffer-menu-mode
  3953. Major mode for editing a list of buffers.
  3954. Each line describes one of the buffers in Emacs.
  3955. Letters do not insert themselves; instead, they are commands.
  3956. m -- mark buffer to be displayed.
  3957. q -- select buffer of line point is on.
  3958.   Also show buffers marked with m in other windows.
  3959. 1 -- select that buffer in full-screen window.
  3960. 2 -- select that buffer in one window,
  3961.   together with buffer selected before this one in another window.
  3962. f -- select that buffer in place of the buffer menu buffer.
  3963. o -- select that buffer in another window,
  3964.   so the buffer menu buffer remains visible in its window.
  3965. ~ -- clear modified-flag on that buffer.
  3966. s -- mark that buffer to be saved, and move down.
  3967. d or k -- mark that buffer to be deleted, and move down.
  3968. C-d -- mark that buffer to be deleted, and move up.
  3969. x -- delete or save marked buffers.
  3970. u -- remove all kinds of marks from current line.
  3971. Delete -- back up a line and remove marks.
  3972.  
  3973. Precisely,\{Buffer-menu-mode-map}FBuffer-menu-buffer
  3974. Return buffer described by this line of buffer menu.Fbuffer-menu
  3975. Make a menu of buffers so you can save, delete or select them.
  3976. With argument, show only buffers that are visiting files.
  3977. Type ? after invocation to get help on commands available.
  3978. Type q immediately to make the buffer menu go away.FBuffer-menu-mark
  3979. Mark buffer on this line for being displayed by \[Buffer-menu-select] command.FBuffer-menu-unmark
  3980. Cancel all requested operations on buffer on this line.FBuffer-menu-backup-unmark
  3981. Move up and cancel all requested operations on buffer on line above.FBuffer-menu-delete
  3982. Mark buffer on this line to be deleted by \[Buffer-menu-execute] command.FBuffer-menu-delete-backwards
  3983. Mark buffer on this line to be deleted by \[Buffer-menu-execute] command
  3984. and then move up one lineFBuffer-menu-save
  3985. Mark buffer on this line to be saved by \[Buffer-menu-execute] command.FBuffer-menu-not-modified
  3986. Mark buffer on this line as unmodified (no changes to save).FBuffer-menu-execute
  3987. Save and/or delete buffers marked with \[Buffer-menu-save] or \[Buffer-menu-delete] commands.FBuffer-menu-select
  3988. Select this line's buffer; also display buffers marked with ">".
  3989. You can mark buffers with the \[Buffer-menu-mark] command.FBuffer-menu-1-window
  3990. Select this line's buffer, alone, in full screen.FBuffer-menu-this-window
  3991. Select this line's buffer in this window.FBuffer-menu-other-window
  3992. Select this line's buffer in other window, leaving buffer menu visible.FBuffer-menu-2-window
  3993. Select this line's buffer, with previous buffer in second window.Fone-window-p
  3994. Returns non-nil if there is only one window.
  3995. Optional arg NOMINI non-nil means don't count the minibuffer
  3996. even if it is active.Fread-quoted-char
  3997. Like `read-char', except that if the first character read is an octal
  3998. digit, we read up to two more octal digits and return the character
  3999. represented by the octal number consisting of those digits.
  4000. Optional argument PROMPT specifies a string to use to prompt the user.Ferror
  4001. Signal an error, making error message by passing all args to `format'.Fsuppress-keymap
  4002. Make MAP override all buffer-modifying commands to be undefined.
  4003. Works by knowing which commands are normally buffer-modifying.
  4004. Normally also makes digits set numeric arg,
  4005. but optional second arg NODIGITS non-nil prevents this.Fsubstitute-key-definition
  4006. Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
  4007. In other words, OLDDEF is replaced with NEWDEF where ever it appears.Vglobal-map
  4008. Default global keymap mapping Emacs keyboard input into commands.
  4009. The value is a keymap which is usually (but not necessarily) Emacs's
  4010. global map.Vctl-x-map
  4011. Default keymap for C-x commands.
  4012. The normal global definition of the character C-x indirects to this keymap.Vesc-map
  4013. Default keymap for ESC (meta) commands.
  4014. The normal global definition of the character ESC indirects to this keymap.Vmouse-map
  4015. Keymap for mouse commands from the X window system.Frun-hooks
  4016. Takes hook names and runs each one in turn.  Major mode functions use this.
  4017. Each argument should be a symbol, a hook variable.
  4018. These symbols are processed in the order specified.
  4019. If a hook symbol has a non-nil value, that value may be a function
  4020. or a list of functions to be called to run the hook.
  4021. If the value is a function, it is called with no arguments.
  4022. If it is a list, the elements are called, in order, with no arguments.Fmomentary-string-display
  4023. Momentarily display STRING in the buffer at POS.
  4024. Display remains until next character is typed.
  4025. If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
  4026. otherwise it is then available as input (as a command if nothing else).
  4027. Display MESSAGE (optional fourth arg) in the echo area.
  4028. If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there.Fundo-start
  4029. Move undo-pointer to front of undo records.
  4030. The next call to undo-more will undo the most recently made change.Fundo-more
  4031. Undo back N undo-boundaries beyond what was already undone recently.
  4032. Call undo-start to get ready to undo recent changes,
  4033. then call undo-more one or more times to undo them.Vemacs-version
  4034. Version numbers of this version of Emacs.Vemacs-build-time
  4035. Time at which Emacs was dumped out.Femacs-version
  4036. Return string describing the version of Emacs that is running.