home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0410.ZIP / CCE_0410.PD / EMACS_58.ZOO / e-etc / doc < prev    next >
Text File  |  1992-07-15  |  219KB  |  2,645 lines

  1. Fmake-abbrev-table
  2. Create a new, empty abbrev table object.Fclear-abbrev-table
  3. Undefine all abbrevs in abbrev table TABLE, leaving it empty.Fdefine-abbrev
  4. Define an abbrev in TABLE named NAME, to expand to EXPANSION or call HOOK.
  5. NAME and EXPANSION are strings.  HOOK is a function or nil.
  6. To undefine an abbrev, define it with EXPANSION = nilFdefine-global-abbrev
  7. Define ABBREV as a global abbreviation for EXPANSION.Fdefine-mode-abbrev
  8. Define ABBREV as a mode-specific abbreviation for EXPANSION.Fabbrev-symbol
  9. Return the symbol representing abbrev named ABBREV.
  10. Value is nil if that abbrev is not defined.
  11. Optional second arg TABLE is abbrev table to look it up in.
  12. Default is try buffer's mode-specific abbrev table, then global table.Fabbrev-expansion
  13. Return the string that ABBREV expands into in the current buffer.
  14. Optionally specify an abbrev table; then ABBREV is looked up in that table only.Fexpand-abbrev
  15. Expand the abbrev before point, if it is an abbrev.
  16. Effective when explicitly called even when abbrev-mode is not enabled.
  17. Returns t if expansion took place.Funexpand-abbrev
  18. Undo the expansion of the last abbrev that expanded.Finsert-abbrev-table-description
  19. Insert before point a description of abbrev table named NAME.
  20. NAME is a symbol whose value is an abbrev table.
  21. If 2nd arg READABLE is non-nil, a readable description is inserted.
  22. Otherwise description is an expression,
  23. a call to define-abbrev-table which would
  24. define NAME exactly as it is currently defined.Fdefine-abbrev-table
  25. Define TABNAME (a symbol) as an abbrev table name.
  26. Define abbrevs in it according to DEFINITIONS, a list of elements
  27. of the form (ABBREVNAME EXPANSION HOOK USECOUNT).Vabbrev-table-name-list
  28. List of symbols whose values are  abbrev tables.Vglobal-abbrev-table
  29. The abbrev table whose abbrevs affect all buffers.
  30. Each buffer may also have a local abbrev table.
  31. If it does, the local table overrides the global one
  32. for any particular abbrev defined in both.Vfundamental-mode-abbrev-table
  33. The abbrev table of mode-specific abbrevs for Fundamental Mode.Vlast-abbrev
  34. The abbrev-symbol of the last abbrev expanded.Vlast-abbrev-text
  35. The exact text of the last abbrev expanded.
  36. nil if the abbrev has already been unexpanded.Vlast-abbrev-location
  37. The location of the last abbrev expanded.Vabbrev-start-location
  38. Buffer position for expand-abbrev to use as the start of the abbrev.
  39. nil means use the word before point as the abbrev.
  40. Set to nil each time expand-abbrev is called.Vabbrev-start-location-buffer
  41. Buffer that abbrev-start-location has been set for.
  42. Trying to expand an abbrev in any other buffer clears abbrev-start-location.Vlocal-abbrev-table
  43. Local (mode-specific) abbrev table of current buffer.Vabbrevs-changed
  44. Set non-nil by defining or altering any word abbrevs.Vabbrev-all-caps
  45. *Set non-nil means expand multi-word abbrevs all caps if abbrev was so.Fcons
  46. Create a new cons, give it CAR and CDR as components, and return it.Flist
  47. Return a newly created list whose elements are the arguments (any number).Fmake-list
  48. Return a newly created list of length LENGTH, with each element being INIT.Fmake-vector
  49. Return a newly created vector of length LENGTH, with each element being INIT.Fvector
  50. Return a newly created vector with our arguments (any number) as its elements.Fmake-symbol
  51. Return a newly allocated uninterned symbol whose name is NAME.
  52. Its value and function definition are void, and its property list is NIL.Fmake-marker
  53. Return a newly allocated marker which does not point at any place.Fmake-string
  54. Return a newly created string of length LENGTH, with each element being INIT.
  55. Both LENGTH and INIT must be numbers.Fpurecopy
  56. Make a copy of OBJECT in pure storage.
  57. Recursively copies contents of vectors and cons cells.
  58. Does not copy symbols.Fgarbage-collect
  59. Reclaim storage for Lisp objects no longer needed.
  60. Returns info on amount of space in use:
  61.  ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)
  62.   (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS)
  63. Garbage collection happens automatically if you cons more than
  64. gc-cons-threshold  bytes of Lisp data since previous garbage collection.Vgc-cons-threshold
  65. *Number of bytes of consing between garbage collections.Vpure-bytes-used
  66. Number of bytes of sharable Lisp data allocated so far.Vdata-bytes-used
  67. Number of bytes of unshared memory allocated in this session.Vdata-bytes-free
  68. Number of bytes of unshared memory remaining available in this session.Vdata-bytes-used
  69. Number of bytes of unshared memory allocated in this session.Vdata-bytes-free
  70. Number of bytes of unshared memory remaining available in this session.Vpurify-flag
  71. Non-nil means loading Lisp code in order to dump an executable.Vundo-threshold
  72. Keep no more undo information once it exceeds this size.
  73. This threshold is applied when garbage collection happens.
  74. The size is counted as the number of bytes occupied,
  75. which includes both saved text and other data.Vundo-high-threshold
  76. Don't keep more than this much size of undo information.
  77. A command which pushes past this size is itself forgotten.
  78. This threshold is applied when garbage collection happens.
  79. The size is counted as the number of bytes occupied,
  80. which includes both saved text and other data.Fbuffer-list
  81. Return a list of all buffers.Fget-buffer
  82. Return the buffer named NAME (a string).
  83. It is found by looking up NAME in  buffer-alist.
  84. If there is no buffer named NAME, nil is returned.
  85. NAME may also be a buffer; it is returned.Fget-file-buffer
  86. Return the buffer visiting file FILENAME (a string).
  87. If there is no such buffer, nil is returned.Fget-buffer-create
  88. Like get-buffer but creates a buffer named NAME and returns it if none already exists.Fgenerate-new-buffer
  89. Creates and returns a buffer named NAME if one does not already exist,
  90. else tries adding successive suffixes to NAME until a new buffer-name is
  91. formed, then creates and returns a new buffer with that new name.Fbuffer-name
  92. Return the name of BUFFER, as a string.
  93. No arg means return name of current buffer.Fbuffer-file-name
  94. Return name of file BUFFER is visiting, or NIL if none.
  95. No argument means use current buffer as BUFFER.Fbuffer-local-variables
  96. Return alist of variables that are buffer-local in BUFFER.
  97. No argument means use current buffer as BUFFER.
  98. Each element of the value looks like (SYMBOL . VALUE).
  99. Note that storing new VALUEs in these elements
  100. does not change the local values.Fbuffer-modified-p
  101. Return t if BUFFER is modified since file last read in or saved.
  102. No argument means use current buffer as BUFFER.Fset-buffer-modified-p
  103. Mark current buffer as modified or unmodified according to FLAG.Frename-buffer
  104. Change current buffer's name to NEWNAME (a string).Fother-buffer
  105. Return most recently selected buffer other than BUFFER.
  106. Buffers not visible in windows are preferred to visible buffers.
  107. If no other exists, the buffer *scratch* is returned.
  108. If BUFFER is omitted or nil, some interesting buffer is returned.Fbuffer-flush-undo
  109. Make BUFFER stop keeping undo information.Fbuffer-enable-undo
  110. Start keeping undo information for buffer BUFFER (default is current buffer).Fkill-buffer
  111. One arg, a string or a buffer.  Get rid of the specified buffer.
  112. Any processes that have this buffer as the `process-buffer' are killed
  113. with `delete-process'.Fswitch-to-buffer
  114. Select buffer BUFFER in the current window.
  115. BUFFER may be a buffer or a buffer name.
  116. Optional second arg NORECORD non-nil means
  117. do not put this buffer at the front of the list of recently selected ones.
  118.  
  119. WARNING: This is NOT the way to work on another buffer temporarily
  120. within a Lisp program!  Use `set-buffer' instead.  That avoids messing with
  121. the window-buffer correspondances.Fpop-to-buffer
  122. Select buffer BUFFER in some window, preferably a different one.
  123. If  pop-up-windows  is non-nil, windows can be split to do this.
  124. If second arg  OTHER-WINDOW is non-nil, insist on finding another
  125. window even if BUFFER is already visible in the selected window.Fcurrent-buffer
  126. Return the current buffer as a Lisp buffer object.Fset-buffer
  127. Set the current buffer to the buffer or buffer name supplied as argument.
  128. That buffer will then be the default for editing operations and printing.
  129. This function's effect can't last past end of current command
  130. because returning to command level
  131. selects the chosen buffer of the current window,
  132. and this function has no effect on what buffer that is.
  133. See also `save-excursion' when you want to select a buffer temporarily.
  134. Use `switch-to-buffer' or `pop-to-buffer' for interactive buffer selection.Fbarf-if-buffer-read-only
  135. Signal a  buffer-read-only  error if the current buffer is read-only.Fbury-buffer
  136. Put BUFFER at the end of the list of all buffers.
  137. There it is the least likely candidate for other-buffer to return;
  138. thus, the least likely buffer for \[switch-to-buffer] to select by default.
  139. BUFFER is also removed from the selected window if it was displayed there.Ferase-buffer
  140. Delete the entire contents of the current buffer.Flist-buffers
  141. Display a list of names of existing buffers.
  142. Inserts it in buffer *Buffer List* and displays that.
  143. Note that buffers with names starting with spaces are omitted.
  144. Non-null optional arg FILES-ONLY means mention only file buffers.
  145.  
  146. The M column contains a * for buffers that are modified.
  147. The R column contains a % for buffers that are read-only.Fkill-all-local-variables
  148. Eliminate all the buffer-local variable values of the current buffer.
  149. This buffer will then see the default values of all variables.Vdefault-mode-line-format
  150. Default mode-line-format for buffers that do not override it.
  151. This is the same as (default-value 'mode-line-format).Vdefault-abbrev-mode
  152. Default abbrev-mode for buffers that do not override it.
  153. This is the same as (default-value 'abbrev-mode).Vdefault-ctl-arrow
  154. Default ctl-arrow for buffers that do not override it.
  155. This is the same as (default-value 'ctl-arrow).Vdefault-truncate-lines
  156. Default truncate-lines for buffers that do not override it.
  157. This is the same as (default-value 'truncate-lines).Vdefault-fill-column
  158. Default fill-column for buffers that do not override it.
  159. This is the same as (default-value 'fill-column).Vdefault-left-margin
  160. Default left-margin for buffers that do not override it.
  161. This is the same as (default-value 'left-margin).Vdefault-tab-width
  162. Default tab-width for buffers that do not override it.
  163. This is the same as (default-value 'tab-width).Vdefault-case-fold-search
  164. Default case-fold-search for buffers that do not override it.
  165. This is the same as (default-value 'case-fold-search).Vmode-line-format
  166. Template for displaying mode line for current buffer.
  167. Each buffer has its own value of this variable.
  168. Value may be a string, a symbol or a list or cons cell.
  169. For a symbol, its value is used (but it is ignored if t or nil).
  170.  A string appearing directly as the value of a symbol is processed verbatim
  171.  in that the %-constructs below are not recognized.
  172. For a list whose car is a symbol, the symbol's value is taken,
  173.  and if that is non-nil, the cadr of the list is processed recursively.
  174.  Otherwise, the caddr of the list (if there is one) is processed.
  175. For a list whose car is a string or list, each element is processed
  176.  recursively and the results are effectively concatenated.
  177. For a list whose car is an integer, the cdr of the list is processed
  178.   and padded (if the number is positive) or truncated (if negative)
  179.   to the width specified by that number.
  180. A string is printed verbatim in the mode line except for %-constructs:
  181.   (%-constructs are allowed when the string is the entire mode-line-format
  182.    or when it is found in a cons-cell or a list)
  183.   %b -- print buffer name.      %f -- print visited file name.
  184.   %* -- print *, % or hyphen.   %m -- print value of mode-name (obsolete).
  185.   %s -- print process status.   %M -- print value of global-mode-string. (obs)
  186.   %p -- print percent of buffer above top of window, or top, bot or all.
  187.   %n -- print Narrow if appropriate.
  188.   %[ -- print one [ for each recursive editing level.  %] similar.
  189.   %% -- print %.   %- -- print infinitely many dashes.
  190. Decimal digits after the % specify field width to which to pad.Vdefault-major-mode
  191. *Major mode for new buffers.  Defaults to fundamental-mode.
  192. nil here means use current buffer's major mode.Vmajor-mode
  193. Symbol for current buffer's major mode.Vabbrev-mode
  194. Non-nil turns on automatic expansion of abbrevs when inserted.
  195. Automatically becomes local when set in any fashion.Vcase-fold-search
  196. *Non-nil if searches should ignore case.
  197. Automatically becomes local when set in any fashion.Vmode-name
  198. Pretty name of current buffer's major mode (a string).Vfill-column
  199. *Column beyond which automatic line-wrapping should happen.
  200. Automatically becomes local when set in any fashion.Vleft-margin
  201. *Column for the default indent-line-function to indent to.
  202. Linefeed indents to this column in Fundamental mode.
  203. Automatically becomes local when set in any fashion.Vtab-width
  204. *Distance between tab stops (for display of tab characters), in columns.
  205. Automatically becomes local when set in any fashion.Vctl-arrow
  206. *Non-nil means display control chars with uparrow.
  207. Nil means use backslash and octal digits.
  208. Automatically becomes local when set in any fashion.Vtruncate-lines
  209. *Non-nil means do not display continuation lines;
  210. give each line of text one screen line.
  211. Automatically becomes local when set in any fashion.
  212.  
  213. Note that this is overridden by the variable
  214. truncate-partial-width-windows if that variable is non-nil
  215. and this buffer is not full-screen width.Vdefault-directory
  216. Name of default directory of current buffer.  Should end with slash.Vauto-fill-hook
  217. Function called (if non-nil) after self-inserting a space at column beyond fill-columnVbuffer-file-name
  218. Name of file visited in current buffer, or nil if not visiting a file.Vbuffer-auto-save-file-name
  219. Name of file for auto-saving current buffer,
  220. or nil if buffer should not be auto-saved.Vbuffer-read-only
  221. Non-nil if this buffer is read-only.Vbuffer-backed-up
  222. Non-nil if this buffer's file has been backed up.
  223. Backing up is done before the first time the file is saved.Vbuffer-saved-size
  224. Length of current buffer when last read in, saved or auto-saved.
  225. 0 initially.Vselective-display
  226. t enables selective display:
  227.  after a ^M, all the rest of the line is invisible.
  228.  ^M's in the file are written into files as newlines.
  229. Integer n as value means display only lines
  230.  that start with less than n columns of space.
  231. Automatically becomes local when set in any fashion.Vselective-display-ellipses
  232. t means display ... on previous line when a line is invisible.
  233. Automatically becomes local when set in any fashion.Voverwrite-mode
  234. Non-nil if self-insertion should replace existing text.
  235. Automatically becomes local when set in any fashion.Vbuffer-undo-list
  236. List of undo entries in current buffer.Fbyte-code
  237. Finteractive
  238. Specify a way of parsing arguments for interactive use of a function.
  239. For example, write
  240.   (defun fun (arg) "Doc string" (interactive "p") ...use arg...)
  241. to make arg be the prefix numeric argument when foo is called as a command.
  242. This is actually a declaration rather than a function;
  243.  it tells  call-interactively  how to read arguments
  244.  to pass to the function.
  245. When actually called,  interactive  just returns nil.
  246.  
  247. The argument of  interactive  is usually a string containing a code letter
  248.  followed by a prompt.  (Some code letters do not use I/O to get
  249.  the argument and do not need prompts.)  To prompt for multiple arguments,
  250.  give a code letter, its prompt, a newline, and another code letter, etc.
  251. If the argument is not a string, it is evaluated to get a list of
  252.  arguments to pass to the function.
  253. Just  (interactive)  means pass no args when calling interactively.
  254.  
  255. Code letters available are:
  256. a -- Function name: symbol with a function definition.
  257. b -- Name of existing buffer.
  258. B -- Name of buffer, possibly nonexistent.
  259. c -- Character.
  260. C -- Command name: symbol with interactive function definition.
  261. d -- Value of point as number.  Does not do I/O.
  262. D -- Directory name.
  263. f -- Existing file name.
  264. F -- Possibly nonexistent file name.
  265. k -- Key sequence (string).
  266. m -- Value of mark as number.  Does not do I/O.
  267. n -- Number read using minibuffer.
  268. N -- Prefix arg converted to number, or if none, do like code `n'.
  269. p -- Prefix arg converted to number.  Does not do I/O.
  270. P -- Prefix arg in raw form.  Does not do I/O.
  271. r -- Region: point and mark as 2 numeric args, smallest first.  Does no I/O.
  272. s -- Any string.
  273. S -- Any symbol.
  274. v -- Variable name: symbol that is user-variable-p.
  275. x -- Lisp expression read but not evaluated.
  276. X -- Lisp expression read and evaluated.
  277. In addition, if the first character of the string is '*' then an error is
  278.  signaled if the buffer is read-only.
  279.  This happens before reading any arguments.Fcall-interactively
  280. Call FUNCTION, reading args according to its interactive calling specs.
  281. The function contains a specification of how to do the argument reading.
  282. In the case of user-defined functions, this is specified by placing a call
  283. to the function `interactive' at the top level of the function body.
  284. See `interactive'.
  285.  
  286. Optional second arg RECORD-FLAG non-nil
  287. means unconditionally put this command in the command-history.
  288. Otherwise, this is done only if an arg is read using the minibuffer.Fprefix-numeric-value
  289. Return numeric meaning of raw prefix argument ARG.
  290. A raw prefix argument is what you get from (interactive "P").Vprefix-arg
  291. The value of the prefix argument for the next editing command.
  292. It may be a number, or the symbol - for just a minus sign as arg,
  293. or a list whose car is a number for just one or more C-U's
  294. or nil if no argument has been specified.
  295.  
  296. You cannot examine this variable to find the argument for this command
  297. since it has been set to nil by the time you can look.
  298. Instead, you should use the variable current-prefix-arg, although
  299. normally commands can get this prefix argument with (interactive "P").Vcurrent-prefix-arg
  300. The value of the prefix argument for this editing command.
  301. It may be a number, or the symbol - for just a minus sign as arg,
  302. or a list whose car is a number for just one or more C-U's
  303. or nil if no argument has been specified.
  304. This is what (interactive "P") returns.Vcommand-history
  305. List of recent commands that read arguments from terminal.
  306. Each command is represented as a form to evaluate.Fcall-process
  307. Call PROGRAM in separate process.
  308. Program's input comes from file INFILE (nil means /dev/null).
  309. Insert output in BUFFER before point; t means current buffer;
  310.  nil for BUFFER means discard it; 0 means discard and don't wait.
  311. Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
  312. Remaining arguments are strings passed as command arguments to PROGRAM.
  313. Otherwise waits for PROGRAM to terminate
  314. and returns a numeric exit status or a signal name as a string.
  315. If you quit, the process is killed with SIGKILL.Fcall-process-region
  316. Send text from START to END to a process running PROGRAM.
  317. Delete the text if DELETE is non-nil.
  318. Insert output in BUFFER before point; t means current buffer;
  319.  nil for BUFFER means discard it; 0 means discard and don't wait.
  320. Sixth arg DISPLAY non-nil means redisplay buffer as output is inserted.
  321. Remaining args are passed to PROGRAM at startup as command args.
  322. This function normally waits for the process to terminate;
  323. if you quit, the process is killed.Vshell-file-name
  324. *File name to load inferior shells from.
  325. Initialized from the SHELL environment variable.Vexec-path
  326. *List of directories to search programs to run in subprocesses.
  327. Each element is a string (directory name) or nil (try default directory).Vexec-directory
  328. Directory that holds programs that come with GNU Emacs,
  329. intended for Emacs to invoke.Vprocess-environment
  330. List of strings to append to environment of subprocesses that are started.
  331. Each string should have the format ENVVARNAME=VALUE.Fupcase
  332. One arg, a character or string.  Convert it to upper case and return that.Fdowncase
  333. One arg, a character or string.  Convert it to lower case and return that.Fcapitalize
  334. One arg, a character or string.  Convert it to capitalized form and return that.
  335. This means that each word's first character is upper case and the rest is lower case.Fupcase-region
  336. Convert the region to upper case.  In programs, wants two arguments.
  337. These arguments specify the starting and ending character numbers of
  338. the region to operate on.  When used as a command, the text between
  339. point and the mark is operated on.Fdowncase-region
  340. Convert the region to lower case.  In programs, wants two arguments.
  341. These arguments specify the starting and ending character numbers of
  342. the region to operate on.  When used as a command, the text between
  343. point and the mark is operated on.Fcapitalize-region
  344. Convert the region to upper case.  In programs, wants two arguments.
  345. These arguments specify the starting and ending character numbers of
  346. the region to operate on.  When used as a command, the text between
  347. point and the mark is operated on.
  348. Capitalized form means each word's first character is upper case
  349. and the rest of it is lower case.Fupcase-word
  350. Convert following word (or ARG words) to upper case, moving over.
  351. With negative argument, convert previous words but do not move.Fdowncase-word
  352. Convert following word (or ARG words) to lower case, moving over.
  353. With negative argument, convert previous words but do not move.Fcapitalize-word
  354. Capitalize the following word (or ARG words), moving over.
  355. This gives the word(s) a first character in upper case
  356. and the rest lower case.
  357. With negative argument, capitalize previous words but do not move.Fforward-char
  358. Move point right ARG characters (left if ARG negative).
  359. On reaching end of buffer, stop and signal error.Fbackward-char
  360. Move point left ARG characters (right if ARG negative).
  361. On attempt to pass beginning or end of buffer, stop and signal error.Fforward-line
  362. If point is on line i, move to the start of line i + ARG.
  363. If there isn't room, go as far as possible (no error).
  364. Returns the count of lines left to move.
  365. With positive ARG, a non-empty line traversed at end of buffer 
  366.  counts as one line successfully moved (for the return value).Fbeginning-of-line
  367. Move point to beginning of current line.
  368. With argument ARG not nil or 1, move forward ARG - 1 lines first.
  369. If scan reaches end of buffer, stop there without error.Fend-of-line
  370. Move point to end of current line.
  371. With argument ARG not nil or 1, move forward ARG - 1 lines first.
  372. If scan reaches end of buffer, stop there without error.Fdelete-char
  373. Delete the following ARG characters (previous, with negative arg).
  374. Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
  375. Interactively, ARG is the prefix arg, and KILLFLAG is set if
  376. ARG was explicitly specified.Fdelete-backward-char
  377. Delete the previous ARG characters (following, with negative ARG).
  378. Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
  379. Interactively, ARG is the prefix arg, and KILLFLAG is set if
  380. ARG was explicitly specified.Fself-insert-command
  381. Insert this character.  Prefix arg is repeat-count.Fnewline
  382. Insert a newline.  With arg, insert that many newlines.
  383. In Auto Fill mode, can break the preceding line if no numeric arg.Vblink-paren-hook
  384. Function called, if non-nil, whenever a char with closeparen syntax is self-inserted.Feq
  385. T if the two args are the same Lisp object.Fnull
  386. T if OBJECT is nil.Fconsp
  387. T if OBJECT is a cons cell.Fatom
  388. T if OBJECT is not a cons cell.  This includes nil.Flistp
  389. T if OBJECT is a list.  This includes nil.Fnlistp
  390. T if OBJECT is not a list.  Lists include nil.Fintegerp
  391. T if OBJECT is a number.Fnatnump
  392. T if OBJECT is a nonnegative number.Fsymbolp
  393. T if OBJECT is a symbol.Fvectorp
  394. T if OBJECT is a vector.Fstringp
  395. T if OBJECT is a string.Farrayp
  396. T if OBJECT is an array (string or vector).Fsequencep
  397. T if OBJECT is a sequence (list or array).Fbufferp
  398. T if OBJECT is an editor buffer.Fmarkerp
  399. T if OBJECT is a marker (editor pointer).Finteger-or-marker-p
  400. T if OBJECT is an integer or a marker (editor pointer).Fsubrp
  401. T if OBJECT is a built-in function.Fchar-or-string-p
  402. T if OBJECT is a character (a number) or a string.Fcar
  403. Return the car of CONSCELL.  If arg is nil, return nil.Fcar-safe
  404. Return the car of OBJECT if it is a cons cell, or else  nil.Fcdr
  405. Return the cdr of CONSCELL.  If arg is nil, return nil.Fcdr-safe
  406. Return the cdr of OBJECT if it is a cons cell, or else  nil.Fsetcar
  407. Set the car of CONSCELL to be NEWCAR.  Returns NEWCAR.Fsetcdr
  408. Set the cdr of CONSCELL to be NEWCDR.  Returns NEWCDR.Fboundp
  409. T if SYMBOL's value is not void.Ffboundp
  410. T if SYMBOL's function definition is not void.Fmakunbound
  411. Make SYMBOL's value be void.Ffmakunbound
  412. Make SYMBOL's function definition be void.Fsymbol-function
  413. Return SYMBOL's function definition.Fsymbol-plist
  414. Return SYMBOL's property list.Fsymbol-name
  415. Return SYMBOL's name, a string.Ffset
  416. Set SYMBOL's function definition to NEWVAL, and return NEWVAL.Fsetplist
  417. Set SYMBOL's property list to NEWVAL, and return NEWVAL.Fsymbol-value
  418. Return SYMBOL's value.Fdefault-value
  419. Return SYMBOL's default value.
  420. This is the value that is seen in buffers that do not have their own values
  421. for this variable.Fset
  422. Set SYMBOL's value to NEWVAL, and return NEWVAL.Fset-default
  423. Set SYMBOL's default value to VAL.  SYMBOL and VAL are evaluated.
  424. The default value is seen in buffers that do not have their own values
  425. for this variable.Fsetq-default
  426. Set SYMBOL's default value to VAL.  VAL is evaluated; SYMBOL is not.
  427. The default value is seen in buffers that do not have their own values
  428. for this variable.Fmake-variable-buffer-local
  429. Make VARIABLE have a separate value for each buffer.
  430. At any time, the value for the current buffer is in effect.
  431. There is also a default value which is seen in any buffer which has not yet
  432. set its own value.
  433. The function `default-value' gets the default value and `set-default' sets it.
  434. Using `set' or `setq' to set the variable causes it to have a separate value
  435. for the current buffer if it was previously using the default value.Fmake-local-variable
  436. Make VARIABLE have a separate value in the current buffer.
  437. Other buffers will continue to share a common default value.
  438. See also `make-variable-buffer-local'.Fkill-local-variable
  439. Make VARIABLE no longer have a separate value in the current buffer.
  440. From now on the default value will apply in this buffer.Faref
  441. Return the element of ARRAY at index INDEX.
  442. ARRAY may be a vector or a string.  INDEX starts at 0.Faset
  443. Store into the element of ARRAY at index INDEX the value NEWVAL.
  444. ARRAY may be a vector or a string.  INDEX starts at 0.F=
  445. T if two args, both numbers, are equal.F<
  446. T if first arg is less than second arg.  Both must be numbers.F>
  447. T if first arg is greater than second arg.  Both must be numbers.F<=
  448. T if first arg is less than or equal to second arg.  Both must be numbers.F>=
  449. T if first arg is greater than or equal to second arg.  Both must be numbers.F/=
  450. T if first arg is not equal to second arg.  Both must be numbers.Fzerop
  451. T if NUMBER is zero.Fint-to-string
  452. Convert INT to a string by printing it in decimal, with minus sign if negative.Fstring-to-int
  453. Convert STRING to an integer by parsing it as a decimal number.F+
  454. Return sum of any number of numbers.F-
  455. Negate number or subtract numbers.
  456. With one arg, negates it.  With more than one arg,
  457. subtracts all but the first from the first.F*
  458. Returns product of any number of numbers.F/
  459. Returns first argument divided by rest of arguments.F%
  460. Returns remainder of first arg divided by second.Fmax
  461. Return largest of all the arguments (which must be numbers.)Fmin
  462. Return smallest of all the arguments (which must be numbers.)Flogand
  463. Return bitwise and of all the arguments (numbers).Flogior
  464. Return bitwise or of all the arguments (numbers).Flogxor
  465. Return bitwise exclusive-or of all the arguments (numbers).Fash
  466. Return VALUE with its bits shifted left by COUNT.
  467. If COUNT is negative, shifting is actually to the right.
  468. In this case, the sign bit is duplicated.Flsh
  469. Return VALUE with its bits shifted left by COUNT.
  470. If COUNT is negative, shifting is actually to the right.
  471. In this case,  zeros are shifted in on the left.F1+
  472. Return NUMBER plus one.F1-
  473. Return NUMBER minus one.Flognot
  474. Return the bitwise complement of ARG.Fdirectory-files
  475. Return a list of names of files in DIRECTORY.
  476. If FULL is non-NIL, absolute pathnames of the files are returned.
  477. If MATCH is non-NIL, only pathnames containing that regexp are returned.Ffile-name-completion
  478. Complete file name FILE in directory DIR.
  479. Returns the longest string common to all filenames in DIR
  480. that start with FILE.
  481. If there is only one and FILE matches it exactly, returns t.
  482. Returns nil if DIR contains no name starting with FILE.Ffile-name-all-completions
  483. Return a list of all completions of file name FILE in directory DIR.Ffile-name-all-versions
  484. Return a list of all versions of file name FILE in directory DIR.Ffile-attributes
  485. Return a list of attributes of file FILENAME.
  486. Value is nil if specified file cannot be opened.
  487. Otherwise, list elements are:
  488.  0. t for directory, string (name linked to) for symbolic link, or nil.
  489.  1. Number of links to file.
  490.  2. File uid.
  491.  3. File gid.
  492.  4. Last access time, as a list of two integers.
  493.   First integer has high-order 16 bits of time, second has low 16 bits.
  494.  5. Last modification time, likewise.
  495.  6. Last status change time, likewise.
  496.  7. Size in bytes.
  497.  8. File modes, as a string of ten letters or dashes as in ls -l.
  498.  9. t iff file's gid would change if file were deleted and recreated.
  499. 10. inode number.
  500.  
  501. If file does not exists, returns nil.Vcompletion-ignored-extensions
  502. *Completion ignores filenames ending in any string in this list.Fopen-termscript
  503. Start writing all terminal output to FILE as well as the terminal.
  504. FILE = nil means just close any termscript file currently open.Fset-screen-height
  505. Tell redisplay that the screen has LINES lines.
  506. Optional second arg non-nil means that redisplay should use LINES lines
  507. but that the idea of the actual height of the screen should not be changed.Fset-screen-width
  508. Tell redisplay that the screen has COLS columns.
  509. Optional second arg non-nil means that redisplay should use COLS columns
  510. but that the idea of the actual width of the screen should not be changed.Fscreen-height
  511. Return number of lines on screen available for display.Fscreen-width
  512. Return number of columns on screen available for display.Fbaud-rate
  513. Return the output baud rate of the terminal.Fsend-string-to-terminal
  514. Send STRING to the terminal without alteration.
  515. Control characters in STRING will have terminal-dependent effects.Fding
  516. Beep, or flash the screen.
  517. Terminates any keyboard macro currently executing unless an argument
  518. is given.Fsleep-for
  519. Pause, without updating display, for ARG seconds.Fsit-for
  520. Perform redisplay, then wait for ARG seconds or until input is available.
  521. Optional second arg non-nil means don't redisplay.
  522. Redisplay is preempted as always if input arrives, and does not happen
  523. if input is available before it starts.
  524. Value is t if waited the full time with no input arriving.Vinverse-video
  525. *Non-nil means use inverse-video.Vvisible-bell
  526. *Non-nil means try to flash the screen to represent a bell.
  527. Note: for X windows, you must use x-set-bell instead.Vno-redraw-on-reenter
  528. *Non-nil means no need to redraw entire screen after suspending.
  529. It is up to you to set this variable to inform Emacs.Vwindow-system
  530. A symbol naming the window-system under which Emacs is running,
  531. (such as `x'), or nil if emacs is running on an ordinary terminal.Vwindow-system-version
  532. Version number of the window system Emacs is running under.Vcursor-in-echo-area
  533. Non-nil means put cursor in minibuffer after any message displayed there.Fdocumentation
  534. Return the documentation string of FUNCTION.Fdocumentation-property
  535. Return the documentation string that is SYMBOL's PROP property.
  536. This differs from using `get' only in that it can refer to strings
  537. stored in the etc/DOC file.FSnarf-documentation
  538. Used during Emacs initialization, before dumping runnable Emacs,
  539. to find pointers to doc strings stored in etc/DOC... and
  540. record them in function definitions.
  541. One arg, FILENAME, a string which does not include a directory.
  542. The file is found in ../etc now; found in the exec-directory
  543. when doc strings are referred to later in the dumped Emacs.Fsubstitute-command-keys
  544. Return the STRING with substrings of the form \=\[COMMAND]
  545. replaced by either:  a keystroke sequence that will invoke COMMAND,
  546. or "M-x COMMAND" if COMMAND is not on any keys.
  547. Substrings of the form \=\{MAPVAR} are replaced by summaries
  548. (made by describe-bindings) of the value of MAPVAR, taken as a keymap.
  549. Substrings of the form \=\<MAPVAR> specify to use the value of MAPVAR
  550. as the keymap for future \=\[COMMAND] substrings.
  551. \=\= quotes the following character and is discarded;
  552. thus, \=\=\=\= puts \=\= into the output, and \=\=\=\[ puts \=\[ into the output.Fchar-to-string
  553. Convert arg CHAR to a string containing that character.Fstring-to-char
  554. Convert arg STRING to a character, the first character of that string.Fpoint
  555. Return value of point, as an integer.
  556. Beginning of buffer is position (point-min)Fpoint-marker
  557. Return value of point, as a marker object.Fgoto-char
  558. One arg, a number.  Set point to that number.
  559. Beginning of buffer is position (point-min), end is (point-max).Fregion-beginning
  560. Return position of beginning of region, as an integer.Fregion-end
  561. Return position of end of region, as an integer.Fmark
  562. Return this buffer's mark value as integer, or nil if no mark.
  563. If you are using this in an editing command, you are most likely making
  564. a mistake; see the documentation of `set-mark'.Fmark-marker
  565. Return this buffer's mark, as a marker object.
  566. Watch out!  Moving this marker changes the mark position.
  567. The marker will not point anywhere if mark is not set.Fset-mark
  568. Set this buffer's mark to POS.  Don't use this function!
  569. That is to say, don't use this function unless you want
  570. the user to see that the mark has moved, and you want the previous
  571. mark position to be lost.
  572.  
  573. Normally, when a new mark is set, the old one should go on the stack.
  574. This is why most applications should use push-mark, not set-mark.
  575.  
  576. Novice programmers often try to use the mark for the wrong purposes.
  577. The mark saves a location for the user's convenience.
  578. Most editing commands should not alter the mark.
  579. To remember a location for internal use in the Lisp program,
  580. store it in a Lisp variable.  Example:
  581.  
  582.    (let ((beg (point))) (forward-line 1) (delete-region beg (point))).Fsave-excursion
  583. Save point (and mark), execute BODY, then restore point and mark.
  584. Executes BODY just like PROGN.  Point and mark values are restored
  585. even in case of abnormal exit (throw or error).Fbuffer-size
  586. Return the number of characters in the current buffer.Fpoint-min
  587. Return the minimum permissible value of point in the current buffer.
  588. This is 1, unless a clipping restriction is in effect.Fpoint-min-marker
  589. Return a marker to the beginning of the currently visible part of the buffer.
  590. This is the beginning, unless a clipping restriction is in effect.Fpoint-max
  591. Return the maximum permissible value of point in the current buffer.
  592. This is (1+ (buffer-size)), unless a clipping restriction is in effect,
  593. in which case it is less.Fpoint-max-marker
  594. Return a marker to the end of the currently visible part of the buffer.
  595. This is the actual end, unless a clipping restriction is in effect.Ffollowing-char
  596. Return the character following point, as a number.Fpreceding-char
  597. Return the character preceding point, as a number.Fbobp
  598. Return T if point is at the beginning of the buffer.
  599. If the buffer is narrowed, this means the beginning of the narrowed part.Feobp
  600. Return T if point is at the end of the buffer.
  601. If the buffer is narrowed, this means the end of the narrowed part.Fbolp
  602. Return T if point is at the beginning of a line.Feolp
  603. Return T if point is at the end of a line.
  604. `End of a line' includes point being at the end of the buffer.Fchar-after
  605. One arg, POS, a number.  Return the character in the current buffer
  606. at position POS.
  607. If POS is out of range, the value is NIL.Fuser-login-name
  608. Return the name under which user logged in, as a string.
  609. This is based on the effective uid, not the real uid.Fuser-real-login-name
  610. Return the name of the user's real uid, as a string.
  611. Differs from user-login-name when running under su.Fuser-uid
  612. Return the effective uid of Emacs, as an integer.Fuser-real-uid
  613. Return the real uid of Emacs, as an integer.Fuser-full-name
  614. Return the full name of the user logged in, as a string.Fsystem-name
  615. Return the name of the machine you are running on, as a string.Fcurrent-time-string
  616. Return the current time, as a human-readable string.Finsert
  617. Any number of args, strings or chars.  Insert them after point, moving point forward.Finsert-before-markers
  618. Any number of args, strings or chars.  Insert them after point,
  619. moving point forward.  Also, any markers pointing at the insertion point
  620. get relocated to point after the newly inserted text.Finsert-char
  621. Insert COUNT (second arg) copies of CHAR (first arg).
  622. Both arguments are required.Fbuffer-substring
  623. Return the contents of part of the current buffer as a string.
  624. The two arguments specify the start and end, as character numbers.Fbuffer-string
  625. Return the contents of the current buffer as a string.Finsert-buffer-substring
  626. Insert before point a substring of the contents buffer BUFFER.
  627. BUFFER may be a buffer or a buffer name.
  628. Arguments START and END are character numbers specifying the substring.
  629. They default to the beginning and the end of BUFFER.Fsubst-char-in-region
  630. From START to END, replace FROMCHAR with TOCHAR each time it occurs.
  631. If optional arg NOUNDO is non-nil, don't record this change for undo
  632. and don't mark the buffer as really changed.Fdelete-region
  633. Delete the text between point and mark.
  634. When called from a program, expects two arguments,
  635. character numbers specifying the stretch to be deleted.Fwiden
  636. Remove restrictions from current buffer, allowing full text to be seen and edited.Fnarrow-to-region
  637. Restrict editing in this buffer to the current region.
  638. The rest of the text becomes temporarily invisible and untouchable
  639. but is not deleted; if you save the buffer in a file, the invisible
  640. text is included in the file.  \[widen] makes all visible again.
  641.  
  642. When calling from a program, pass two arguments; character numbers
  643. bounding the text that should remain visible.Fsave-restriction
  644. Execute the body, undoing at the end any changes to current buffer's restrictions.
  645. Changes to restrictions are made by narrow-to-region or by widen.
  646. Thus, the restrictions are the same after this function as they were before it.
  647. The value returned is that returned by the last form in the body.
  648.  
  649. This function can be confused if, within the body, you widen
  650. and then make changes outside the area within the saved restrictions.
  651.  
  652. Note: if you are using both save-excursion and save-restriction,
  653. use save-excursion outermost.Fmessage
  654. Print a one-line message at the bottom of the screen.
  655. The first argument is a control string.
  656. It may contain %s or %d or %c to print successive following arguments.
  657. %s means print an argument as a string, %d means print as number in decimal,
  658. %c means print a number as a single character.
  659. The argument used by %s must be a string or a symbol;
  660. the argument used by %d or %c must be a number.Fformat
  661. Format a string out of a control-string and arguments.
  662. The first argument is a control string.
  663. It, and subsequent arguments substituted into it, become the value, which is a string.
  664. It may contain %s or %d or %c to substitute successive following arguments.
  665. %s means print an argument as a string, %d means print as number in decimal,
  666. %c means print a number as a single character.
  667. The argument used by %s must be a string or a symbol;
  668. the argument used by %d, %b, %o, %x or %c must be a number.Fchar-equal
  669. T if args (both characters (numbers)) match.  May ignore case.
  670. Case is ignored if the current buffer specifies to do so.Fgetenv
  671. Return the value of environment variable VAR, as a string.
  672. VAR should be a string.  If the environment variable VAR is not defined,
  673. the value is nil.Fkill-emacs
  674. Exit the Emacs job and kill it.  ARG means no query.
  675. If emacs is running noninteractively and ARG is an integer,
  676. return ARG as the exit program code.Fdump-emacs-data
  677. Dump current state of Emacs into data file FILENAME.
  678. This function exists on systems that use HAVE_SHM.Fdump-emacs
  679. Dump current state of Emacs into executable file FILENAME.
  680. Take symbols from SYMFILE (presumably the file you executed to run Emacs).Vcommand-line-args
  681. Args passed by shell to Emacs, as a list of strings.Vsystem-type
  682. Symbol indicating type of operating system you are using.Vnoninteractive
  683. Non-nil means Emacs is running without interactive terminal.Vkill-emacs-hook
  684. Function called, if non-nil, whenever kill-emacs is called.Fgetenv
  685. Return the value of environment variable VAR, as a string.
  686. When invoked interactively, print the value in the echo area.
  687. VAR is a string, the name of the variable,
  688.  or the symbol t, meaning to return an alist representing the
  689.  current environment.Fsetenv
  690. Return the value of environment variable VAR, as a string.
  691. When invoked interactively, print the value in the echo area.
  692. VAR is a string, the name of the variable.For
  693. Eval args until one of them yields non-NIL, then return that value.
  694. The remaining args are not evalled at all.
  695. If all args return NIL, return NIL.Fand
  696. Eval args until one of them yields NIL, then return NIL.
  697. The remaining args are not evalled at all.
  698. If no arg yields NIL, return the last arg's value.Fif
  699. (if C T E...) if C yields non-NIL do T, else do E...
  700. Returns the value of T or the value of the last of the E's.
  701. There may be no E's; then if C yields NIL, the value is NIL.Fcond
  702. (cond CLAUSES...) tries each clause until one succeeds.
  703. Each clause looks like (C BODY...).  C is evaluated
  704. and, if the value is non-nil, this clause succeeds:
  705. then the expressions in BODY are evaluated and the last one's
  706. value is the value of the cond expression.
  707. If a clause looks like (C), C's value if non-nil is returned from cond.
  708. If no clause succeeds, cond returns nil.Fprogn
  709. Eval arguments in sequence, and return the value of the last one.Fprog1
  710. Eval arguments in sequence, then return the FIRST arg's value.
  711. This value is saved during the evaluation of the remaining args,
  712. whose values are discarded.Fprog2
  713. Eval arguments in sequence, then return the SECOND arg's value.
  714. This value is saved during the evaluation of the remaining args,
  715. whose values are discarded.Fsetq
  716. (setq SYM VAL SYM VAL ...) sets each SYM to the value of its VAL.
  717. The SYMs are not evaluated.  Thus (setq x y) sets x to the value of y.
  718. Each SYM is set before the next VAL is computed.Fquote
  719. Return the argument, without evaluating it.  (quote x)  yields  x.Ffunction
  720. Quote a function object.
  721. Equivalent to the quote function in the interpreter,
  722. but causes the compiler to compile the argument as a function
  723. if it is not a symbol.Finteractive-p
  724. Return t if function in which this appears was called interactively.
  725. This means that the function was called with call-interactively (which
  726. includes being called as the binding of a key)
  727. and input is currently coming from the keyboard (not in keyboard macro).Fdefun
  728. (defun NAME ARGLIST [DOCSTRING] BODY...) defines NAME as a function.
  729. The definition is (lambda ARGLIST [DOCSTRING] BODY...).
  730. See also the function  interactive .Fdefmacro
  731. (defmacro NAME ARGLIST [DOCSTRING] BODY...) defines NAME as a macro.
  732. The definition is (macro lambda ARGLIST [DOCSTRING] BODY...).
  733. When the macro is called, as in (NAME ARGS...),
  734. the function (lambda ARGLIST BODY...) is applied to
  735. the list ARGS... as it appears in the expression,
  736. and the result should be a form to be evaluated instead of the original.Fdefvar
  737. (defvar SYMBOL INITVALUE DOCSTRING) defines SYMBOL as an advertised variable.
  738. INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.
  739. INITVALUE and DOCSTRING are optional.
  740. If DOCSTRING starts with *, this variable is identified as a user option.
  741.  This means that M-x set-variable and M-x edit-options recognize it.
  742. If INITVALUE is missing, SYMBOL's value is not set.Fdefconst
  743. (defconst SYMBOL INITVALUE DOCSTRING) defines SYMBOL as a constant variable.
  744. The intent is that programs do not change this value (but users may).
  745. Always sets the value of SYMBOL to the result of evalling INITVALUE.
  746. DOCSTRING is optional.
  747. If DOCSTRING starts with *, this variable is identified as a user option.
  748.  This means that M-x set-variable and M-x edit-options recognize it.Fuser-variable-p
  749. Returns t if VARIABLE is intended to be set and modified by users,
  750. as opposed to by programs.
  751. Determined by whether the first character of the documentation
  752. for the variable is "*"Flet*
  753. (let* VARLIST BODY...) binds variables according to VARLIST then executes BODY.
  754. The value of the last form in BODY is returned.
  755. Each element of VARLIST is a symbol (which is bound to NIL)
  756. or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
  757. Each VALUEFORM can refer to the symbols already bound by this VARLIST.Flet
  758. (let VARLIST BODY...) binds variables according to VARLIST then executes BODY.
  759. The value of the last form in BODY is returned.
  760. Each element of VARLIST is a symbol (which is bound to NIL)
  761. or a list (SYMBOL VALUEFORM) (which binds SYMBOL to the value of VALUEFORM).
  762. All the VALUEFORMs are evalled before any symbols are bound.Fwhile
  763. (while TEST BODY...) if TEST yields non-NIL, execute the BODY forms and repeat.Fmacroexpand
  764. If FORM is a macro call, expand it.
  765. If the result of expansion is another macro call, expand it, etc.
  766. Return the ultimate expansion.
  767. The second optional arg ENVIRONMENT species an environment of macro
  768. definitions to shadow the loaded ones for use in file byte-compilation.Fcatch
  769. (catch TAG BODY...) perform BODY allowing nonlocal exits using (throw TAG).
  770. TAG is evalled to get the tag to use.  throw  to that tag exits this catch.
  771. Then the BODY is executed.  If no  throw  happens, the value of the last BODY
  772. form is returned from  catch.  If a  throw  happens, it specifies the value to
  773. return from  catch.Fthrow
  774. (throw TAG VALUE): throw to the catch for TAG and return VALUE from it.
  775. Both TAG and VALUE are evalled.Funwind-protect
  776. Do BODYFORM, protecting with UNWINDFORMS.
  777. Usage looks like (unwind-protect BODYFORM UNWINDFORMS...) 
  778. If BODYFORM completes normally, its value is returned
  779. after executing the UNWINDFORMS.
  780. If BODYFORM exits nonlocally, the UNWINDFORMS are executed anyway.Fcondition-case
  781. Regain control when an error is signaled.
  782.  (condition-case VAR BODYFORM HANDLERS...)
  783. executes BODYFORM and returns its value if no error happens.
  784. Each element of HANDLERS looks like (CONDITION-NAME BODY...)
  785. where the BODY is made of Lisp expressions.
  786. The handler is applicable to an error
  787. if CONDITION-NAME is one of the error's condition names.
  788. When a handler handles an error,
  789. control returns to the condition-case and the handler BODY... is executed
  790. with VAR bound to (SIGNALED-CONDITIONS . SIGNAL-DATA).
  791. The value of the last BODY form is returned from the condition-case.
  792. See SIGNAL for more info.Fsignal
  793. Signal an error.  Args are SIGNAL-NAME, and associated DATA.
  794. A signal name is a symbol with an  error-conditions  property
  795. that is a list of condition names.
  796. A handler for any of those names will get to handle this signal.
  797. The symbol  error  should always be one of them.
  798.  
  799. DATA should be a list.  Its elements are printed as part of the error message.
  800. If the signal is handled, DATA is made available to the handler.
  801. See  condition-case.Fcommandp
  802. T if FUNCTION makes provisions for interactive calling.
  803. This means it contains a description for how to read arguments to give it.
  804. The value is nil for an invalid function or a symbol with no function definition.
  805.  
  806. Interactively callable functions include strings (treated as keyboard macros),
  807. lambda-expressions that contain a top-level call to  interactive ,
  808. autoload definitions made by  autoload  with non-nil fourth argument,
  809. and some of the built-in functions of Lisp.
  810.  
  811. Also, a symbol is commandp if its function definition is commandp.Fautoload
  812. Define FUNCTION to autoload from FILE.
  813. FUNCTION is a symbol; FILE is a file name string to pass to  load.
  814. Third arg DOCSTRING is documentation for the function.
  815. Fourth arg FROM_KBD if non-nil says function can be called interactively.
  816. Fifth arg MACRO if non-nil says the function is really a macro.
  817. Third through fifth args give info about the real definition.
  818. They default to nil.
  819. If FUNCTION is already defined other than as an autoload,
  820. this does nothing and returns nil.Feval
  821. Evaluate FORM and return its value.Fapply
  822. Call FUNCTION, passing remaining arguments to it.  The last argument
  823. is a list of arguments to pass.
  824. Thus, (apply '+ 1 2 '(3 4)) returns 10.Ffuncall
  825. Call first argument as a function, passing remaining arguments to it.
  826. Thus,  (funcall 'cons 'x 'y)  returns  (x . y).Fbacktrace-debug
  827. Set the debug-on-exit flag of eval frame LEVEL levels down to FLAG.
  828. The debugger is entered when that frame exits, if the flag is non-nil.Fbacktrace
  829. Print a trace of Lisp function calls currently active.
  830. Output stream used is value of standard-output.Vmax-specpdl-size
  831. Limit on number of Lisp variable bindings & unwind-protects before error.Vmax-lisp-eval-depth
  832. Limit on depth in eval, apply and funcall before error.Vquit-flag
  833. Non-nil causes  eval  to abort, unless  inhibit-quit  is non-nil.
  834. Typing C-G sets  quit-flag  non-nil, regardless of  inhibit-quit.Vinhibit-quit
  835. Non-nil inhibits C-g quitting from happening immediately.
  836. Note that  quit-flag  will still be set by typing C-g,
  837. so a quit will be signalled as soon as  inhibit-quit  is nil.
  838. To prevent this happening, set  quit-flag  to nil
  839. before making  inhibit-quit  nil.Vstack-trace-on-error
  840. *Non-nil means automatically display a backtrace buffer
  841. after any error that is handled by the editor command loop.Vdebug-on-error
  842. *Non-nil means enter debugger if an error is signaled.
  843. Does not apply to errors handled by condition-case.
  844. See also variable debug-on-quit.Vdebug-on-quit
  845. *Non-nil means enter debugger if quit is signaled (C-G, for example).
  846. Does not apply if quit is handled by a condition-case.Vdebug-on-next-call
  847. Non-nil means enter debugger before next eval, apply or funcall.Vdebugger
  848. Function to call to invoke debugger.
  849. If due to frame exit, args are 'exit and value being returned;
  850.  this function's value will be returned instead of that.
  851. If due to error, args are 'error and list of signal's args.
  852. If due to apply or funcall entry, one arg, 'lambda.
  853. If due to eval entry, one arg, 't.Vmocklisp-arguments
  854. While in a mocklisp function, the list of its unevaluated args.Ffile-name-directory
  855. Return the directory component in file name NAME.
  856. Return nil if NAME does not include a directory.
  857. Otherwise returns a directory spec.
  858. Given a Unix syntax file name, returns a string ending in slash;
  859. on VMS, perhaps instead a string ending in :, ] or >.Ffile-name-nondirectory
  860. Return file name NAME sans its directory.
  861. For example, in a Unix-syntax file name,
  862. this is everything after the last slash,
  863. or the entire name if it contains no slash.Ffile-name-as-directory
  864. Return a string representing file FILENAME interpreted as a directory.
  865. This string can be used as the value of default-directory
  866. or passed as second argument to expand-file-name.
  867. For a Unix-syntax file name, just appends a slash.
  868. On VMS, converts "[X]FOO.DIR" to "[X.FOO]", etc.Fdirectory-file-name
  869. Returns the file name of the directory named DIR.
  870. This is the name of the file that holds the data for the directory DIR.
  871. In Unix-syntax, this just removes the final slash.
  872. On VMS, given a VMS-syntax directory name such as "[X.Y]",
  873. returns a file name such as "[X]Y.DIR.1".Fmake-temp-name
  874. Generate temporary name (string) starting with PREFIX (a string).Fexpand-file-name
  875. Convert FILENAME to absolute, and canonicalize it.
  876. Second arg DEFAULT is directory to start with if FILENAME is relative
  877.  (does not start with slash); if DEFAULT is nil or missing,
  878. the current buffer's value of default-directory is used.
  879. Filenames containing . or .. as components are simplified;
  880. initial ~ is expanded.  See also the function  substitute-in-file-name.Fsubstitute-in-file-name
  881. Substitute environment variables referred to in STRING.
  882. A $ begins a request to substitute; the env variable name is the alphanumeric
  883. characters and underscores after the $, or is surrounded by braces.
  884. If a ~ appears following a /, everything through that / is discarded.
  885. On VMS, $ substitution is not done; this function does little and only
  886. duplicates what expand-file-name does.Fcopy-file
  887. Copy FILE to NEWNAME.  Both args strings.
  888. Signals a  file-already-exists  error if NEWNAME already exists,
  889. unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
  890. A number as third arg means request confirmation if NEWNAME already exists.
  891. This is what happens in interactive use with M-x.
  892. Fourth arg non-nil means give the new file the same last-modified time
  893. that the old one has.  (This works on only some systems.)Fdelete-file
  894. Delete specified file.  One argument, a file name string.
  895. If file has multiple names, it continues to exist with the other names.Frename-file
  896. Rename FILE as NEWNAME.  Both args strings.
  897. If file has names other than FILE, it continues to have those names.
  898. Signals a  file-already-exists  error if NEWNAME already exists
  899. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  900. A number as third arg means request confirmation if NEWNAME already exists.
  901. This is what happens in interactive use with M-x.Fadd-name-to-file
  902. Give FILE additional name NEWNAME.  Both args strings.
  903. Signals a  file-already-exists  error if NEWNAME already exists
  904. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  905. A number as third arg means request confirmation if NEWNAME already exists.
  906. This is what happens in interactive use with M-x.Fmake-symbolic-link
  907. Make a symbolic link to TARGET, named LINKNAME.  Both args strings.
  908. There is no completion for LINKNAME, because it is read simply as a string;
  909. this is to enable you to make a link to a relative file name.
  910.  
  911. Signals a  file-already-exists  error if LINKNAME already exists
  912. unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
  913. A number as third arg means request confirmation if LINKNAME already exists.
  914. This happens for interactive use with M-x.Fdefine-logical-name
  915. Define the job-wide logical name NAME to have the value STRING.
  916. If STRING is nil or a null string, the logical name NAME is deleted.Fsysnetunam
  917. Open a network connection to PATH using LOGIN as the login string.Ffile-name-absolute-p
  918. Return t if file FILENAME specifies an absolute path name.Ffile-exists-p
  919. Return t if file FILENAME exists.  (This does not mean you can read it.)
  920. See also file-readable-p and file-attributes.Ffile-readable-p
  921. Return t if file FILENAME exists and you can read it.
  922. See also file-exists-p and file-attributes.Ffile-symlink-p
  923. If file FILENAME is the name of a symbolic link
  924. returns the name of the file to which it is linked.
  925. Otherwise returns NIL.Ffile-writable-p
  926. Return t if file FILENAME can be written or created by you.Ffile-directory-p
  927. Return t if file FILENAME is the name of a directory as a file.
  928. A directory name spec may be given instead; then the value is t
  929. if the directory so specified exists and really is a directory.Ffile-modes
  930. Return mode bits of FILE, as an integer.Fset-file-modes
  931. Set mode bits of FILE to MODE (an integer).
  932. Only the 12 low bits of MODE are used.Ffile-newer-than-file-p
  933. Return t if file FILE1 is newer than file FILE2.
  934. If FILE1 does not exist, the answer is nil;
  935. otherwise, if FILE2 does not exist, the answer is t.Finsert-file-contents
  936. Insert contents of file FILENAME after point.
  937. Returns list of absolute pathname and length of data inserted.
  938. If second argument VISIT is non-nil, the buffer's visited filename
  939. and last save file modtime are set, and it is marked unmodified.
  940. If visiting and the file does not exist, visiting is completed
  941. before the error is signaled.Fwrite-region
  942. Write current region into specified file.
  943. When called from a program, takes three arguments:
  944. START, END and FILENAME.  START and END are buffer positions.
  945. Optional fourth argument APPEND if non-nil means
  946.   append to existing file contents (if any).
  947. Optional fifth argument VISIT if t means
  948.   set last-save-file-modtime of buffer to this file's modtime
  949.   and mark buffer not modified.
  950. If VISIT is neither t nor nil, it means do not print
  951.   the "Wrote file" message.Fverify-visited-file-modtime
  952. Return t if last mod time of BUF's visited file matches what BUF records.
  953. This means that the file has not been changed since it was visited or saved.Fclear-visited-file-modtime
  954. Clear out records of last mod time of visited file.
  955. Next attempt to save will certainly not complain of a discrepancy.Fdo-auto-save
  956. Auto-save all buffers that need it.
  957. This is all buffers that have auto-saving enabled
  958. and are changed since last auto-saved.
  959. Auto-saving writes the buffer into a file
  960. so that your editing is not lost if the system crashes.
  961. This file is not the file you visited; that changes only when you save.
  962.  
  963. Non-nil argument means do not print any message if successful.Fset-buffer-auto-saved
  964. Mark current buffer as auto-saved with its current text.
  965. No auto-save file will be written until the buffer changes again.Frecent-auto-save-p
  966. Return t if buffer has been auto-saved since last read in or saved.Fread-file-name-internal
  967. Internal subroutine for read-file-name.  Do not call this.Fread-file-name
  968. Read file name, prompting with PROMPT and completing in directory DIR.
  969. Value is not expanded!  You must call expand-file-name yourself.
  970. Default name to DEFAULT if user enters a null string.
  971. Fourth arg MUSTMATCH non-nil means require existing file's name.
  972.  Non-nil and non-t means also require confirmation after completion.
  973. DIR defaults to current buffer's directory default.Vinsert-default-directory
  974. *Non-nil means when reading a filename start with default dir in minibuffer.Vvms-stmlf-recfm
  975. *Non-nil means write new files with record format `stmlf'.
  976. nil means use format `var'.  This variable is meaningful only on VMS.Fidentity
  977. Return the argument unchanged.Frandom
  978. Return a pseudo-random number.
  979. On most systems all integers representable in Lisp are equally likely.
  980.   This is 24 bits' worth.
  981. On some systems, absolute value of result never exceeds 2 to the 14.
  982. If optional argument is supplied as  t,
  983.  the random number seed is set based on the current time and pid.Flength
  984. Return the length of vector, list or string SEQUENCE.Fstring-equal
  985. T if two strings have identical contents.
  986. Symbols are also allowed; their print names are used instead.Fstring-lessp
  987. T if first arg string is less than second in lexicographic order.
  988. Symbols are also allowed; their print names are used instead.Fappend
  989. Concatenate arguments and make the result a list.
  990. The result is a list whose elements are the elements of all the arguments.
  991. Each argument may be a list, vector or string.Fconcat
  992. Concatenate arguments and make the result a string.
  993. The result is a string whose elements are the elements of all the arguments.
  994. Each argument may be a string, a list of numbers, or a vector of numbers.Fvconcat
  995. Concatenate arguments and make the result a vector.
  996. The result is a vector whose elements are the elements of all the arguments.
  997. Each argument may be a list, vector or string.Fcopy-sequence
  998. Return a copy of a list, vector or string.Fcopy-alist
  999. Return a copy of ALIST.
  1000. This is a new alist which represents the same mapping
  1001. from objects to objects, but does not share the alist structure with ALIST.
  1002. The objects mapped (cars and cdrs of elements of the alist)
  1003. are shared, however.Fsubstring
  1004. Return a substring of STRING, starting at index FROM and ending before TO.
  1005. TO may be nil or omitted; then the substring runs to the end of STRING.
  1006. If FROM or TO is negative, it counts from the end.Fnthcdr
  1007. Takes cdr N times on LIST, returns the result.Fnth
  1008. Returns the Nth element of LIST.
  1009. N counts from zero.  If LIST is not that long, nil is returned.Felt
  1010. Returns element of SEQUENCE at index N.Fmemq
  1011. Returns non-nil if ELT is an element of LIST.  Comparison done with EQ.
  1012. The value is actually the tail of LIST whose car is ELT.Fassq
  1013. Returns non-nil if ELT is the car of an element of LIST.  Comparison done with eq.
  1014. The value is actually the element of LIST whose car is ELT.Fassoc
  1015. Returns non-nil if ELT is the car of an element of LIST.  Comparison done with  equal.
  1016. The value is actually the element of LIST whose car is ELT.Frassq
  1017. Returns non-nil if ELT is the cdr of an element of LIST.  Comparison done with EQ.
  1018. The value is actually the element of LIST whose cdr is ELT.Fdelq
  1019. Deletes by side effect any occurrences of ELT as a member of LIST.
  1020. The modified LIST is returned.
  1021. If the first member of LIST is ELT, there is no way to remove it by side effect;
  1022. therefore, write  (setq foo (delq element foo))  to be sure of changing  foo.Fnreverse
  1023. Reverses LIST by modifying cdr pointers.  Returns the beginning of the reversed list.Freverse
  1024. Reverses LIST, copying.  Returns the beginning of the reversed list.
  1025. See also the function  nreverse, which is used more often.Fsort
  1026. Sort LIST, stably, comparing elements using PREDICATE.
  1027. Returns the sorted list.  LIST is modified by side effects.
  1028. PREDICATE is called with two elements of LIST, and should return T
  1029. if the first element is "less" than the second.Fget
  1030. Return the value of SYMBOL's PROPNAME property.
  1031. This is the last VALUE stored with  (put SYMBOL PROPNAME VALUE).Fput
  1032. Store SYMBOL's PROPNAME property with value VALUE.
  1033. It can be retrieved with  (get SYMBOL PROPNAME).Fequal
  1034. T if two Lisp objects have similar structure and contents.
  1035. They must have the same data type.
  1036. Conses are compared by comparing the cars and the cdrs.
  1037. Vectors and strings are compared element by element.
  1038. Numbers are compared by value.  Symbols must match exactly.Ffillarray
  1039. Store each element of ARRAY with ITEM.  ARRAY is a vector or string.Fnconc
  1040. Concatenate any number of lists by altering them.
  1041. Only the last argument is not altered, and need not be a list.Fmapconcat
  1042. Apply FN to each element of SEQ, and concat the results as strings.
  1043. In between each pair of results, stick in SEP.
  1044. Thus, " " as SEP results in spaces between the values return by FN.Fmapcar
  1045. Apply FUNCTION to each element of LIST, and make a list of the results.
  1046. The result is a list just as long as LIST.Fy-or-n-p
  1047. Ask user a "y or n" question.  Return t if answer is "y".
  1048. No confirmation of the answer is requested; a single character is enough.
  1049. Also accepts Space to mean yes, or Delete to mean no.Fyes-or-no-p
  1050. Ask user a yes or no question.  Return t if answer is yes.
  1051. The user must confirm the answer with a newline, and can rub it out if not confirmed.Fload-average
  1052. Return the current 1 minute, 5 minute and 15 minute load averages
  1053. in a list (all floating point load average values are multiplied by 100
  1054. and then turned into integers).Ffeaturep
  1055. Returns t if FEATURE is present in this Emacs.
  1056. Use this to conditionalize execution of lisp code based on the presence or
  1057. absence of emacs or environment extensions.
  1058. Use  provide  to declare that a feature is available.
  1059. This function looks at the value of the variable  features.Fprovide
  1060. Announce that FEATURE is a feature of the current Emacs.Frequire
  1061. If FEATURE is not present in Emacs (ie (featurep FEATURE) is false),
  1062. load FILENAME.  FILENAME is optional and defaults to FEATURE.Vfeatures
  1063. A list of symbols which are the features of the executing emacs.
  1064. Used by  featurep  and  require, and altered by  provide.Fcurrent-column
  1065. Return the horizontal position of point.  Beginning of line is column 0.
  1066. This is calculated by adding together the widths of all the displayed
  1067. representations of the character between the start of the previous line
  1068. and point.  (eg control characters will have a width of 2 or 4, tabs
  1069. will have a variable width)
  1070. Ignores finite width of screen, which means that this function may return
  1071. values greater than (screen-width).
  1072. Whether the line is visible (if `selective-display' is t) has no effect.Findent-to
  1073. Indent from point with tabs and spaces until COLUMN is reached.
  1074. Always do at least MIN spaces even if that goes past COLUMN;
  1075. by default, MIN is zero.Fcurrent-indentation
  1076. Return the indentation of the current line.
  1077. This is the horizontal position of the character
  1078. following any initial whitespace.Fmove-to-column
  1079. Move point to column COLUMN in the current line.
  1080. COLUMN is calculated by adding together the widths of all the displayed
  1081. representations of the character between the start of the previous line
  1082. and point.  (eg control characters will have a width of 2 or 4, tabs
  1083. will have a variable width)
  1084. Ignores finite width of screen, which means that this function may be
  1085. passed values greater than (screen-width)Fvertical-motion
  1086. Move to start of screen line LINES lines down.
  1087. If LINES is negative, this is moving up.
  1088. Sets point to position found; this may be start of line
  1089.  or just the start of a continuation line.
  1090. Returns number of lines moved; may be closer to zero than LINES
  1091.  if beginning or end of buffer was reached.Vindent-tabs-mode
  1092. *Indentation can insert tabs if this is non-nil.
  1093. Setting this variable automatically makes it local to the current buffer.Frecursive-edit
  1094. Invoke the editor command loop recursively.
  1095. Do (throw 'exit nil) within the command loop to make this function return,
  1096. or (throw 'exit t) to make this function signal an error.
  1097. This function is called by the editor initialization
  1098. to begin editing.Ftop-level
  1099. Exit all recursive editing levels.Fexit-recursive-edit
  1100. Exit from the innermost recursive edit or minibuffer.Fabort-recursive-edit
  1101. Abort the command that requested this recursive edit or minibuffer input.Fread-key-sequence
  1102. Read a sequence of keystrokes and return as a string.
  1103. The sequence is sufficient to specify a non-prefix command
  1104. starting from the current local and global keymaps.
  1105. A C-g typed while in this function is treated like
  1106. any other character, and quit-flag is not set.
  1107. One arg, PROMPT, a prompt string or  nil, meaning do not prompt specially.Fcommand-execute
  1108. Execute CMD as an editor command.
  1109. CMD must be a symbol that satisfies the `commandp' predicate.
  1110. Optional second arg RECORD-FLAG non-nil
  1111. means unconditionally put this command in the command-history.
  1112. Otherwise, this is done only if an arg is read using the minibuffer.Fexecute-extended-command
  1113. Read function name, then read its arguments and call it.Finput-pending-p
  1114. T if command input is currently available with no waiting.
  1115. Actually, the value is NIL only if we can be sure that no input is available.Frecent-keys
  1116. Return string of last 100 chars read from terminal.Fthis-command-keys
  1117. Return string of the keystrokes that invoked this command.Frecursion-depth
  1118. Return the current depth in recursive edits.Fopen-dribble-file
  1119. Start writing all keyboard characters to FILE.
  1120. Use nil as an argument to close the dribble file.Fdiscard-input
  1121. Discard the contents of the terminal input buffer.
  1122. Also flush any kbd macro definition in progress.Fsuspend-emacs
  1123. Stop Emacs and return to superior process.  You can resume.
  1124. If optional arg STUFFSTRING is non-nil, its characters are stuffed
  1125. to be read as terminal input by Emacs's superior shell.
  1126. Before suspending, if `suspend-hook' is bound and value is non-nil
  1127. call the value as a function of no args.  Don't suspend if it returns non-nil.
  1128. Otherwise, suspend normally and after resumption call
  1129. `suspend-resume-hook' if that is bound and non-nil.Fset-input-mode
  1130. Set mode of reading keyboard input.
  1131. First arg non-nil means use input interrupts; nil means use CBREAK mode.
  1132. Second arg non-nil means use ^S/^Q flow control for output to terminal
  1133.  (no effect except in CBREAK mode).
  1134. Optional third arg non-nil specifies character to use for quitting.
  1135.  
  1136. Note that the arguments will change incompatibly in version 19.Vdisabled-command-hook
  1137. Value is called instead of any command that is disabled
  1138. (has a non-nil  disabled  property).Vmeta-flag
  1139. *Non-nil means treat 0200 bit in terminal input as Meta bit.Vlast-command-char
  1140. Last terminal input character that was part of a command, as an integer.Vlast-input-char
  1141. Last terminal input character, as an integer.Vunread-command-char
  1142. Character to be read as next input from command input stream, or -1 if none.Vmeta-prefix-char
  1143. Meta-prefix character code.  Meta-foo as command input
  1144. turns into this character followed by foo.Vlast-command
  1145. The last command executed.  Normally a symbol with a function definition,
  1146. but can be whatever was found in the keymap, or whatever the variable
  1147. `this-command' was set to by that command.Vthis-command
  1148. The command now being executed.
  1149. The command can set this variable; whatever is put here
  1150. will be in  last-command  during the following command.Vauto-save-interval
  1151. *Number of keyboard input characters between auto-saves.
  1152. Zero means disable autosaving.Vecho-keystrokes
  1153. *Nonzero means echo unfinished commands after this many seconds of pause.Vpolling-period
  1154. *Interval between polling for input during Lisp execution.
  1155. The reason for polling is to make C-g work to stop a running program.
  1156. Polling is needed only when using X windows and SIGIO does not work.
  1157. Polling is automatically disabled in all other cases.Vhelp-char
  1158. Character to recognize as meaning Help.
  1159. When it is read, do (eval help-form), and display result if it's a string.
  1160. If help-form's value is nil, this char can be read normally.Vhelp-form
  1161. Form to execute when character help-char is read.
  1162. If the form returns a string, that string is displayed.
  1163. If help-form is nil, the help char is not recognized.Vtop-level
  1164. Form to evaluate when Emacs starts up.
  1165. Useful to set before you dump a modified Emacs.Vkeyboard-translate-table
  1166. String used as translate table for keyboard input, or nil.
  1167. Each character is looked up in this string and the contents used instead.
  1168. If string is of length N, character codes N and up are untranslated.Fmake-keymap
  1169. Construct and return a new keymap, a vector of length 128.
  1170. All entries in it are nil, meaning "command undefined".Fmake-sparse-keymap
  1171. Construct and return a new sparse-keymap list.
  1172. Its car is 'keymap and its cdr is an alist of (CHAR . DEFINITION).
  1173. Initially the alist is nil.Fkeymapp
  1174. Return t if ARG is a keymap.
  1175. A keymap is a vector of length 128, or a list (keymap . ALIST),
  1176. where alist elements look like (CHAR . DEFN).
  1177. A symbol whose function definition is a keymap is itself a keymap.Fcopy-keymap
  1178. Return a copy of the keymap KEYMAP.
  1179. The copy starts out with the same definitions of KEYMAP,
  1180. but changing either the copy or KEYMAP does not affect the other.
  1181. Any key definitions that are subkeymaps are recursively copied.
  1182. However, a key definition which is a symbol whose definition is a keymap
  1183. is not copied.Fdefine-key
  1184. Args KEYMAP, KEY, DEF.  Define key sequence KEY, in KEYMAP, as DEF.
  1185. KEYMAP is a keymap.  KEY is a string meaning a sequence of keystrokes.
  1186. DEF is anything that can be a key's definition:
  1187.  nil (means key is undefined in this keymap),
  1188.  a command (a Lisp function suitable for interactive calling)
  1189.  a string (treated as a keyboard macro),
  1190.  a keymap (to define a prefix key),
  1191.  a list (KEYMAP . CHAR), meaning use definition of CHAR in map KEYMAP,
  1192.  or a symbol.  The symbol's function definition is used as the key's
  1193. definition, and may be any of the above (including another symbol).Flookup-key
  1194. In keymap KEYMAP, look up key sequence KEY.  Return the definition.
  1195. nil means undefined.  See doc of define-key for kinds of definitions.
  1196. Number as value means KEY is "too long";
  1197. that is, characters in it except for the last one
  1198. fail to be a valid sequence of prefix characters in KEYMAP.
  1199. The number is how many characters at the front of KEY
  1200. it takes to reach a non-prefix command.Fkey-binding
  1201. Return the definition for command KEYS in current keymaps.
  1202. KEYS is a string, a sequence of keystrokes.
  1203. The definition is probably a symbol with a function definition.Flocal-key-binding
  1204. Return the definition for command KEYS in current local keymap only.
  1205. KEYS is a string, a sequence of keystrokes.
  1206. The definition is probably a symbol with a function definition.Fglobal-key-binding
  1207. Return the definition for command KEYS in current global keymap only.
  1208. KEYS is a string, a sequence of keystrokes.
  1209. The definition is probably a symbol with a function definition.Fglobal-set-key
  1210. Give KEY a definition of COMMAND.
  1211. COMMAND is a symbol naming an interactively-callable function.
  1212. KEY is a string representing a sequence of keystrokes.
  1213. Note that if KEY has a local definition in the current buffer
  1214. that local definition will continue to shadow any global definition.Flocal-set-key
  1215. Give KEY a local definition of COMMAND.
  1216. COMMAND is a symbol naming an interactively-callable function.
  1217. KEY is a string representing a sequence of keystrokes.
  1218. The definition goes in the current buffer's local map,
  1219. which is shared with other buffers in the same major mode.Fglobal-unset-key
  1220. Remove global definition of KEY.
  1221. KEY is a string representing a sequence of keystrokes.Flocal-unset-key
  1222. Remove local definition of KEY.
  1223. KEY is a string representing a sequence of keystrokes.Fdefine-prefix-command
  1224. Define SYMBOL as a prefix command.
  1225. A keymap is created and stored as SYMBOL's function definition.Fuse-global-map
  1226. Selects KEYMAP as the global keymap.Fuse-local-map
  1227. Selects KEYMAP as the local keymap.
  1228. nil for KEYMAP means no local keymap.Fcurrent-local-map
  1229. Return current buffer's local keymap, or nil if it has none.Fcurrent-global-map
  1230. Return the current global keymap.Faccessible-keymaps
  1231. Find all keymaps accessible via prefix characters from KEYMAP.
  1232. Returns a list of elements of the form (KEYS . MAP), where the sequence
  1233. KEYS starting from KEYMAP gets you to MAP.  These elements are ordered
  1234. so that the KEYS increase in length.  The first element is ("" . KEYMAP).Fkey-description
  1235. Return a pretty description of key-sequence KEYS.
  1236. Control characters turn into "C-foo" sequences, meta into "M-foo"
  1237. spaces are put between sequence elements, etc.Fsingle-key-description
  1238. Return a pretty description of command character KEY.
  1239. Control characters turn into C-whatever, etc.Ftext-char-description
  1240. Return a pretty description of file-character CHAR.
  1241. Control characters turn into "^char", etc.Fwhere-is-internal
  1242. Return list of key sequences that currently invoke command DEFINITION
  1243. in KEYMAP or (current-global-map).  If KEYMAP is nil, only search for
  1244. keys in the global map.
  1245.  
  1246. If FIRSTONLY is non-nil, returns a string representing the first key
  1247. sequence found, rather than a list of all possible key sequences.Fwhere-is
  1248. Print message listing key sequences that invoke specified command.
  1249. Argument is a command definition, usually a symbol with a function definition.Fdescribe-bindings
  1250. Show a list of all defined keys, and their definitions.
  1251. The list is put in a buffer, which is displayed.Fapropos
  1252. Show all symbols whose names contain match for REGEXP.
  1253. If optional arg PRED is non-nil, (funcall PRED SYM) is done
  1254. for each symbol and a symbol is mentioned if that returns non-nil.
  1255. Returns list of symbols found; if third arg NOPRINT is non-nil,
  1256. does not display them, just returns the list.Vminibuffer-local-map
  1257. Default keymap to use when reading from the minibuffer.Vminibuffer-local-ns-map
  1258. The keymap used by the minibuf for local bindings when spaces are not
  1259. to be allowed in input string.Vminibuffer-local-completion-map
  1260. Keymap to use when reading from the minibuffer with completion.Vminibuffer-local-must-match-map
  1261. Keymap to use when reading from the minibuffer with completion and
  1262. an exact match of one of the completions is required.Fread-char
  1263. Read a character from the command input (keyboard or macro).
  1264. It is returned as a number.Fget-file-char
  1265. Don't use this yourself.Fload
  1266. Execute a file of Lisp code named FILE.
  1267. First tries FILE with .elc appended, then tries with .el,
  1268.  then tries FILE unmodified.  Searches directories in  load-path.
  1269. If optional second arg NOERROR is non-nil,
  1270.  report no error if FILE doesn't exist.
  1271. Print messages at start and end of loading unless
  1272.  optional third arg NOMESSAGE is non-nil.
  1273. If optional fourth arg NOSUFFIX is non-nil, don't try adding
  1274.  suffixes .elc or .el to the specified name FILE.
  1275. Return t if file exists.Feval-current-buffer
  1276. Execute the current buffer as Lisp code.
  1277. Programs can pass argument PRINTFLAG which controls printing of output:
  1278. nil means discard it; anything else is stream for print.Feval-region
  1279. Execute the region as Lisp code.
  1280. When called from programs, expects two arguments,
  1281. giving starting and ending indices in the current buffer
  1282. of the text to be executed.
  1283. Programs can pass third argument PRINTFLAG which controls printing of output:
  1284. nil means discard it; anything else is stream for print.Fread
  1285. Read one Lisp expression as text from STREAM, return as Lisp object.
  1286. If STREAM is nil, use the value of standard-input (which see).
  1287. STREAM or standard-input may be:
  1288.  a buffer (read from point and advance it)
  1289.  a marker (read from where it points and advance it)
  1290.  a function (call it with no arguments for each character)
  1291.  a string (takes text from string, starting at the beginning)
  1292.  t (read text line using minibuffer and use it).Fread-from-string
  1293. Read one Lisp expression which is represented as text by STRING.
  1294. Returns a cons: (OBJECT-READ . FINAL-STRING-INDEX).
  1295. START and END optionally delimit a substring of STRING from which to read;
  1296.  they default to 0 and (length STRING) respectively.Fintern
  1297. Return the symbol whose name is STRING.
  1298. A second optional argument specifies the obarray to use;
  1299. it defaults to the value of  obarray.Fintern-soft
  1300. Return the symbol whose name is STRING, or nil if none exists yet.
  1301. A second optional argument specifies the obarray to use;
  1302. it defaults to the value of  obarray.Fmapatoms
  1303. Call FUNCTION on every symbol in OBARRAY.
  1304. OBARRAY defaults to the value of  obarray.Vobarray
  1305. Symbol table for use by  intern  and  read.
  1306. It is a vector whose length ought to be prime for best results.
  1307. Each element is a list of all interned symbols whose names hash in that bucket.Vvalues
  1308. List of values of all expressions which were read, evaluated and printed.
  1309. Order is reverse chronological.Vstandard-input
  1310. Stream for read to get input from.
  1311. See documentation of read for possible values.Vload-path
  1312. *List of directories to search for files to load.
  1313. Each element is a string (directory name) or nil (try default directory).
  1314. Initialized based on EMACSLOADPATH environment variable, if any,
  1315. otherwise to default specified in by file paths.h when emacs was built.Vload-in-progress
  1316. Non-nil iff inside of  load.Fstart-kbd-macro
  1317. Record subsequent keyboard input, defining a keyboard macro.
  1318. The commands are recorded even as they are executed.
  1319. Use \[end-kbd-macro] to finish recording and make the macro available.
  1320. Use \[name-last-kbd-macro] to give it a permanent name.
  1321. Non-nil arg (prefix arg) means append to last macro defined;
  1322.  This begins by re-executing that macro as if you typed it again.Fend-kbd-macro
  1323. Finish defining a keyboard macro.
  1324. The definition was started by \[start-kbd-macro].
  1325. The macro is now available for use via \[call-last-kbd-macro],
  1326. or it can be given a name with \[name-last-kbd-macro] and then invoked
  1327. under that name.
  1328. With numeric arg, repeat macro now that many times,
  1329. counting the definition just completed as the first repetition.Fcall-last-kbd-macro
  1330. Call the last keyboard macro that you defined with \[start-kbd-macro].
  1331. To make a macro permanent so you can call it even after
  1332. defining others, use \[name-last-kbd-macro].Fexecute-kbd-macro
  1333. Execute MACRO as string of editor command characters.
  1334. If MACRO is a symbol, its function definition is used.
  1335. COUNT is a repeat count, or nil for once, or 0 for infinite loop.Vdefining-kbd-macro
  1336. Non-nil means store keyboard input into kbd macro being defined.Vexecuting-macro
  1337. Currently executing keyboard macro (a string); nil if none executing.Vexecuting-kbd-macro
  1338. Currently executing keyboard macro (a string); nil if none executing.Vlast-kbd-macro
  1339. Last kbd macro defined, as a string; nil if none defined.Fmarker-buffer
  1340. Return the buffer that MARKER points into, or nil if none.
  1341. Returns nil if MARKER points into a dead buffer.Fmarker-position
  1342. Return the position MARKER points at, as a character number.Fset-marker
  1343. Position MARKER before character number NUMBER in BUFFER.
  1344. BUFFER defaults to the current buffer.
  1345. If NUMBER is nil, makes marker point nowhere.
  1346. Then it no longer slows down editing in any buffer.
  1347. Returns MARKER.Fcopy-marker
  1348. Return a new marker pointing at the same place as MARKER.
  1349. If argument is a number, makes a new marker pointing
  1350. at that position in the current buffer.Fread-from-minibuffer
  1351. Read a string from the minibuffer, prompting with string PROMPT.
  1352. If optional second arg INITIAL-CONTENTS is non-nil, it is a string
  1353.   to be inserted into the minibuffer before reading input.
  1354. Third arg KEYMAP is a keymap to use whilst reading; the default is
  1355.   minibuffer-local-map.
  1356. If fourth arg READ is non-nil, then interpret the result as a lisp object
  1357.   and return that object  (ie  (car (read-from-string <input-string>)))Fread-minibuffer
  1358. Return a Lisp object read using the minibuffer.
  1359. Prompt with PROMPT.  If non-nil, optional second arg INITIAL-CONTENTS
  1360. is a string to insert in the minibuffer before reading.Feval-minibuffer
  1361. Return value of Lisp expression read using the minibuffer.
  1362. Prompt with PROMPT.  If non-nil, optional second arg INITIAL-CONTENTS
  1363. is a string to insert in the minibuffer before reading.Fread-string
  1364. Read a string from the minibuffer, prompting with string PROMPT.
  1365. If non-nil second arg INITIAL-INPUT is a string to insert before reading.Fread-no-blanks-input
  1366. Args PROMPT and INIT, strings.  Read a string from the terminal, not allowing blanks.
  1367. Prompt with PROMPT, and provide INIT as an initial value of the input string.Fread-command
  1368. One arg PROMPT, a string.  Read the name of a command and return as a symbol.
  1369. Prompts with PROMPT.Fread-function
  1370. One arg PROMPT, a string.  Read the name of a function and return as a symbol.
  1371. Prompts with PROMPT.Fread-variable
  1372. One arg PROMPT, a string.  Read the name of a user variable and return
  1373. it as a symbol.  Prompts with PROMPT.
  1374. A user variable is one whose documentation starts with a "*" character.Fread-buffer
  1375. One arg PROMPT, a string.  Read the name of a buffer and return as a string.
  1376. Prompts with PROMPT.
  1377. Optional second arg is value to return if user enters an empty line.
  1378. If optional third arg REQUIRE-MATCH is non-nil, only existing buffer names are allowed.Ftry-completion
  1379. Return common substring of all completions of STRING in ALIST.
  1380. Each car of each element of ALIST is tested to see if it begins with STRING.
  1381. All that match are compared together; the longest initial sequence
  1382. common to all matches is returned as a string.
  1383. If there is no match at all, nil is returned.
  1384. For an exact match, t is returned.
  1385.  
  1386. ALIST can be an obarray instead of an alist.
  1387. Then the print names of all symbols in the obarray are the possible matches.
  1388.  
  1389. If optional third argument PREDICATE is non-nil,
  1390. it is used to test each possible match.
  1391. The match is a candidate only if PREDICATE returns non-nil.
  1392. The argument given to PREDICATE is the alist element or the symbol from the obarray.Fall-completions
  1393. Search for partial matches to STRING in ALIST.
  1394. Each car of each element of ALIST is tested to see if it begins with STRING.
  1395. The value is a list of all the strings from ALIST that match.
  1396. ALIST can be an obarray instead of an alist.
  1397. Then the print names of all symbols in the obarray are the possible matches.
  1398.  
  1399. If optional third argument PREDICATE is non-nil,
  1400. it is used to test each possible match.
  1401. The match is a candidate only if PREDICATE returns non-nil.
  1402. The argument given to PREDICATE is the alist element or the symbol from the obarray.Fcompleting-read
  1403. Read a string in the minibuffer, with completion.
  1404. Args are PROMPT, TABLE, PREDICATE, REQUIRE-MATCH and INITIAL-INPUT.
  1405. PROMPT is a string to prompt with; normally it ends in a colon and a space.
  1406. TABLE is an alist whose elements' cars are strings, or an obarray (see try-completion).
  1407. PREDICATE limits completion to a subset of TABLE; see try-completion for details.
  1408. If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
  1409.  the input is (or completes to) an element of TABLE.
  1410.  If it is also not t, Return does not exit if it does non-null completion.
  1411. If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
  1412. Case is ignored if ambient value of  completion-ignore-case  is non-nil.Fminibuffer-complete
  1413. Complete the minibuffer contents as far as possible.Fminibuffer-complete-and-exit
  1414. Complete the minibuffer contents, and maybe exit.
  1415. Exit if the name is valid with no completion needed.
  1416. If name was completed to a valid match,
  1417. a repetition of this command will exit.Fminibuffer-complete-word
  1418. Complete the minibuffer contents at most a single word.Fdisplay-completion-list
  1419. Display in a buffer the list of completions, COMPLETIONS.
  1420. Each element may be just a symbol or string
  1421. or may be a list of two strings to be printed as if concatenated.Fminibuffer-completion-help
  1422. Display a list of possible completions of the current minibuffer contents.Fself-insert-and-exit
  1423. Terminate minibuffer input.Fexit-minibuffer
  1424. Terminate this minibuffer argument.Fminibuffer-depth
  1425. Return current depth of activations of minibuffer, a nonnegative integer.Vcompletion-auto-help
  1426. *Non-nil means automatically provide help for invalid completion input.Vcompletion-ignore-case
  1427. Non-nil means don't consider case significant in completion.Venable-recursive-minibuffers
  1428. *Non-nil means to allow minibuffers to invoke commands which use
  1429. recursive minibuffers.Vminibuffer-completion-table
  1430. Alist or obarray used for completion in the minibuffer.Vminibuffer-completion-predicate
  1431. Holds PREDICATE argument to completing-read.Vminibuffer-completion-confirm
  1432. Non-nil => demand confirmation of completion before exiting minibuffer.Vminibuffer-help-form
  1433. Value that help-form takes on inside the minibuffer.Fml-if
  1434. if  for mocklisp programsFml-nargs
  1435. # arguments to this mocklisp functionFml-arg
  1436. Argument #N to this mocklisp function.Fml-interactive
  1437. True if this mocklisp function was called interactively.Fml-provide-prefix-argument
  1438. Evaluate second argument, using first argument as prefix arg value.Fml-prefix-argument-loop
  1439. Fml-substr
  1440. Return a substring of STRING, starting at index FROM and of length LENGTH.
  1441. If either FROM or LENGTH is negative, the length of STRING is added to it.Finsert-string
  1442. Mocklisp-compatibility insert function.
  1443. Like the function `insert' except that any argument that is a number
  1444. is converted into a string by expressing it in decimal.Fwrite-char
  1445. Output character CHAR to stream STREAM.
  1446. STREAM defaults to the value of `standard-output' (which see).Fwith-output-to-temp-buffer
  1447. Binding `standard-output' to buffer named BUFNAME, execute BODY then display that buffer.
  1448. The buffer is cleared out initially, and marked as unmodified when done.
  1449. All output done by BODY is inserted in that buffer by default.
  1450. It is displayed in another window, but not selected.
  1451. The value of the last form in BODY is returned.
  1452. If variable `temp-buffer-show-hook' is non-nil, call it at the end
  1453. to get the buffer displayed.  It gets one argument, the buffer to display.Fterpri
  1454. Output a newline to STREAM (or value of standard-output).Fprin1
  1455. Output the printed representation of OBJECT, any Lisp object.
  1456. Quoting characters are printed when needed to make output that `read'
  1457. can handle, whenever this is possible.
  1458. Output stream is STREAM, or value of `standard-output' (which see).Fprin1-to-string
  1459. Return a string containing the printed representation of OBJECT,
  1460. any Lisp object.  Quoting characters are used when needed to make output
  1461. that `read' can handle, whenever this is possible.Fprinc
  1462. Output the printed representation of OBJECT, any Lisp object.
  1463. No quoting characters are used; no delimiters are printed around
  1464. the contents of strings.
  1465. Output stream is STREAM, or value of standard-output (which see).Fprint
  1466. Output the printed representation of OBJECT, with newlines around it.
  1467. Quoting characters are printed when needed to make output that `read'
  1468. can handle, whenever this is possible.
  1469. Output stream is STREAM, or value of `standard-output' (which see).Vstandard-output
  1470. Function print uses by default for outputting a character.
  1471. This may be any function of one argument.
  1472. It may also be a buffer (output is inserted before point)
  1473. or a marker (output is inserted and the marker is advanced)
  1474. or the symbol t (output appears in the minibuffer line).Vprint-length
  1475. Maximum length of list to print before abbreviating.`nil' means no limit.Vprint-escape-newlines
  1476. Non-nil means print newlines in strings as backslash-n.Flooking-at
  1477. t if text after point matches regular expression PAT.Fstring-match
  1478. Return index of start of first match for REGEXP in STRING, or nil.
  1479. If third arg START is non-nil, start search at that index in STRING.
  1480. For index of first char beyond the match, do (match-end 0).
  1481. match-end and match-beginning also give indices of substrings
  1482. matched by parenthesis constructs in the pattern.Fskip-chars-forward
  1483. Move point forward, stopping before a char not in CHARS, or at position LIM.
  1484. CHARS is like the inside of a [...] in a regular expression
  1485. except that ] is never special and \ quotes ^, - or \.
  1486. Thus, with arg "a-zA-Z", this skips letters stopping before first nonletter.
  1487. With arg "^a-zA-Z", skips nonletters stopping before first letter.Fskip-chars-backward
  1488. Move point backward, stopping after a char not in CHARS, or at position LIM.
  1489. See skip-chars-forward for details.Fsearch-backward
  1490. Search backward from point for STRING.
  1491. Set point to the beginning of the occurrence found, and return t.
  1492. An optional second argument bounds the search; it is a buffer position.
  1493. The match found must not extend before that position.
  1494. Optional third argument, if t, means if fail just return nil (no error).
  1495.  If not nil and not t, position at limit of search and return nil.
  1496. Optional fourth argument is repeat count--search for successive occurrences.
  1497. See also the functions match-beginning and match-end and replace-match.Fsearch-forward
  1498. Search forward from point for STRING.
  1499. Set point to the end of the occurrence found, and return t.
  1500. An optional second argument bounds the search; it is a buffer position.
  1501. The match found must not extend after that position.
  1502. Optional third argument, if t, means if fail just return nil (no error).
  1503.   If not nil and not t, move to limit of search and return nil.
  1504. Optional fourth argument is repeat count--search for successive occurrences.
  1505. See also the functions match-beginning and match-end and replace-match.Fword-search-backward
  1506. Search backward from point for STRING, ignoring differences in punctuation.
  1507. Set point to the beginning of the occurrence found, and return t.
  1508. An optional second argument bounds the search; it is a buffer position.
  1509. The match found must not extend before that position.
  1510. Optional third argument, if t, means if fail just return nil (no error).
  1511.   If not nil and not t, move to limit of search and return nil.
  1512. Optional fourth argument is repeat count--search for successive occurrences.Fword-search-forward
  1513. Search forward from point for STRING, ignoring differences in punctuation.
  1514. Set point to the end of the occurrence found, and return t.
  1515. An optional second argument bounds the search; it is a buffer position.
  1516. The match found must not extend after that position.
  1517. Optional third argument, if t, means if fail just return nil (no error).
  1518.   If not nil and not t, move to limit of search and return nil.
  1519. Optional fourth argument is repeat count--search for successive occurrences.Fre-search-backward
  1520. Search backward from point for match for regular expression REGEXP.
  1521. Set point to the beginning of the match, and return t.
  1522. The match found is the one starting last in the buffer
  1523. and yet ending before the place the origin of the search.
  1524. An optional second argument bounds the search; it is a buffer position.
  1525. The match found must start at or after that position.
  1526. Optional third argument, if t, means if fail just return nil (no error).
  1527.   If not nil and not t, move to limit of search and return nil.
  1528. Optional fourth argument is repeat count--search for successive occurrences.
  1529. See also the functions match-beginning and match-end and replace-match.Fre-search-forward
  1530. Search forward from point for regular expression REGEXP.
  1531. Set point to the end of the occurrence found, and return t.
  1532. An optional second argument bounds the search; it is a buffer position.
  1533. The match found must not extend after that position.
  1534. Optional third argument, if t, means if fail just return nil (no error).
  1535.   If not nil and not t, move to limit of search and return nil.
  1536. Optional fourth argument is repeat count--search for successive occurrences.
  1537. See also the functions match-beginning and match-end and replace-match.Freplace-match
  1538. Replace text matched by last search with NEWTEXT.
  1539. If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
  1540. Otherwise convert to all caps or cap initials, like replaced text.
  1541. If third arg LITERAL is non-nil, insert NEWTEXT literally.
  1542. Otherwise treat \ as special:
  1543.   \& in NEWTEXT means substitute original matched text,
  1544.   \N means substitute match for \(...\) number N,
  1545.   \\ means insert one \.
  1546. Leaves point at end of replacement text.Fmatch-beginning
  1547. Return the character number of start of text matched by last search.
  1548. ARG, a number, specifies which parenthesized expression in the last regexp.
  1549.  Value is nil if ARGth pair didn't match, or there were less than ARG pairs.
  1550. Zero means the entire text matched by the whole regexp or whole string.Fmatch-end
  1551. Return the character number of end of text matched by last search.
  1552. ARG, a number, specifies which parenthesized expression in the last regexp.
  1553.  Value is nil if ARGth pair didn't match, or there were less than ARG pairs.
  1554. Zero means the entire text matched by the whole regexp or whole string.Fmatch-data
  1555. Return list containing all info on what the last search matched.
  1556. Element 2N is (match-beginning N); element 2N + 1 is (match-end N).
  1557. All the elements are normally markers, or nil if the Nth pair didn't match.
  1558. 0 is also possible, when matching was done with `string-match',
  1559. if a match began at index 0 in the string.Fstore-match-data
  1560. Set internal data on last search match from elements of LIST.
  1561. LIST should have been created by calling match-data previously.Fregexp-quote
  1562. Return a regexp string which matches exactly STRING and nothing else.Fsyntax-table-p
  1563. Return t if ARG is a syntax table.
  1564. Any vector of 256 elements will do.Fsyntax-table
  1565. Return the current syntax table.
  1566. This is the one specified by the current buffer.Fstandard-syntax-table
  1567. Return the standard syntax table.
  1568. This is the one used for new buffers.Fcopy-syntax-table
  1569. Construct a new syntax table and return it.
  1570. It is a copy of the TABLE, which defaults to the standard syntax table.Fset-syntax-table
  1571. Select a new syntax table for the current buffer.
  1572. One argument, a syntax table.Fchar-syntax
  1573. Return the syntax code of CHAR, described by a character.
  1574. For example, if CHAR is a word constituent, ?w is returned.
  1575. The characters that correspond to various syntax codes
  1576. are listed in the documentation of  modify-syntax-entry.Fmodify-syntax-entry
  1577. Set syntax for character CHAR according to string S.
  1578. The syntax is changed only for table TABLE, which defaults to
  1579.  the current buffer's syntax table.
  1580. The first character of S should be one of the following:
  1581.   Space    whitespace syntax.    w   word constituent.
  1582.   _        symbol constituent.   .   punctuation.
  1583.   (        open-parenthesis.     )   close-parenthesis.
  1584.   "        string quote.         \   character-quote.
  1585.   $        paired delimiter.     '   expression prefix operator.
  1586.   <       comment starter.     >   comment ender.
  1587. Only single-character comment start and end sequences are represented thus.
  1588. Two-character sequences are represented as described below.
  1589. The second character of S is the matching parenthesis,
  1590.  used only if the first character is ( or ).
  1591. Any additional characters are flags.
  1592. Defined flags are the characters 1, 2, 3 and 4.
  1593.  1 means C is the start of a two-char comment start sequence.
  1594.  2 means C is the second character of such a sequence.
  1595.  3 means C is the start of a two-char comment end sequence.
  1596.  4 means C is the second character of such a sequence.Fdescribe-syntax
  1597. Describe the syntax specifications in the syntax table.
  1598. The descriptions are inserted in a buffer, which is selected so you can see it.Fforward-word
  1599. Move point forward ARG words (backward if ARG is negative).
  1600. Normally returns t.
  1601. If an edge of the buffer is reached, point is left there
  1602. and nil is returned.Fscan-lists
  1603. Scan from character number FROM by COUNT lists.
  1604. Returns the character number of the position thus found.
  1605.  
  1606. If DEPTH is nonzero, paren depth begins counting from that value,
  1607. only places where the depth in parentheses becomes zero
  1608. are candidates for stopping; COUNT such places are counted.
  1609. Thus, a positive value for DEPTH means go out levels.
  1610.  
  1611. Comments are ignored if parse-sexp-ignore-comments is non-nil.
  1612.  
  1613. If the beginning or end of (the visible part of) the buffer is reached
  1614. and the depth is wrong, an error is signaled.
  1615. If the depth is right but the count is not used up, nil is returned.Fscan-sexps
  1616. Scan from character number FROM by COUNT balanced expressions.
  1617. Returns the character number of the position thus found.
  1618.  
  1619. Comments are ignored if parse-sexp-ignore-comments is non-nil.
  1620.  
  1621. If the beginning or end of (the visible part of) the buffer is reached
  1622. in the middle of a parenthetical grouping, an error is signaled.
  1623. If the beginning or end is reached between groupings but before count is used up,
  1624. nil is returned.Fbackward-prefix-chars
  1625. Move point backward over any number of chars with syntax "prefix".Fparse-partial-sexp
  1626. Parse Lisp syntax starting at FROM until TO; return status of parse at TO.
  1627. Parsing stops at TO or when certain criteria are met;
  1628.  point is set to where parsing stops.
  1629. If fifth arg STATE is omitted or nil,
  1630.  parsing assumes that FROM is the beginning of a function.
  1631. Value is a list of seven elements describing final state of parsing:
  1632.  1. depth in parens.
  1633.  2. character address of start of innermost containing list; nil if none.
  1634.  3. character address of start of last complete sexp terminated.
  1635.  4. non-nil if inside a string.
  1636.     (it is the character that will terminate the string.)
  1637.  5. t if inside a comment.
  1638.  6. t if following a quote character.
  1639.  7. the minimum paren-depth encountered during this scan.
  1640. If third arg TARGETDEPTH is non-nil, parsing stops if the depth
  1641. in parentheses becomes equal to TARGETDEPTH.
  1642. Fourth arg STOPBEFORE non-nil means stop when come to
  1643.  any character that starts a sexp.
  1644. Fifth arg STATE is a seven-list like what this function returns.
  1645. It is used to initialize the state of the parse.Vparse-sexp-ignore-comments
  1646. Non-nil means forward-sexp, etc., should treat comments as whitespace.
  1647. Non-nil works only when the comment terminator is something like */,
  1648. and appears only when it ends a comment.
  1649. If comments are terminated by newlines,
  1650. you must make this variable nil.Fst-set-unixmode
  1651. Set the UNIXMODE defaults.
  1652. This string describes how filenames are changed by emacs to match
  1653. the standards of the TOS filesystem. The supported flags are:
  1654.  b    Use binary mode when opening file streams (no CR, only LF).
  1655.  c    Assume case is already significant to the operating system.
  1656.  d    Allow special file names like /dev/console.
  1657.  rX    Filenames starting with '/' are rooted from drive X:.
  1658.  u    Assume the OS allows unlimited length file names already.
  1659.  x    Recognize executable files by their magic number.
  1660.  /    Translate the directory seperator '/' in filenames to '\'.
  1661.  .x    Translate extra dots and other non-file chars to 'x'.
  1662.  L    Switch on processing of symbolic links.
  1663. The following flags are meaningful only if 'L' is present.
  1664.  A    Switch on automatic link generation for changed filenames.
  1665.  H    Hide the special file ".dir" from directory searches.Fundo-boundary
  1666. Mark a boundary between units of undo.
  1667. An undo command will stop at this point,
  1668. but another undo command will undo to the previous boundary.Fprimitive-undo
  1669. Undo N records from the front of the list LIST.
  1670. Return what remains of the list.Fwindowp
  1671. Returns t if OBJ is a window.Fselected-window
  1672. Return the window that the cursor now appears in and commands apply to.Fminibuffer-window
  1673. Return the window used for minibuffers.Fpos-visible-in-window-p
  1674. Return t if position POS is currently on the screen in WINDOW.
  1675. Returns nil if that position is scrolled vertically out of view.
  1676. POS defaults to point; WINDOW, to the selected window.Fwindow-buffer
  1677. Return the buffer that WINDOW is displaying.Fwindow-height
  1678. Return the number of lines in WINDOW (including its mode line).Fwindow-width
  1679. Return the number of columns in WINDOW.Fwindow-hscroll
  1680. Return the number of columns by which WINDOW is scrolled from left margin.Fset-window-hscroll
  1681. Set number of columns WINDOW is scrolled from left margin to NCOL.
  1682. NCOL should be zero or positive.Fwindow-edges
  1683. Return a list of the edge coordinates of WINDOW.
  1684. (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of screen.
  1685. RIGHT is one more than the rightmost column used by WINDOW,
  1686. and BOTTOM is one more than the bottommost row used by WINDOW
  1687.  and its mode-line.Fwindow-point
  1688. Return current value of point in WINDOW.
  1689. For a nonselected window, this is the value point would have
  1690. if that window were selected.
  1691.  
  1692. Note that, when WINDOW is the selected window and its buffer
  1693. is also currently selected, the value returned is the same as (point).
  1694. It would be more strictly correct to return the `top-level' value
  1695. of point, outside of any  save-excursion  forms.
  1696. But that is hard to define.Fwindow-start
  1697. Return position at which display currently starts in WINDOW.Fset-window-point
  1698. Make point value in WINDOW be at position POS in WINDOW's buffer.Fset-window-start
  1699. Make display in WINDOW start at position POS in WINDOW's buffer.
  1700. Optional third arg NOFORCE non-nil inhibits next redisplay
  1701. from overriding motion of point in order to display at this exact start.Fdelete-window
  1702. Remove WINDOW from the display.  Default is selected window.Fnext-window
  1703. Return next window after WINDOW in canonical ordering of windows.
  1704. Optional second arg MINIBUF t means count the minibuffer window
  1705. even if not active.  If MINIBUF is neither t nor nil it means
  1706. not to count the minibuffer even if it is active.Fprevious-window
  1707. Return previous window before WINDOW in canonical ordering of windows.Fother-window
  1708. Select the ARG'th different window.Fget-lru-window
  1709. Return the window least recently selected or used for display.Fget-largest-window
  1710. Return the largest window in area.Fget-buffer-window
  1711. Return a window currently displaying BUFFER, or nil if none.Fdelete-other-windows
  1712. Make WINDOW (or the selected window) fill the screen.Fdelete-windows-on
  1713. Delete all windows showing BUFFER.Freplace-buffer-in-windows
  1714. Replace BUFFER with some other buffer in all windows showing it.Fset-window-buffer
  1715. Make WINDOW display BUFFER as its contents.
  1716. BUFFER can be a buffer or buffer name.Fselect-window
  1717. Select WINDOW.  Most editing will apply to WINDOW's buffer.
  1718. The main editor command loop selects the buffer of the selected window
  1719. before each command.Fdisplay-buffer
  1720. Make BUFFER appear in some window but don't select it.
  1721. BUFFER can be a buffer or a buffer name.
  1722. If BUFFER is shown already in some window, just uses that one,
  1723. unless the window is the selected window and NOTTHISWINDOW is non-nil.
  1724. Returns the window displaying BUFFER.Fsplit-window
  1725. Split WINDOW, putting SIZE lines in the first of the pair.
  1726. WINDOW defaults to selected one and SIZE to half its size.
  1727. If optional third arg HOR-FLAG is non-nil, split side by side
  1728. and put SIZE columns in the first of the pair.Fenlarge-window
  1729. Make current window ARG lines bigger.
  1730. From program, optional second arg non-nil means grow sideways ARG columns.Fshrink-window
  1731. Make current window ARG lines smaller.
  1732. From program, optional second arg non-nil means shrink sideways ARG columns.Fscroll-up
  1733. Scroll text of current window upward ARG lines; or near full screen if no ARG.
  1734. When calling from a program, supply a number as argument or nil.Fscroll-down
  1735. Scroll text of current window downward ARG lines; or near full screen if no ARG.
  1736. When calling from a program, supply a number as argument or nil.Fscroll-left
  1737. Scroll selected window display ARG columns left.
  1738. Default for ARG is window width minus 2.Fscroll-right
  1739. Scroll selected window display ARG columns right.
  1740. Default for ARG is window width minus 2.Fscroll-other-window
  1741. Scroll text of next window upward ARG lines; or near full screen if no ARG.
  1742. The next window is the one below the current one; or the one at the top
  1743. if the current one is at the bottom.
  1744. When calling from a program, supply a number as argument or nil.Frecenter
  1745. Center point in window and redisplay screen.  With ARG, put point on line ARG.
  1746. The desired position of point is always relative to the current window.
  1747. Just C-u as prefix means put point in the center of the screen.
  1748. No arg (i.e., it is nil) erases the entire screen and then
  1749. redraws with point in the center.Fmove-to-window-line
  1750. Position point relative to window.
  1751. With no argument, position at text at center of window.
  1752. An argument specifies screen line; zero means top of window,
  1753. negative means relative to bottom of window.Fset-window-configuration
  1754. Restore the configuration of Emacs' windows and buffers to
  1755. the state specified by CONFIGURATION.  CONFIGURATION must be a value
  1756. retrned by  current-window-configuration  -- see the documentation of that
  1757. function for more information.Fcurrent-window-configuration
  1758. Return an object representing Emacs' current window configuration,
  1759. namely the number of windows, their sizes and current buffers, and for
  1760. each displayed buffer, where display starts, and the positions of
  1761. point and mark.  An exception is made for point in (current-buffer) --
  1762. its value is -not- saved.Fsave-window-excursion
  1763. Execute body, preserving window sizes and contents.
  1764. Restores which buffer appears in which window, where display starts,
  1765. as well as the current buffer.
  1766. Does not restore the value of point in current buffer.Vminibuffer-prompt-width
  1767. Width of the prompt appearing at the start of the minibuffer window.
  1768. The value is meaningless when the minibuffer is not visible.Vtemp-buffer-show-hook
  1769. Non-nil means call as function to display a help buffer.
  1770. Used by with-output-to-temp-buffer.Vminibuffer-scroll-window
  1771. Non-nil means it is the window that C-M-v in minibuffer should scroll.Vpop-up-windows
  1772. *Non-nil means display-buffer should make new windows.Vnext-screen-context-lines
  1773. *Number of lines of continuity when scrolling by screenfuls.Vsplit-height-threshold
  1774. *display-buffer would prefer to split the largest window if this large.
  1775. If there is only one window, it is split regardless of this value.Vwindow-min-height
  1776. *Delete any window less than this tall (including its mode line).Vwindow-min-width
  1777. *Delete any window less than this wide.Fredraw-display
  1778. Clear the screen and output again what is supposed to appear on it.Vglobal-mode-string
  1779. String displayed by mode-line-format's "%m" specifiation.Voverlay-arrow-position
  1780. Marker for where to display an arrow on top of the buffer text.
  1781. This must be the beginning of a line in order to work.
  1782. See also overlay-arrow-string.Voverlay-arrow-string
  1783. String to display as an arrow.  See also overlay-arrow-position.Vscroll-step
  1784. *The number of lines to try scrolling a window by when point moves out.
  1785. If that fails to bring point back on screen, point is centered instead.
  1786. If this is zero, point is always centered after it moves off screen.Vreset-terminal-on-clear
  1787. Non-nil means re-init terminal modes for clear screen as on entry to Emacs.Vdebug-end-pos
  1788. Don't askVtruncate-partial-width-windows
  1789. *Non-nil means truncate lines in all windows less than full screen wide.Vmode-line-inverse-video
  1790. *Non-nil means use inverse video, or other suitable display mode, for the mode line.Vmode-line-buffer-identification
  1791. Mode-line control for identifying the buffer being displayed.
  1792. Its default value is "Emacs: %17b".  Major modes that edit things
  1793. other than ordinary files may change this (e.g. Info, Dired,...)Vmode-line-process
  1794. Mode-line control for displaying info on process status.
  1795. Normally nil in most modes, since there is no process to display.Vmode-line-modified
  1796. Mode-line control for displaying whether current buffer is modified.Vminor-mode-alist
  1797. Alist saying how to show minor modes in the mode line.
  1798. Each element looks like (VARIABLE STRING);
  1799. STRING is included in the mode line iff VARIABLE's value is non-nil.Vfunction-keymap
  1800. Keymap containing definitions of keypad and function keys.Vparagraph-start
  1801. *Regexp for beginning of a line that starts OR separates paragraphs.Vparagraph-separate
  1802. *Regexp for beginning of a line that separates paragraphs.
  1803. If you change this, you may have to change paragraph-start also.Vsentence-end
  1804. *Regexp describing the end of a sentence.
  1805. All paragraph boundaries also end sentences, regardless.Vpage-delimiter
  1806. *Regexp describing line-beginnings that separate pages.Vcase-replace
  1807. *Non-nil means query-replace should preserve case in replacements.Vindent-line-function
  1808. Function to indent current line.Vonly-global-abbrevs
  1809. *t means user plans to use global abbrevs only.
  1810. Makes the commands to define mode-specific abbrevs define global ones instead.Vcompile-command
  1811. *Last shell command used to do a compilation; default for next compilation.Vdired-listing-switches
  1812. *Switches passed to ls for Dired.  MUST contain the `l' option.
  1813. MUST NOT contain the `F, `s' or `i'' option.Vlpr-switches
  1814. *List of strings to pass as extra switch args to lpr when it is invoked.Vtags-file-name
  1815. *File name of tag table.
  1816. To switch to a new tag table, setting this variable is sufficient.
  1817. Use the `etags' program to make a tag table file.Vshell-prompt-pattern
  1818. *Regexp used by Newline command in shell mode to match subshell prompts.
  1819. Anything from beginning of line up to the end of what this pattern matches
  1820. is deemed to be prompt, and is not reexecuted.Vledit-save-files
  1821. *Non-nil means Ledit should save files before transferring to Lisp.Vledit-go-to-lisp-string
  1822. *Shell commands to execute to resume Lisp job.Vledit-go-to-liszt-string
  1823. *Shell commands to execute to resume Lisp compiler job.Vdisplay-time-day-and-date
  1824. *Non-nil means M-x display-time should display day and date as well as time.Vauto-mode-alist
  1825. Alist of filename patterns vs corresponding major mode functions.
  1826. Each element looks like (REGEXP . FUNCTION).
  1827. Visiting a file whose name matches REGEXP causes FUNCTION to be called.Vctl-x-4-map
  1828. Keymap for subcommands of C-x 4Fadd-change-log-entry
  1829. Find change log file and add an entry for today.
  1830. First arg (interactive prefix) non-nil means prompt for user name and site.
  1831. Second arg is file name of change log.
  1832. Optional third arg OTHER-WINDOW non-nil means visit in other window.Fadd-change-log-entry-other-window
  1833. Find change log file in other window, and add an entry for today.F`
  1834. (` FORM) Expands to a form that will generate FORM.
  1835. FORM is `almost quoted' -- see backquote.el for a description.Fbyte-compile-file
  1836. Compile a file of Lisp code named FILENAME into a file of byte code.
  1837. The output file's name is made by appending "c" to the end of FILENAME.Fbyte-recompile-directory
  1838. Recompile every .el file in DIRECTORY that needs recompilation.
  1839. This is if a .elc file exists but is older than the .el file.
  1840. If the .elc file does not exist, offer to compile the .el file
  1841. only if a prefix argument has been specified.Fbatch-byte-compile
  1842. Runs byte-compile-file on the files remaining on the command line.
  1843. Must be used only with -batch, and kills emacs on completion.
  1844. Each file will be processed even if an error occurred previously.
  1845. For example, invoke "emacs -batch -f batch-byte-compile $emacs/ ~/*.el"Fcalendar
  1846. Display three-month calendar in another window.
  1847. The three months appear side by side, with the current month in the middle
  1848. surrounded by the previous and next months.  The cursor is put on today's date.
  1849.  
  1850. An optional prefix argument ARG causes the calendar displayed to be
  1851. ARG months in the future if ARG is positive or in the past if ARG is
  1852. negative; in this case the cursor goes on the first day of the month.
  1853.  
  1854. The Gregorian calendar is assumed.
  1855.  
  1856. After preparing the calendar window, the hooks calendar-hook are run
  1857. when the calendar is for the current month--that is, the was no prefix
  1858. argument.  If the calendar is for a future or past month--that is, there
  1859. was a prefix argument--the hooks offset-calendar-hook are run.  Thus, for
  1860. example, setting calendar-hooks to 'star-date will cause today's date to be
  1861. replaced by asterisks to highlight it in the window.Flist-command-history
  1862. List history of commands typed to minibuffer.
  1863. The number of commands listed is controlled by  list-command-history-max.
  1864. Calls value of  list-command-history-filter  (if non-nil) on each history
  1865. element to judge if that element should be excluded from the list.
  1866.  
  1867. The buffer is left in Command History mode.Fcommand-history-mode
  1868. Major mode for examining commands from  command-history.
  1869. The number of commands listed is controlled by  list-command-history-max.
  1870. The command history is filtered by  list-command-history-filter  if non-nil.
  1871.  
  1872. Like Emacs-Lisp Mode except that characters do not insert themselves and
  1873. Digits provide prefix arguments.  Tab does not indent.
  1874. \{command-history-map}
  1875. Calls the value of  command-history-hook  if that is non-nil
  1876. The Command History listing is recomputed each time this mode is
  1877. invoked.Frepeat-matching-complex-command
  1878. Edit and re-evaluate complex command with name matching PATTERN.
  1879. Matching occurrences are displayed, most recent first, until you
  1880. select a form for evaluation.  If PATTERN is empty (or nil), every form
  1881. in the command history is offered.  The form is placed in the minibuffer
  1882. for editing and the result is evaluated.Fcompare-windows
  1883. Compare text in current window with text in next window.
  1884. Compares the text starting at point in each window,
  1885. moving over text in each one as far as they match.Fcompile
  1886. Compile the program including the current buffer.  Default: run `make'.
  1887. Runs COMMAND, a shell command, in a separate process asynchronously
  1888. with output going to the buffer *compilation*.
  1889. You can then use the command \[next-error] to find the next error message
  1890. and move to the source code that caused it.Fgrep
  1891. Run grep, with user-specified args, and collect output in a buffer.
  1892. While grep runs asynchronously, you can use the \[next-error] command
  1893. to find the text that grep hits refer to.Fnext-error
  1894. Visit next compilation error message and corresponding source code.
  1895. This operates on the output from the \[compile] command.
  1896. If all preparsed error messages have been processed,
  1897. the error message buffer is checked for new ones.
  1898. A non-nil argument (prefix arg, if interactive)
  1899. means reparse the error message buffer and start at the first error.Fdabbrev-expand
  1900. Expand previous word "dynamically".
  1901. Expands to the most recent, preceding word for which this is a prefix.
  1902. If no suitable preceding word is found, words following point are considered.
  1903.  
  1904. A positive prefix argument, N, says to take the Nth backward DISTINCT
  1905. possibility.  A negative argument says search forward.  The variable
  1906. dabbrev-backward-only may be used to limit the direction of search to
  1907. backward if set non-nil.
  1908.  
  1909. If the cursor has not moved from the end of the previous expansion and
  1910. no argument is given, replace the previously-made expansion
  1911. with the next possible expansion not yet tried.Fdebug
  1912. Enter debugger.  Returns if user says "continue".
  1913. Arguments are mainly for use when this is called
  1914.  from the internals of the evaluator.
  1915. You may call with no args, or you may
  1916.  pass nil as the first arg and any other args you like.
  1917.  In that case, the list of args after the first will 
  1918.  be printed into the backtrace buffer.Fcancel-debug-on-entry
  1919. Undoes effect of debug-on-entry on FUNCTION.Fdebug-on-entry
  1920. Request FUNCTION to invoke debugger each time it is called.
  1921. If the user continues, FUNCTION's execution proceeds.
  1922. Works by modifying the definition of FUNCTION,
  1923. which must be written in Lisp, not predefined.
  1924. Use `cancel-debug-on-entry' to cancel the effect of this command.
  1925. Redefining FUNCTION also does that.Fdired
  1926. "Edit" directory DIRNAME--delete, rename, print, etc. some files in it.
  1927. Dired displays a list of files in DIRNAME.
  1928. You can move around in it with the usual commands.
  1929. You can flag files for deletion with C-d
  1930. and then delete them by typing `x'.
  1931. Type `h' after entering dired for more info.Fdired-other-window
  1932. "Edit" directory DIRNAME.  Like \[dired] but selects in another window.Fdired-noselect
  1933. Like M-x dired but returns the dired buffer as value, does not select it.Fdissociated-press
  1934. Dissociate the text of the current buffer.
  1935. Output goes in buffer named *Dissociation*,
  1936. which is redisplayed each time text is added to it.
  1937. Every so often the user must say whether to continue.
  1938. If ARG is positive, require ARG chars of continuity.
  1939. If ARG is negative, require -ARG words of continuity.
  1940. Default is 2.Fdisassemble
  1941. Print disassembled code for OBJECT on (optional) STREAM.
  1942. OBJECT can be a function name, lambda expression or any function object
  1943. returned by SYMBOL-FUNCTION.  If OBJECT is not already compiled, we will
  1944. compile it (but not redefine it).Felectric-buffer-list
  1945. Vaguely like ITS lunar select buffer;
  1946. combining typeoutoid buffer listing with menuoid buffer selection.
  1947.  
  1948. This pops up a buffer describing the set of emacs buffers.
  1949. If the very next character typed is a space then the buffer list
  1950.  window disappears.
  1951.  
  1952. Otherwise, one may move around in the buffer list window, marking
  1953.  buffers to be selected, saved or deleted.
  1954.  
  1955. To exit and select a new buffer, type Space when the cursor is on the
  1956.  appropriate line of the buffer-list window.
  1957.  
  1958. Other commands are much like those of buffer-menu-mode.
  1959.  
  1960. Calls value of  electric-buffer-menu-mode-hook  on entry if non-nil.
  1961.  
  1962. \{electric-buffer-menu-mode-map}Felectric-command-history
  1963. Major mode for examining and redoing commands from  command-history.
  1964. The number of command listed is controlled by  list-command-history-max.
  1965. The command history is filtered by  list-command-history-filter  if non-nil.
  1966. Combines typeout Command History list window with menu like selection
  1967. of an expression from the history for re-evaluation in the *original* buffer.
  1968.  
  1969. The history displayed is filtered by  list-command-history-filter  if non-nil.
  1970.  
  1971. This pops up a window with the Command History listing.  If the very
  1972. next character typed is Space, the listing is killed and the previous
  1973. window configuration is restored.  Otherwise, you can browse in the
  1974. Command History with  Return  moving down and  Delete  moving up, possibly
  1975. selecting an expression to be redone with Space or quitting with `Q'.
  1976.  
  1977. Like Emacs-Lisp Mode except that characters do not insert themselves and
  1978. Tab and linefeed do not indent.  Instead these commands are provided:
  1979. Space or !    edit then evaluate current line in history inside
  1980.            the ORIGINAL buffer which invoked this mode.
  1981.            The previous window configuration is restored
  1982.            unless the invoked command changes it.
  1983. C-c C-c, C-], Q    Quit and restore previous window configuration.
  1984. LFD, RET    Move to the next line in the history.
  1985. DEL        Move to the previous line in the history.
  1986. ?        Provides a complete list of commands.
  1987.  
  1988. Calls the value of  electric-command-history-hook  if that is non-nil
  1989. The Command History listing is recomputed each time this mode is invoked.Ffortran-mode
  1990. Major mode for editing fortran code.
  1991. Tab indents the current fortran line correctly. 
  1992. `do' statements must not share a common `continue'.
  1993.  
  1994. Type `;?' or `;\[help-command]' to display a list of built-in abbrevs for Fortran keywords.
  1995.  
  1996. Variables controlling indentation style and extra features:
  1997.  
  1998.  comment-start
  1999.     Normally nil in Fortran mode.  If you want to use comments
  2000.     starting with `!', set this to the string "!".
  2001.  fortran-do-indent
  2002.     Extra indentation within do blocks.  (default 3)
  2003.  fortran-if-indent
  2004.     Extra indentation within if blocks.  (default 3)
  2005.  fortran-continuation-indent
  2006.     Extra indentation appled to continuation statements.  (default 5)
  2007.  fortran-comment-line-column
  2008.     Amount of indentation for text within full-line comments. (default 6)
  2009.  fortran-comment-indent-style
  2010.     nil    means don't change indentation of text in full-line comments,
  2011.     fixed  means indent that text at column fortran-comment-line-column
  2012.     relative  means indent at fortran-comment-line-column beyond the
  2013.            indentation for a line of code.
  2014.     Default value is fixed.
  2015.  fortran-comment-indent-char
  2016.     Character to be inserted instead of space for full-line comment
  2017.     indentation.  (default is a space)
  2018.  fortran-minimum-statement-indent
  2019.     Minimum indentation for fortran statements. (default 6)
  2020.  fortran-line-number-indent
  2021.     Maximum indentation for line numbers.  A line number will get
  2022.     less than this much indentation if necessary to avoid reaching
  2023.     column 5.  (default 1)
  2024.  fortran-check-all-num-for-matching-do
  2025.     Non-nil causes all numbered lines to be treated as possible 'continue'
  2026.     statements.  (default nil)
  2027.  fortran-continuation-char
  2028.     character to be inserted in column 5 of a continuation line.
  2029.     (default $)
  2030.  fortran-comment-region
  2031.     String inserted by \[fortran-comment-region] at start of each line in 
  2032.     region.  (default "c$$$")
  2033.  fortran-electric-line-number
  2034.     Non-nil causes line number digits to be moved to the correct column 
  2035.     as typed.  (default t)
  2036.  fortran-startup-message
  2037.     Set to nil to inhibit message first time fortran-mode is used.
  2038.  
  2039. Turning on Fortran mode calls the value of the variable fortran-mode-hook 
  2040. with no args, if that value is non-nil.
  2041. \{fortran-mode-map}Fset-gosmacs-bindings
  2042. Rebind some keys globally to make GNU Emacs resemble Gosling Emacs.
  2043. Use \[set-gnu-bindings] to restore previous global bindings.Fhanoi
  2044. Towers of Hanoi diversion.  Argument is number of rings.FHelper-help
  2045. Provide help for current mode.FHelper-describe-bindings
  2046. Describe local key bindings of current mode.Finfo
  2047. Enter Info, the documentation browser.FInfo-tagify
  2048. Create or update Info-file tag table in current buffer.FInfo-validate
  2049. Check current buffer for validity as an Info file.
  2050. Check that every node pointer points to an existing node.FInfo-split
  2051. Split an info file into an indirect file plus bounded-size subfiles.
  2052. Each subfile will be up to 50000 characters plus one node.
  2053.  
  2054. To use this command, first visit a large Info file that has a tag table.
  2055. The buffer is modified into a (small) indirect info file
  2056. which should be saved in place of the original visited file.
  2057.  
  2058. The subfiles are written in the same directory the original file is in,
  2059. with names generated by appending `-' and a number to the original file name.
  2060.  
  2061. The indirect file still functions as an Info file, but it contains
  2062. just the tag table and a directory of subfiles.Fbatch-info-validate
  2063. Runs  Info-validate  on the files remaining on the command line.
  2064. Must be used only with -batch, and kills emacs on completion.
  2065. Each file will be processed even if an error occurred previously.
  2066. For example, invoke "emacs -batch -f batch-info-validate $info/ ~/*.info"Fledit-mode
  2067. Major mode for editing text and stuffing it to a Lisp job.
  2068. Like Lisp mode, plus these special commands:
  2069.   M-C-d    -- record defun at or after point
  2070.        for later transmission to Lisp job.
  2071.   M-C-r -- record region for later transmission to Lisp job.
  2072.   C-x z -- transfer to Lisp job and transmit saved text.
  2073.   M-C-c -- transfer to Liszt (Lisp compiler) job
  2074.        and transmit saved text.
  2075. \{ledit-mode-map}
  2076. To make Lisp mode automatically change to Ledit mode,
  2077. do (setq lisp-mode-hook 'ledit-from-lisp-mode)Flpr-buffer
  2078. Print buffer contents as with Unix command `lpr'.
  2079. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Fprint-buffer
  2080. Print buffer contents as with Unix command `lpr -p'.
  2081. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Flpr-region
  2082. Print region contents as with Unix command `lpr'.
  2083. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Fprint-region
  2084. Print region contents as with Unix command `lpr -p'.
  2085. `lpr-switches' is a list of extra switches (strings) to pass to lpr.Finsert-kbd-macro
  2086. Insert in buffer the definition of kbd macro NAME, as Lisp code.
  2087. Second argument KEYS non-nil means also record the keys it is on.
  2088.  (This is the prefix argument, when calling interactively.)
  2089.  
  2090. This Lisp code will, when executed, define the kbd macro with the
  2091. same definition it has now.  If you say to record the keys,
  2092. the Lisp code will also rebind those keys to the macro.
  2093. Only global key bindings are recorded since executing this Lisp code
  2094. always makes global bindings.
  2095.  
  2096. To save a kbd macro, visit a file of Lisp code such as your ~/.emacs,
  2097. use this command, and then save the file.Fkbd-macro-query
  2098. Query user during kbd macro execution.
  2099. With prefix argument, enters recursive edit,
  2100.  reading keyboard commands even within a kbd macro.
  2101.  You can give different commands each time the macro executes.
  2102. Without prefix argument, reads a character.  Your options are:
  2103.  Space -- execute the rest of the macro.
  2104.  DEL -- skip the rest of the macro; start next repetition.
  2105.  C-d -- skip rest of the macro and don't repeat it any more.
  2106.  C-r -- enter a recursive edit, then on exit ask again for a character
  2107.  C-l -- redisplay screen and ask again.Fname-last-kbd-macro
  2108. Assign a name to the last keyboard macro defined.
  2109. One arg, a symbol, which is the name to define.
  2110. The symbol's function definition becomes the keyboard macro string.
  2111. Such a "function" cannot be called from Lisp, but it is a valid command
  2112. definition for the editor command loop.Fmake-command-summary
  2113. Make a summary of current key bindings in the buffer *Summary*.
  2114. Previous contents of that buffer are killed first.Fmanual-entry
  2115. Display the Unix manual entry for TOPIC.
  2116. TOPIC is either the title of the entry, or has the form TITLE(SECTION)
  2117. where SECTION is the desired section of the manual, as in `tty(4)'.Fmodula-2-mode
  2118. This is a mode intended to support program development in Modula-2.
  2119. All control constructs of Modula-2 can be reached by typing
  2120. Control-C followed by the first character of the construct.
  2121. \{m2-mode-map}
  2122.   Control-c b begin         Control-c c case
  2123.   Control-c d definition    Control-c e else
  2124.   Control-c f for           Control-c h header
  2125.   Control-c i if            Control-c m module
  2126.   Control-c l loop          Control-c o or
  2127.   Control-c p procedure     Control-c Control-w with
  2128.   Control-c r record        Control-c s stdio
  2129.   Control-c t type          Control-c u until
  2130.   Control-c v var           Control-c w while
  2131.   Control-c x export        Control-c y import
  2132.   Control-c { begin-comment Control-c } end-comment
  2133.   Control-c Control-z suspend-emacs     Control-c Control-t toggle
  2134.   Control-c Control-c compile           Control-x ` next-error
  2135.   Control-c Control-l link
  2136.  
  2137.    m2-indent controls the number of spaces for each indentation.
  2138.    m2-compile-command holds the command to compile a Modula-2 program.
  2139.    m2-link-command holds the command to link a Modula-2 program.Fenable-command
  2140. Allow COMMAND to be executed without special confirmation from now on.
  2141. The user's .emacs file is altered so that this will apply
  2142. to future sessions.Fdisable-command
  2143. Require special confirmation to execute COMMAND from now on.
  2144. The user's .emacs file is altered so that this will apply
  2145. to future sessions.Fnroff-mode
  2146. Major mode for editing text intended for nroff to format.
  2147. \{nroff-mode-map}
  2148. Turning on Nroff mode runs text-mode-hook, then nroff-mode-hook.
  2149. Also, try nroff-electric-mode, for automatically inserting
  2150. closing requests for requests that are used in matched pairs.Flist-options
  2151. Display a list of Emacs user options, with values and documentation.Fedit-options
  2152. Edit a list of Emacs user option values.
  2153. Selects a buffer containing such a list,
  2154. in which there are commands to set the option values.
  2155. Type \[describe-mode] in that buffer for a list of commands.Foutline-mode
  2156. Set major mode for editing outlines with selective display.
  2157. Headings are lines which start with asterisks: one for major headings,
  2158. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  2159.  
  2160. Body text or subheadings under a heading can be made temporarily
  2161. invisible, or visible again.  Invisible lines are attached to the end 
  2162. of the heading, so they move with it, if the line is killed and yanked
  2163. back.  A heading with text hidden under it is marked with an ellipsis (...).
  2164.  
  2165. Commands:
  2166. C-c C-n   outline-next-visible-heading      move by visible headings
  2167. C-c C-p   outline-previous-visible-heading
  2168. C-c C-f   outline-forward-same-level        similar but skip subheadings
  2169. C-c C-b   outline-backward-same-level
  2170. C-c C-u   outline-up-heading            move from subheading to heading
  2171.  
  2172. Meta-x hide-body    make all text invisible (not headings).
  2173. Meta-x show-all        make everything in buffer visible.
  2174.  
  2175. The remaining commands are used when point is on a heading line.
  2176. They apply to some of the body or subheadings of that heading.
  2177. C-c C-h   hide-subtree    make body and subheadings invisible.
  2178. C-c C-s   show-subtree    make body and subheadings visible.
  2179. C-c C-i   show-children    make direct subheadings visible.
  2180.          No effect on body, or subheadings 2 or more levels down.
  2181.          With arg N, affects subheadings N levels down.
  2182. M-x hide-entry       make immediately following body invisible.
  2183. M-x show-entry       make it visible.
  2184. M-x hide-leaves       make body under heading and under its subheadings invisible.
  2185.              The subheadings remain visible.
  2186. M-x show-branches  make all subheadings at all levels visible.
  2187.  
  2188. The variable outline-regexp can be changed to control what is a heading.
  2189. A line is a heading if outline-regexp matches something at the
  2190. beginning of the line.  The longer the match, the deeper the level.
  2191.  
  2192. Turning on outline mode calls the value of text-mode-hook and then of
  2193. outline-mode-hook, if they are non-nil.Fedit-picture
  2194. Switch to Picture mode, in which a quarter-plane screen model is used.
  2195. Printing characters replace instead of inserting themselves with motion
  2196. afterwards settable by these commands:
  2197.   C-c <      Move left after insertion.
  2198.   C-c >      Move right after insertion.
  2199.   C-c ^      Move up after insertion.
  2200.   C-c .      Move down after insertion.
  2201.   C-c `      Move northwest (nw) after insertion.
  2202.   C-c '      Move northeast (ne) after insertion.
  2203.   C-c /      Move southwest (sw) after insertion.
  2204.   C-c \   Move southeast (se) after insertion.
  2205. The current direction is displayed in the mode line.  The initial
  2206. direction is right.  Whitespace is inserted and tabs are changed to
  2207. spaces when required by movement.  You can move around in the buffer
  2208. with these commands:
  2209.   C-p      Move vertically to SAME column in previous line.
  2210.   C-n      Move vertically to SAME column in next line.
  2211.   C-e      Move to column following last non-whitespace character.
  2212.   C-f      Move right inserting spaces if required.
  2213.   C-b      Move left changing tabs to spaces if required.
  2214.   C-c C-f Move in direction of current picture motion.
  2215.   C-c C-b Move in opposite direction of current picture motion.
  2216.   Return  Move to beginning of next line.
  2217. You can edit tabular text with these commands:
  2218.   M-Tab      Move to column beneath (or at) next interesting charecter.
  2219.         `Indents' relative to a previous line.
  2220.   Tab      Move to next stop in tab stop list.
  2221.   C-c Tab Set tab stops according to context of this line.
  2222.         With ARG resets tab stops to default (global) value.
  2223.         See also documentation of variable    picture-tab-chars
  2224.         which defines "interesting character".  You can manually
  2225.         change the tab stop list with command \[edit-tab-stops].
  2226. You can manipulate text with these commands:
  2227.   C-d      Clear (replace) ARG columns after point without moving.
  2228.   C-c C-d Delete char at point - the command normally assigned to C-d.
  2229.   Delete  Clear (replace) ARG columns before point, moving back over them.
  2230.   C-k      Clear ARG lines, advancing over them.     The cleared
  2231.         text is saved in the kill ring.
  2232.   C-o      Open blank line(s) beneath current line.
  2233. You can manipulate rectangles with these commands:
  2234.   C-c C-k Clear (or kill) a rectangle and save it.
  2235.   C-c C-w Like C-c C-k except rectangle is saved in named register.
  2236.   C-c C-y Overlay (or insert) currently saved rectangle at point.
  2237.   C-c C-x Like C-c C-y except rectangle is taken from named register.
  2238.   \[copy-rectangle-to-register]   Copies a rectangle to a register.
  2239.   \[advertised-undo]   Can undo effects of rectangle overlay commands
  2240.         commands if invoked soon enough.
  2241. You can return to the previous mode with:
  2242.   C-c C-c Which also strips trailing whitespace from every line.
  2243.         Stripping is suppressed by supplying an argument.
  2244.  
  2245. Entry to this mode calls the value of  edit-picture-hook  if non-nil.
  2246.  
  2247. Note that Picture mode commands will work outside of Picture mode, but
  2248. they are not defaultly assigned to keys.Fprolog-mode
  2249. Major mode for editing Prolog code for Prologs.
  2250. Blank lines and `%%...' separate paragraphs.  `%'s start comments.
  2251. Commands:
  2252. \{prolog-mode-map}
  2253. Entry to this mode calls the value of prolog-mode-hook
  2254. if that value is non-nil.Frun-prolog
  2255. Run an inferior Prolog process, input and output via buffer *prolog*.Fclear-rectangle
  2256. Blank out rectangle with corners at point and mark.
  2257. The text previously in the region is overwritten by the blanks.Fdelete-rectangle
  2258. Delete (don't save) text in rectangle with point and mark as corners.
  2259. The same range of columns is deleted in each line
  2260. starting with the line where the region begins
  2261. and ending with the line where the region ends.Fdelete-extract-rectangle
  2262. Return and delete contents of rectangle with corners at START and END.
  2263. Value is list of strings, one for each line of the rectangle.Fextract-rectangle
  2264. Return contents of rectangle with corners at START and END.
  2265. Value is list of strings, one for each line of the rectangle.Finsert-rectangle
  2266. Insert text of RECTANGLE with upper left corner at point.
  2267. RECTANGLE's first line is inserted at point,
  2268. its second line is inserted at a point vertically under point, etc.
  2269. RECTANGLE should be a list of strings.Fkill-rectangle
  2270. Delete rectangle with corners at point and mark; save as last killed one.
  2271. Calling from program, supply two args START and END, buffer positions.
  2272. But in programs you might prefer to use delete-extract-rectangle.Fopen-rectangle
  2273. Blank out rectangle with corners at point and mark, shifting text right.
  2274. The text previously in the region is not overwritten by the blanks,
  2275. but insted winds up to the right of the rectangle.Fyank-rectangle
  2276. Yank the last killed rectangle with upper left corner at point.Fscheme-mode
  2277. Major mode for editing Scheme code.
  2278. Editing commands are similar to those of lisp-mode.
  2279.  
  2280. In addition, if an inferior Scheme process is running, some additional
  2281. commands will be defined, for evaluating expressions and controlling
  2282. the interpreter, and the state of the process will be displayed in the
  2283. modeline of all Scheme buffers.  The names of commands that interact
  2284. with the Scheme process start with "xscheme-".  For more information
  2285. see the documentation for xscheme-interaction-mode.
  2286.  
  2287. Commands:
  2288. Delete converts tabs to spaces as it moves back.
  2289. Blank lines separate paragraphs.  Semicolons start comments.
  2290. \{scheme-mode-map}
  2291. Entry to this mode calls the value of scheme-mode-hook
  2292. if that value is non-nil.Fscribe-mode
  2293. Major mode for editing files of Scribe (a text formatter) source.
  2294. Scribe-mode is similar text-mode, with a few extra commands added.
  2295. \{scribe-mode-map}
  2296.  
  2297. Interesting variables:
  2298.  
  2299. scribe-fancy-paragraphs
  2300.   Non-nil makes Scribe mode use a different style of paragraph separation.
  2301.  
  2302. scribe-electric-quote
  2303.   Non-nil makes insert of double quote use `` or '' depending on context.
  2304.  
  2305. scribe-electric-parenthesis
  2306.   Non-nil makes an open-parenthesis char (one of `([<{')
  2307.   automatically insert its close if typed after an @Command form.Fsort-lines
  2308. Sort lines in region alphabetically; argument means descending order.
  2309. Called from a program, there are three arguments:
  2310. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-paragraphs
  2311. Sort paragraphs in region alphabetically; argument means descending order.
  2312. Called from a program, there are three arguments:
  2313. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-pages
  2314. Sort pages in region alphabetically; argument means descending order.
  2315. Called from a program, there are three arguments:
  2316. REVERSE (non-nil means reverse order), BEG and END (region to sort).Fsort-numeric-fields
  2317. Sort lines in region numerically by the ARGth field of each line.
  2318. Fields are separated by whitespace and numbered from 1 up.
  2319. Specified field must contain a number in each line of the region.
  2320. With a negative arg, sorts by the -ARG'th field, in reverse order.
  2321. Called from a program, there are three arguments:
  2322. FIELD, BEG and END.  BEG and END specify region to sort.Fsort-fields
  2323. Sort lines in region lexicographically by the ARGth field of each line.
  2324. Fields are separated by whitespace and numbered from 1 up.
  2325. With a negative arg, sorts by the -ARG'th field, in reverse order.
  2326. Called from a program, there are three arguments:
  2327. FIELD, BEG and END.  BEG and END specify region to sort.Fsort-columns
  2328. Sort lines in region alphabetically by a certain range of columns.
  2329. For the purpose of this command, the region includes
  2330. the entire line that point is in and the entire line the mark is in.
  2331. The column positions of point and mark bound the range of columns to sort on.
  2332. A prefix argument means sort into reverse order.
  2333.  
  2334. Note that sort-columns uses the sort utility program and therefore
  2335. cannot work on text containing TAB characters.  Use M-x untabify
  2336. to convert tabs to spaces before sorting.Fsort-regexp-fields
  2337. Sort the region lexicographically as specifed by RECORD-REGEXP and KEY.
  2338. RECORD-REGEXP specifies the textual units which should be sorted.
  2339.   For example, to sort lines RECORD-REGEXP would be "^.*$"
  2340. KEY specifies the part of each record (ie each match for RECORD-REGEXP)
  2341.   is to be used for sorting.
  2342.   If it is "\digit" then the digit'th "\(...\)" match field from
  2343.   RECORD-REGEXP is used.
  2344.   If it is "\&" then the whole record is used.
  2345.   Otherwise, it is a regular-expression for which to search within the record.
  2346. If a match for KEY is not found within a record then that record is ignored.
  2347.  
  2348. With a negative prefix arg sorts in reverse order.
  2349.  
  2350. For example: to sort lines in the region by the first word on each line
  2351.  starting with the letter "f",
  2352.  RECORD-REGEXP would be "^.*$" and KEY "\<f\w*\>"Funtabify
  2353. Convert all tabs in region to multiple spaces, preserving columns.
  2354. The variable tab-width controls the action.Ftabify
  2355. Convert multiple spaces in region to tabs when possible.
  2356. A group of spaces is partially replaced by tabs
  2357. when this can be done without changing the column they end at.
  2358. The variable tab-width controls the action.Ffind-tag
  2359. Find tag (in current tag table) whose name contains TAGNAME.
  2360.  Selects the buffer that the tag is contained in
  2361. and puts point at its definition.
  2362.  If TAGNAME is a null string, the expression in the buffer
  2363. around or before point is used as the tag name.
  2364.  If second arg NEXT is non-nil (interactively, with prefix arg),
  2365. searches for the next tag in the tag table
  2366. that matches the tagname used in the previous find-tag.
  2367.  
  2368. See documentation of variable tags-file-name.Ffind-tag-other-window
  2369. Find tag (in current tag table) whose name contains TAGNAME.
  2370.  Selects the buffer that the tag is contained in in another window
  2371. and puts point at its definition.
  2372.  If TAGNAME is a null string, the expression in the buffer
  2373. around or before point is used as the tag name.
  2374.  If second arg NEXT is non-nil (interactively, with prefix arg),
  2375. searches for the next tag in the tag table
  2376. that matches the tagname used in the previous find-tag.
  2377.  
  2378. See documentation of variable tags-file-name.Flist-tags
  2379. Display list of tags in file FILE.
  2380. FILE should not contain a directory spec
  2381. unless it has one in the tag table.Fnext-file
  2382. Select next file among files in current tag table.
  2383. Non-nil argument (prefix arg, if interactive)
  2384. initializes to the beginning of the list of files in the tag table.Ftags-apropos
  2385. Display list of all tags in tag table REGEXP matches.Ftags-loop-continue
  2386. Continue last \[tags-search] or \[tags-query-replace] command.
  2387. Used noninteractively with non-nil argument
  2388. to begin such a command.  See variable tags-loop-form.Ftag-table-files
  2389. Return a list of files in the current tag table.
  2390. File names returned are absolute.Ftags-query-replace
  2391. Query-replace-regexp FROM with TO through all files listed in tag table.
  2392. Third arg DELIMITED (prefix arg) means replace only word-delimited matches.
  2393. If you exit (C-G or ESC), you can resume the query-replace
  2394. with the command \[tags-loop-continue].
  2395.  
  2396. See documentation of variable tags-file-name.Ftags-search
  2397. Search through all files listed in tag table for match for REGEXP.
  2398. Stops when a match is found.
  2399. To continue searching for next match, use command \[tags-loop-continue].
  2400.  
  2401. See documentation of variable tags-file-name.Fvisit-tags-table
  2402. Tell tags commands to use tag table file FILE.
  2403. FILE should be the name of a file created with the `etags' program.
  2404. A directory name is ok too; it means file TAGS in that directory.Flatex-mode
  2405. Major mode for editing files of input for LaTeX.
  2406. Makes $ and } display the characters they match.
  2407. Makes " insert `` when it seems to be the beginning of a quotation,
  2408. and '' when it appears to be the end; it inserts " only after a \.
  2409.  
  2410. Use \[TeX-region] to run LaTeX on the current region, plus the preamble
  2411. copied from the top of the file (containing \documentstyle, etc.),
  2412. running LaTeX under a special subshell.  \[TeX-buffer] does the whole buffer.
  2413. \[TeX-print] prints the .dvi file made by either of these.
  2414.  
  2415. Use \[validate-TeX-buffer] to check buffer for paragraphs containing
  2416. mismatched $'s or braces.
  2417.  
  2418. Special commands:
  2419. \{TeX-mode-map}
  2420.  
  2421. Mode variables:
  2422. TeX-directory
  2423.     Directory in which to create temporary files for TeX jobs
  2424.     run by \[TeX-region] or \[TeX-buffer].
  2425. TeX-dvi-print-command
  2426.     Command string used by \[TeX-print] to print a .dvi file.
  2427. TeX-show-queue-command
  2428.     Command string used by \[TeX-show-print-queue] to show the print
  2429.     queue that \[TeX-print] put your job on.
  2430.  
  2431. Entering LaTeX mode calls the value of text-mode-hook,
  2432. then the value of TeX-mode-hook, and then the value
  2433. of LaTeX-mode-hook.Fplain-tex-mode
  2434. Major mode for editing files of input for plain TeX.
  2435. Makes $ and } display the characters they match.
  2436. Makes " insert `` when it seems to be the beginning of a quotation,
  2437. and '' when it appears to be the end; it inserts " only after a \.
  2438.  
  2439. Use \[TeX-region] to run TeX on the current region, plus a "header"
  2440. copied from the top of the file (containing macro definitions, etc.),
  2441. running TeX under a special subshell.  \[TeX-buffer] does the whole buffer.
  2442. \[TeX-print] prints the .dvi file made by either of these.
  2443.  
  2444. Use \[validate-TeX-buffer] to check buffer for paragraphs containing
  2445. mismatched $'s or braces.
  2446.  
  2447. Special commands:
  2448. \{TeX-mode-map}
  2449.  
  2450. Mode variables:
  2451. TeX-directory
  2452.     Directory in which to create temporary files for TeX jobs
  2453.     run by \[TeX-region] or \[TeX-buffer].
  2454. TeX-dvi-print-command
  2455.     Command string used by \[TeX-print] to print a .dvi file.
  2456. TeX-show-queue-command
  2457.     Command string used by \[TeX-show-print-queue] to show the print
  2458.     queue that \[TeX-print] put your job on.
  2459.  
  2460. Entering plain-TeX mode calls the value of text-mode-hook,
  2461. then the value of TeX-mode-hook, and then the value
  2462. of plain-TeX-mode-hook.Ftex-mode
  2463. Major mode for editing files of input for TeX or LaTeX.
  2464. Trys to intuit whether this file is for plain TeX or LaTeX and
  2465. calls plain-tex-mode or latex-mode.  If it cannot be determined
  2466. (e.g., there are no commands in the file), the value of
  2467. TeX-default-mode is used.Ftexinfo-mode
  2468. Major mode for editing texinfo files.
  2469. These are files that are input for TEX and also to be turned
  2470. into Info files by \[texinfo-format-buffer].
  2471. These files must be written in a very restricted and
  2472. modified version of TEX input format.
  2473.  
  2474. As for editing commands, like text-mode except for syntax table,
  2475. which is set up so expression commands skip texinfo bracket groups.Ftexinfo-format-buffer
  2476. Process the current buffer as texinfo code, into an Info file.
  2477. The Info file output is generated in a buffer
  2478. visiting the Info file names specified in the @setfilename command.
  2479.  
  2480. Non-nil argument (prefix, if interactive) means don't make tag table
  2481. and don't split the file if large.  You can use Info-tagify and
  2482. Info-split to do these manually.Ftexinfo-format-region
  2483. Convert the the current region of the Texinfo file to Info format.
  2484. This lets you see what that part of the file will look like in Info.
  2485. The command is bound to \[texinfo-format-region].  The text that is
  2486. converted to Info is stored in a temporary buffer.Fbatch-texinfo-format
  2487. Runs  texinfo-format-buffer  on the files remaining on the command line.
  2488. Must be used only with -batch, and kills emacs on completion.
  2489. Each file will be processed even if an error occurred previously.
  2490. For example, invoke
  2491.   "emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo".Fdisplay-time
  2492. Display current time and load level in mode line of each buffer.
  2493. Updates automatically every minute.
  2494. If display-time-day-and-date is non-nil, the current day and date
  2495. are displayed as well.Funderline-region
  2496. Underline all nonblank characters in the region.
  2497. Works by overstriking underscores.
  2498. Called from program, takes two arguments START and END
  2499. which specify the range to operate on.Fununderline-region
  2500. Remove all underlining (overstruck underscores) in the region.
  2501. Called from program, takes two arguments START and END
  2502. which specify the range to operate on.Fask-user-about-lock
  2503. Ask user what to do when he wants to edit FILE but it is locked by USER.
  2504. This function has a choice of three things to do:
  2505.   do (signal 'buffer-file-locked (list FILE USER))
  2506.     to refrain from editing the file
  2507.   return t (grab the lock on the file)
  2508.   return nil (edit the file even though it is locked).
  2509. You can rewrite it to use any criterion you like to choose which one to do.Fask-user-about-supersession-threat
  2510. Ask a user who is about to modify an obsolete buffer what to do.
  2511. This function has two choices: it can return, in which case the modification
  2512. of the buffer will proceed, or it can (signal 'file-supersession (file)),
  2513. in which case the proposed buffer modification will not be made.
  2514. You can rewrite this to use any criterion you like to choose which one to do.Fview-file
  2515. View FILE in View mode, returning to previous buffer when done.
  2516. The usual Emacs commands are not available; instead,
  2517. a special set of commands (mostly letters and punctuation)
  2518. are defined for moving around in the buffer.
  2519. Space scrolls forward, Delete scrolls backward.
  2520. For list of all View commands, type ? or h while viewing.
  2521.  
  2522. Calls the value of  view-hook  if that is non-nil.Fview-buffer
  2523. View BUFFER in View mode, returning to previous buffer when done.
  2524. The usual Emacs commands are not available; instead,
  2525. a special set of commands (mostly letters and punctuation)
  2526. are defined for moving around in the buffer.
  2527. Space scrolls forward, Delete scrolls backward.
  2528. For list of all View commands, type ? or h while viewing.
  2529.  
  2530. Calls the value of  view-hook  if that is non-nil.Fview-mode
  2531. Major mode for viewing text but not editing it.
  2532. Letters do not insert themselves.  Instead these commands are provided.
  2533. Most commands take prefix arguments.  Commands dealing with lines
  2534. default to "scroll size" lines (initially size of window).
  2535. Search commands default to a repeat count of one.
  2536. M-< or <    move to beginning of buffer.
  2537. M-> or >    move to end of buffer.
  2538. C-v or Space    scroll forward lines.
  2539. M-v or DEL    scroll backward lines.
  2540. CR or LF    scroll forward one line (backward with prefix argument).
  2541. z        like Space except set number of lines for further
  2542.            scrolling commands to scroll by.
  2543. C-u and Digits    provide prefix arguments.  `-' denotes negative argument.
  2544. =        prints the current line number.
  2545. g        goes to line given by prefix argument.
  2546. / or M-C-s    searches forward for regular expression
  2547. \ or M-C-r    searches backward for regular expression.
  2548. n        searches forward for last regular expression.
  2549. p        searches backward for last regular expression.
  2550. C-@ or .    set the mark.
  2551. x        exchanges point and mark.
  2552. C-s or s    do forward incremental search.
  2553. C-r or r    do reverse incremental search.
  2554. @ or '        return to mark and pops mark ring.
  2555.           Mark ring is pushed at start of every
  2556.           successful search and when jump to line to occurs.
  2557.           The mark is set on jump to buffer start or end.
  2558. ? or h        provide help message (list of commands).
  2559. C-h        provides help (list of commands or description of a command).
  2560. C-n        moves down lines vertically.
  2561. C-p        moves upward lines vertically.
  2562. C-l        recenters the screen.
  2563. q or C-c    exit view-mode and return to previous buffer.
  2564.  
  2565. Entry to this mode calls the value of  view-hook  if non-nil.
  2566. \{view-mode-map}Fyow
  2567. Return or display a Zippy quotationFpsychoanalyze-pinhead
  2568. Zippy goes to the analyst.Fisearch-forward
  2569. Do incremental search forward.
  2570. As you type characters, they add to the search string and are found.
  2571. Type Delete to cancel characters from end of search string.
  2572. Type ESC to exit, leaving point at location found.
  2573. Type C-s to search again forward, C-r to search again backward.
  2574. Type C-w to yank word from buffer onto end of search string and search for it.
  2575. Type C-y to yank rest of line onto end of search string, etc.
  2576. Type C-q to quote control character to search for it.
  2577. Other control and meta characters terminate the search
  2578.  and are then executed normally.
  2579. The above special characters are mostly controlled by parameters;
  2580.  do M-x apropos on search-.*-char to find them.
  2581. C-g while searching or when search has failed
  2582.  cancels input back to what has been found successfully.
  2583. C-g when search is successful aborts and moves point to starting point.Fisearch-forward-regexp
  2584. Do incremental search forward for regular expression.
  2585. Like ordinary incremental search except that your input
  2586. is treated as a regexp.  See \[isearch-forward] for more info.Fisearch-backward
  2587. Do incremental search backward.
  2588. See \[isearch-forward] for more information.Fisearch-backward-regexp
  2589. Do incremental search backward for regular expression.
  2590. Like ordinary incremental search except that your input
  2591. is treated as a regexp.  See \[isearch-forward] for more info.Vsearch-last-string
  2592. Last string search for by a non-regexp search command.
  2593. This does not include direct calls to the primitive search functions,
  2594. and does not include searches that are aborted.Vsearch-last-regexp
  2595. Last string searched for by a regexp search command.
  2596. This does not include direct calls to the primitive search functions,
  2597. and does not include searches that are aborted.Vsearch-repeat-char
  2598. *Character to repeat incremental search forwards.Vsearch-reverse-char
  2599. *Character to repeat incremental search backwards.Vsearch-exit-char
  2600. *Character to exit incremental search.Vsearch-delete-char
  2601. *Character to delete from incremental search string.Vsearch-quote-char
  2602. *Character to quote special characters for incremental search.Vsearch-yank-word-char
  2603. *Character to pull next word from buffer into search string.Vsearch-yank-line-char
  2604. *Character to pull rest of line from buffer into search string.Vsearch-exit-option
  2605. *Non-nil means random control characters terminate incremental search.Vsearch-slow-window-lines
  2606. *Number of lines in slow search display windows.
  2607. These are the short windows used during incremental search on slow terminals.
  2608. Negative means put the slow search window at the top (normally it's at bottom)
  2609. and the value is minus the number of lines.Vsearch-slow-speed
  2610. *Highest terminal speed at which to use "slow" style incremental search.
  2611. This is the style where a one-line window is created to show the line
  2612. that the search has reached.Fquery-replace
  2613. Replace some occurrences of FROM-STRING with TO-STRING.
  2614. As each match is found, the user must type a character saying
  2615. what to do with it.  For directions, type \[help-command] at that time.
  2616.  
  2617. Preserves case in each replacement if  case-replace  and  case-fold-search
  2618. are non-nil and FROM-STRING has no uppercase letters.
  2619. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  2620. only matches surrounded by word boundaries.Fquery-replace-regexp
  2621. Replace some things after point matching REGEXP with TO-STRING.
  2622. As each match is found, the user must type a character saying
  2623. what to do with it.  For directions, type \[help-command] at that time.
  2624.  
  2625. Preserves case in each replacement if  case-replace  and  case-fold-search
  2626. are non-nil and REGEXP has no uppercase letters.
  2627. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  2628. only matches surrounded by word boundaries.
  2629. In TO-STRING, \& means insert what matched REGEXP,
  2630. and \=\<n> means insert what matched <n>th \(...\) in REGEXP.Freplace-string
  2631. Replace occurrences of FROM-STRING with TO-STRING.
  2632. Preserve case in each match if  case-replace  and  case-fold-search
  2633. are non-nil and FROM-STRING has no uppercase letters.
  2634. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  2635. only matches surrounded by word boundaries.Freplace-regexp
  2636. Replace things after point matching REGEXP with TO-STRING.
  2637. Preserve case in each match if case-replace and case-fold-search
  2638. are non-nil and REGEXP has no uppercase letters.
  2639. Third arg DELIMITED (prefix arg if interactive) non-nil means replace
  2640. only matches surrounded by word boundaries.
  2641. In TO-STRING, \& means insert what matched REGEXP,
  2642. and \=\<n> means insert what matched <n>th \(...\) in REGEXP.Vemacs-version
  2643. Version numbers of this version of Emacs.Vemacs-build-time
  2644. Time at which Emacs was dumped out.Femacs-version
  2645. Return string describing the version of Emacs that is running.