home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / elisp / elisp-27 < prev    next >
Encoding:
GNU Info File  |  1993-05-31  |  48.9 KB  |  1,232 lines

  1. This is Info file elisp, produced by Makeinfo-1.55 from the input file
  2. elisp.texi.
  3.  
  4.    This is edition 2.0 of the GNU Emacs Lisp Reference Manual, for
  5. Emacs Version 19.
  6.  
  7.    Published by the Free Software Foundation, 675 Massachusetts Avenue,
  8. Cambridge, MA 02139 USA
  9.  
  10.    Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  11.  
  12.    Permission is granted to make and distribute verbatim copies of this
  13. manual provided the copyright notice and this permission notice are
  14. preserved on all copies.
  15.  
  16.    Permission is granted to copy and distribute modified versions of
  17. this manual under the conditions for verbatim copying, provided that
  18. the entire resulting derived work is distributed under the terms of a
  19. permission notice identical to this one.
  20.  
  21.    Permission is granted to copy and distribute translations of this
  22. manual into another language, under the above conditions for modified
  23. versions, except that this permission notice may be stated in a
  24. translation approved by the Foundation.
  25.  
  26. 
  27. File: elisp,  Node: Sentinels,  Next: Transaction Queues,  Prev: Output from Processes,  Up: Processes
  28.  
  29. Sentinels: Detecting Process Status Changes
  30. ===========================================
  31.  
  32.    A "process sentinel" is a function that is called whenever the
  33. associated process changes status for any reason, including signals
  34. (whether sent by Emacs or caused by the process's own actions) that
  35. terminate, stop, or continue the process.  The process sentinel is also
  36. called if the process exits.  The sentinel receives two arguments: the
  37. process for which the event occurred, and a string describing the type
  38. of event.
  39.  
  40.    The string describing the event looks like one of the following:
  41.  
  42.    * `"finished\n"'.
  43.  
  44.    * `"exited abnormally with code EXITCODE\n"'.
  45.  
  46.    * `"NAME-OF-SIGNAL\n"'.
  47.  
  48.    * `"NAME-OF-SIGNAL (core dumped)\n"'.
  49.  
  50.    A sentinel runs only while Emacs is waiting (e.g., for terminal
  51. input, or for time to elapse, or for process output).  This avoids the
  52. timing errors that could result from running them at random places in
  53. the middle of other Lisp programs.  You may explicitly cause Emacs to
  54. wait, so that sentinels will run, by calling `sit-for', `sleep-for' or
  55. `accept-process-output' (*note Accepting Output::.).  Emacs is also
  56. waiting when the command loop is reading input.
  57.  
  58.    Quitting is normally inhibited within a sentinel--otherwise, the
  59. effect of typing `C-g' at command level or to quit a user command would
  60. be unpredictable.  If you want to permit quitting inside a sentinel,
  61. bind `inhibit-quit' to `nil'.  *Note Quitting::.
  62.  
  63.    All sentinels that do regexp searching or matching should save and
  64. restore the match data.  Otherwise, a sentinel that runs during a call
  65. to `sit-for' might clobber the match data of the program that called
  66. `sit-for'.  *Note Match Data::.
  67.  
  68.  - Function: set-process-sentinel PROCESS SENTINEL
  69.      This function associates SENTINEL with PROCESS.  If SENTINEL is
  70.      `nil', then the process will have no sentinel.  The default
  71.      behavior when there is no sentinel is to insert a message in the
  72.      process's buffer when the process status changes.
  73.  
  74.           (defun msg-me (process event)
  75.              (princ
  76.                (format "Process: %s had the event `%s'" process event)))
  77.           (set-process-sentinel (get-process "shell") 'msg-me)
  78.                => msg-me
  79.  
  80.           (kill-process (get-process "shell"))
  81.                -| Process: #<process shell> had the event `killed'
  82.                => #<process shell>
  83.  
  84.  - Function: process-sentinel PROCESS
  85.      This function returns the sentinel of PROCESS, or `nil' if it has
  86.      none.
  87.  
  88.  - Function: waiting-for-user-input-p
  89.      While a sentinel or filter function is running, this function
  90.      returns non-`nil' if Emacs was waiting for keyboard input from the
  91.      user at the time the sentinel or filter function was called, `nil'
  92.      if it was not.
  93.  
  94. 
  95. File: elisp,  Node: Transaction Queues,  Next: TCP,  Prev: Sentinels,  Up: Processes
  96.  
  97. Transaction Queues
  98. ==================
  99.  
  100.    You can use a "transaction queue" for more convenient communication
  101. with subprocesses using transactions.  First use `tq-create' to create
  102. a transaction queue communicating with a specified process.  Then you
  103. can call `tq-enqueue' to send a transaction.
  104.  
  105.  - Function: tq-create PROCESS
  106.      This function creates and returns a transaction queue
  107.      communicating with PROCESS.  The argument PROCESS should be a
  108.      subprocess capable of sending and receiving streams of bytes.  It
  109.      may be a child process, or it may be a TCP connection to a server
  110.      possibly on another machine.
  111.  
  112.  - Function: tq-enqueue QUEUE QUESTION REGEXP CLOSURE FN
  113.      This function sends a transaction to queue QUEUE.  Specifying the
  114.      queue has the effect of specifying the subprocess to talk to.
  115.  
  116.      The argument QUESTION is the outgoing message which starts the
  117.      transaction.  The argument FN is the function to call when the
  118.      corresponding answer comes back; it is called with two arguments:
  119.      CLOSURE, and the answer received.
  120.  
  121.      The argument REGEXP is a regular expression to match the entire
  122.      answer; that's how `tq-enqueue' tells where the answer ends.
  123.  
  124.      The return value of `tq-enqueue' itself is not meaningful.
  125.  
  126.  - Function: tq-close QUEUE
  127.      Shut down transaction queue QUEUE, waiting for all pending
  128.      transactions to complete, and then terminate the connection or
  129.      child process.
  130.  
  131.    Transaction queues are implemented by means of a filter function.
  132. *Note Filter Functions::.
  133.  
  134. 
  135. File: elisp,  Node: TCP,  Prev: Transaction Queues,  Up: Processes
  136.  
  137. TCP
  138. ===
  139.  
  140.    Emacs Lisp programs can open TCP connections to other processes on
  141. the same machine or other machines.  A network connection is handled by
  142. Lisp much like a subprocess, and is represented by a process object.
  143. However, the process you are communicating with is not a child of the
  144. Emacs process, so you can't kill it or send it signals.  All you can do
  145. is send and receive data.  `delete-process' closes the connection, but
  146. does not kill the process at the other end; that process must decide
  147. what to do about closure of the connection.
  148.  
  149.    You can distinguish process objects representing network connections
  150. from those representing subprocesses with the `process-status'
  151. function.  *Note Process Information::.
  152.  
  153.  - Function: open-network-stream NAME BUFFER-OR-NAME HOST SERVICE
  154.      This function opens a TCP connection for a service to a host.  It
  155.      returns a process object to represent the connection.
  156.  
  157.      The NAME argument specifies the name for the process object.  It
  158.      is modified as necessary to make it unique.
  159.  
  160.      The BUFFER-OR-NAME argument is the buffer to associate with the
  161.      connection.  Output from the connection is inserted in the buffer,
  162.      unless you specify a filter function to handle the output.  If
  163.      BUFFER-OR-NAME is `nil', it means that the connection is not
  164.      associated with any buffer.
  165.  
  166.      The arguments HOST and SERVICE specify where to connect to; HOST
  167.      is the host name (a string), and SERVICE is the name of a defined
  168.      network service (a string) or a port number (an integer).
  169.  
  170. 
  171. File: elisp,  Node: System Interface,  Next: Emacs Display,  Prev: Processes,  Up: Top
  172.  
  173. Operating System Interface
  174. **************************
  175.  
  176.    This chapter is about starting and getting out of Emacs, access to
  177. values in the operating system environment, and terminal input, output
  178. and flow control.
  179.  
  180.    *Note Building Emacs::, for related information.  See also *Note
  181. Emacs Display::, for additional operating system status information
  182. pertaining to the terminal and the screen.
  183.  
  184. * Menu:
  185.  
  186. * Starting Up::         Customizing Emacs start-up processing.
  187. * Getting Out::         How exiting works (permanent or temporary).
  188. * System Environment::  Distinguish the name and kind of system.
  189. * User Identification:: Finding the name and user id of the user.
  190. * Time of Day::        Getting the current time.
  191. * Timers::        Setting a timer to call a function at a certain time.
  192. * Terminal Input::      Recording terminal input for debugging.
  193. * Terminal Output::     Recording terminal output for debugging.
  194. * Flow Control::        How to turn output flow control on or off.
  195. * Batch Mode::          Running Emacs without terminal interaction.
  196.  
  197. 
  198. File: elisp,  Node: Starting Up,  Next: Getting Out,  Up: System Interface
  199.  
  200. Starting Up Emacs
  201. =================
  202.  
  203.    This section describes what Emacs does when it is started, and how
  204. you can customize these actions.
  205.  
  206. * Menu:
  207.  
  208. * Start-up Summary::        Sequence of actions Emacs performs at start-up.
  209. * Init File::               Details on reading the init file (`.emacs').
  210. * Terminal-Specific::       How the terminal-specific Lisp file is read.
  211. * Command Line Arguments::  How command line arguments are processed,
  212.                               and how you can customize them.
  213.  
  214. 
  215. File: elisp,  Node: Start-up Summary,  Next: Init File,  Up: Starting Up
  216.  
  217. Summary: Sequence of Actions at Start Up
  218. ----------------------------------------
  219.  
  220.    The order of operations performed (in `startup.el') by Emacs when it
  221. is started up is as follows:
  222.  
  223.   1. It runs the normal hook `before-init-hook'.
  224.  
  225.   2. It loads `.emacs' unless `-q' was specified on command line.
  226.      (This is not done in `-batch' mode.)  `.emacs' is found in the
  227.      user's home directory; the `-u' option can specify the user name
  228.      whose home directory should be used.
  229.  
  230.   3. It loads `default.el' unless `inhibit-default-init' is non-`nil'.
  231.      (This is not done in `-batch' mode or if `-q' was specified on
  232.      command line.)
  233.  
  234.   4. It runs the normal hook `after-init-hook'.
  235.  
  236.   5. It loads the terminal-specific Lisp file, if any, except when in
  237.      batch mode.
  238.  
  239.   6. It runs `term-setup-hook'.
  240.  
  241.   7. It runs `window-setup-hook'.  *Note Window Systems::.
  242.  
  243.   8. It displays copyleft and nonwarranty, plus basic use information,
  244.      unless the value of the variable `inhibit-startup-message' is
  245.      non-`nil'.
  246.  
  247.      This display is also inhibited in batch mode, and if the current
  248.      buffer is not `*scratch*'.
  249.  
  250.   9. It processes any remaining command line arguments.
  251.  
  252.  - User Option: inhibit-startup-message
  253.      This variable inhibits the initial startup messages (the
  254.      nonwarranty, etc.).  If it is non-`nil', then the messages are not
  255.      printed.
  256.  
  257.      This variable exists so you can set it in your personal init file,
  258.      once you are familiar with the contents of the startup message.
  259.      Do not set this variable in the init file of a new user, or in a
  260.      way that affects more than one user, because that would prevent
  261.      new users from receiving the information they are supposed to see.
  262.  
  263. 
  264. File: elisp,  Node: Init File,  Next: Terminal-Specific,  Prev: Start-up Summary,  Up: Starting Up
  265.  
  266. The Init File: `.emacs'
  267. -----------------------
  268.  
  269.    When you start Emacs, it normally attempts to load the file `.emacs'
  270. from your home directory.  This file, if it exists, must contain Lisp
  271. code.  It is called your "init file".  The command line switches `-q'
  272. and `-u' can be used to control the use of the init file; `-q' says not
  273. to load an init file, and `-u' says to load a specified user's init
  274. file instead of yours.  *Note Entering Emacs: (emacs)Entering Emacs.
  275.  
  276.    Emacs may also have a "default init file", which is the library
  277. named `default.el'.  Emacs finds the `default.el' file through the
  278. standard search path for libraries (*note How Programs Do Loading::.).
  279. The Emacs distribution does not have any such file; you may create one
  280. at your site for local customizations.  If the default init file
  281. exists, it is loaded whenever you start Emacs, except in batch mode or
  282. if `-q' is specified.  But your own personal init file, if any, is
  283. loaded first; if it sets `inhibit-default-init' to a non-`nil' value,
  284. then Emacs will not subsequently load the `default.el' file.
  285.  
  286.    If there is a great deal of code in your `.emacs' file, you should
  287. move it into another file named `SOMETHING.el', byte-compile it (*note
  288. Byte Compilation::.), and make your `.emacs' file load the other file
  289. using `load' (*note Loading::.).
  290.  
  291.    *Note Init File Examples: (emacs)Init File Examples, for examples of
  292. how to make various commonly desired customizations in your `.emacs'
  293. file.
  294.  
  295.  - User Option: inhibit-default-init
  296.      This variable prevents Emacs from loading the default
  297.      initialization library file for your session of Emacs.  If its
  298.      value is non-`nil', then the default library is not loaded.  The
  299.      default value is `nil'.
  300.  
  301.  - Variable: before-init-hook
  302.  - Variable: after-init-hook
  303.      These two normal hooks are run just before, and just after,
  304.      loading of the user's init file or `default.el'.
  305.  
  306. 
  307. File: elisp,  Node: Terminal-Specific,  Next: Command Line Arguments,  Prev: Init File,  Up: Starting Up
  308.  
  309. Terminal-Specific Initialization
  310. --------------------------------
  311.  
  312.    Each terminal type can have its own Lisp library that Emacs loads
  313. when run on that type of terminal.  For a terminal type named TERMTYPE,
  314. the library is called `term/TERMTYPE'.  Emacs finds the file by
  315. searching the `load-path' directories as it does for other files, and
  316. trying the `.elc' and `.el' suffixes.  Normally, terminal-specific Lisp
  317. library is located in `emacs/lisp/term', a subdirectory of the
  318. `emacs/lisp' directory in which most Emacs Lisp libraries are kept.
  319.  
  320.    The library's name is constructed by concatenating the value of the
  321. variable `term-file-prefix' and the terminal type.  Normally,
  322. `term-file-prefix' has the value `"term/"'; changing this is not
  323. recommended.
  324.  
  325.    The usual function of a terminal-specific library is to enable
  326. special keys to send sequences that Emacs can recognize.  It may also
  327. need to set or add to `function-key-map' if the Termcap entry does not
  328. fully explain what should go in it.  *Note Terminal Input::.
  329.  
  330.    When the name of the terminal type contains a hyphen, only the part
  331. of the name before the first hyphen is significant in choosing the
  332. library name.  Thus, terminal types `aaa-48' and `aaa-30-rv' both use
  333. the `term/aaa' library.  If necessary, the library can evaluate
  334. `(getenv "TERM")' to find the full name of the terminal type.
  335.  
  336.    Your `.emacs' file can prevent the loading of the terminal-specific
  337. library by setting the variable `term-file-prefix' to `nil'.  This
  338. feature is very useful when experimenting with your own peculiar
  339. customizations.
  340.  
  341.    You can also arrange to override some of the actions of the
  342. terminal-specific library by setting the variable `term-setup-hook'.
  343. This is a normal hook which Emacs runs using `run-hooks' at the end of
  344. Emacs initialization, after loading both your `.emacs' file and any
  345. terminal-specific libraries.  You can use this variable to define
  346. initializations for terminals that do not have their own libraries.
  347. *Note Hooks::.
  348.  
  349.  - Variable: term-file-prefix
  350.      If the `term-file-prefix' variable is non-`nil', Emacs loads a
  351.      terminal-specific initialization file as follows:
  352.  
  353.           (load (concat term-file-prefix (getenv "TERM")))
  354.  
  355.      You may set the `term-file-prefix' variable to `nil' in your
  356.      `.emacs' file if you do not wish to load the
  357.      terminal-initialization file.  To do this, put the following in
  358.      your `.emacs' file: `(setq term-file-prefix nil)'.
  359.  
  360.  - Variable: term-setup-hook
  361.      This variable is a normal hook which Emacs runs after loading your
  362.      `.emacs' file, the default initialization file (if any) and after
  363.      loading terminal-specific Lisp files.  arguments.
  364.  
  365.      You can use `term-setup-hook' to override the definitions made by
  366.      a terminal-specific file.
  367.  
  368.    See `window-setup-hook' in *Note Window Systems::, for a related
  369. feature.
  370.  
  371. 
  372. File: elisp,  Node: Command Line Arguments,  Prev: Terminal-Specific,  Up: Starting Up
  373.  
  374. Command Line Arguments
  375. ----------------------
  376.  
  377.    You can use command line arguments to request various actions when
  378. you start Emacs.  Since you do not need to start Emacs more than once
  379. per day, and will often leave your Emacs session running longer than
  380. that, command line arguments are hardly ever used.  As a practical
  381. matter, it is best to avoid making the habit of using them, since this
  382. habit would encourage you to kill and restart Emacs unnecessarily
  383. often.  These options exist for two reasons: to be compatible with
  384. other editors (for invocation by other programs) and to enable shell
  385. scripts to run specific Lisp programs.
  386.  
  387.  - Function: command-line
  388.      This function parses the command line which Emacs was called with,
  389.      processes it, loads the user's `.emacs' file and displays the
  390.      initial nonwarranty information, etc.
  391.  
  392.  - Variable: command-line-processed
  393.      The value of this variable is `t' once the command line has been
  394.      processed.
  395.  
  396.      If you redump Emacs by calling `dump-emacs', you may wish to set
  397.      this variable to `nil' first in order to cause the new dumped Emacs
  398.      to process its new command line arguments.
  399.  
  400.  - Variable: command-switch-alist
  401.      The value of this variable is an alist of user-defined command-line
  402.      options and associated handler functions.  This variable exists so
  403.      you can add elements to it.
  404.  
  405.      A "command line option" is an argument on the command line of the
  406.      form:
  407.  
  408.           -OPTION
  409.  
  410.      The elements of the `command-switch-alist' look like this:
  411.  
  412.           (OPTION . HANDLER-FUNCTION)
  413.  
  414.      The HANDLER-FUNCTION is called to handle OPTION and receives the
  415.      option name as its sole argument.
  416.  
  417.      In some cases, the option is followed in the command line by an
  418.      argument.  In these cases, the HANDLER-FUNCTION can find all the
  419.      remaining command-line arguments in the variable
  420.      `command-line-args-left'.  (The entire list of command-line
  421.      arguments is in `command-line-args'.)
  422.  
  423.      The command line arguments are parsed by the `command-line-1'
  424.      function in the `startup.el' file.  See also *Note Command Line
  425.      Switches and Arguments: (emacs)Command Switches.
  426.  
  427.  - Variable: command-line-args
  428.      The value of this variable is the arguments passed by the shell to
  429.      Emacs, as a list of strings.
  430.  
  431. 
  432. File: elisp,  Node: Getting Out,  Next: System Environment,  Prev: Starting Up,  Up: System Interface
  433.  
  434. Getting out of Emacs
  435. ====================
  436.  
  437.    There are two ways to get out of Emacs: you can kill the Emacs job,
  438. which exits permanently, or you can suspend it, which permits you to
  439. reenter the Emacs process later.  As a practical matter, you seldom kill
  440. Emacs--only when you are about to log out.  Suspending is much more
  441. common.
  442.  
  443. * Menu:
  444.  
  445. * Killing Emacs::        Exiting Emacs irreversibly.
  446. * Suspending Emacs::     Exiting Emacs reversibly.
  447.  
  448. 
  449. File: elisp,  Node: Killing Emacs,  Next: Suspending Emacs,  Up: Getting Out
  450.  
  451. Killing Emacs
  452. -------------
  453.  
  454.    Killing Emacs means ending the execution of the Emacs process.  The
  455. parent process normally resumes control.
  456.  
  457.    All the information in the Emacs process, aside from files that have
  458. been saved, is lost when the Emacs is killed.  Because killing Emacs
  459. inadvertently can lose a lot of work, Emacs queries for confirmation
  460. before actually terminating if you have buffers that need saving or
  461. subprocesses that are running.
  462.  
  463.  - Function: kill-emacs &optional NO-QUERY
  464.      This function exits the Emacs process and kills it.
  465.  
  466.      Normally, if there are modified files or if there are running
  467.      processes, `kill-emacs' asks the user for confirmation before
  468.      exiting.  However, if NO-QUERY is supplied and non-`nil', then
  469.      Emacs exits without confirmation.
  470.  
  471.      If NO-QUERY is an integer, then it is used as the exit status of
  472.      the Emacs process.  (This is useful primarily in batch operation;
  473.      see *Note Batch Mode::.)
  474.  
  475.      If NO-QUERY is a string, its contents are stuffed into the
  476.      terminal input buffer so that the shell (or whatever program next
  477.      reads input) can read them.
  478.  
  479.  - Variable: kill-emacs-hook
  480.      This variable is a normal hook (a list of functions); the first
  481.      thing `kill-emacs' does is to run this hook with `run-hooks'.  That
  482.      calls each of the functions in the list, with no arguments.
  483.  
  484. 
  485. File: elisp,  Node: Suspending Emacs,  Prev: Killing Emacs,  Up: Getting Out
  486.  
  487. Suspending Emacs
  488. ----------------
  489.  
  490.    "Suspending Emacs" means stopping Emacs temporarily and returning
  491. control to its superior process, which is usually the shell.  This
  492. allows you to resume editing later in the same Emacs process, with the
  493. same buffers, the same kill ring, the same undo history, and so on.  To
  494. resume Emacs, use the appropriate command in the parent shell--most
  495. likely `fg'.
  496.  
  497.    Some operating systems do not support suspension of jobs; on these
  498. systems, "suspension" actually creates a new shell temporarily as a
  499. subprocess of Emacs.  Then you would exit the shell to return to Emacs.
  500.  
  501.    Suspension is not useful with window systems such as X, because the
  502. Emacs job may not have a parent that can resume it again, and in any
  503. case you can give input to some other job such as a shell merely by
  504. moving to a different window.  Therefore, suspending is not allowed
  505. when Emacs is an X client.
  506.  
  507.  - Function: suspend-emacs STRING
  508.      This function stops Emacs and returns to the superior process.  It
  509.      returns `nil'.
  510.  
  511.      If STRING is non-`nil', its characters are sent to be read as
  512.      terminal input by Emacs's superior shell.  The characters in
  513.      STRING are not echoed by the superior shell; only the results
  514.      appear.
  515.  
  516.      Before suspending, `suspend-emacs' runs the normal hook
  517.      `suspend-hook'.  In Emacs version 18, `suspend-hook' was not a
  518.      normal hook; its value was a single function, and if its value was
  519.      non-`nil', then `suspend-emacs' returned immediately without
  520.      actually suspending anything.
  521.  
  522.      After the user resumes Emacs, it runs the normal hook
  523.      `suspend-resume-hook' using `run-hooks'.  *Note Hooks::.
  524.  
  525.      The next redisplay after resumption will redraw the entire screen,
  526.      unless the variable `no-redraw-on-reenter' is non-`nil' (*note
  527.      Refresh Screen::.).
  528.  
  529.      In the following example, note that `pwd' is not echoed after
  530.      Emacs is suspended.  But it is read and executed by the shell.
  531.  
  532.           (suspend-emacs)
  533.                => nil
  534.           
  535.           (add-hook 'suspend-hook
  536.                     (function (lambda ()
  537.                                 (or (y-or-n-p
  538.                                       "Really suspend? ")
  539.                                     (error "Suspend cancelled")))))
  540.                => (lambda nil
  541.                     (or (y-or-n-p "Really suspend? ")
  542.                         (error "Suspend cancelled")))
  543.           (add-hook 'suspend-resume-hook
  544.                     (function (lambda () (message "Resumed!"))))
  545.                => (lambda nil (message "Resumed!"))
  546.           (suspend-emacs "pwd")
  547.                => nil
  548.           ---------- Buffer: Minibuffer ----------
  549.           Really suspend? `y'
  550.           ---------- Buffer: Minibuffer ----------
  551.           
  552.           ---------- Parent Shell ----------
  553.           lewis@slug[23] % /user/lewis/manual
  554.           lewis@slug[24] % fg
  555.           
  556.           ---------- Echo Area ----------
  557.           Resumed!
  558.  
  559.  - Variable: suspend-hook
  560.      This variable is a normal hook run before suspending.
  561.  
  562.  - Variable: suspend-resume-hook
  563.      This variable is a normal hook run after suspending.
  564.  
  565. 
  566. File: elisp,  Node: System Environment,  Next: User Identification,  Prev: Getting Out,  Up: System Interface
  567.  
  568. Operating System Environment
  569. ============================
  570.  
  571.    Emacs provides access to variables in the operating system
  572. environment through various functions.  These variables include the
  573. name of the system, the user's UID, and so on.
  574.  
  575.  - Variable: system-type
  576.      The value of this variable is a symbol indicating the type of
  577.      operating system Emacs is operating on.  Here is a table of the
  578.      symbols for the operating systems that Emacs can run on up to
  579.      version 19.1.
  580.  
  581.     `aix-v3'
  582.           AIX version 3.
  583.  
  584.     `berkeley-unix'
  585.           Berkeley BSD 4.1, 4.2, or 4.3.
  586.  
  587.     `hpux'
  588.           Hewlett-Packard operating system, version 5, 6, or 7.
  589.  
  590.     `irix'
  591.           Silicon Graphics Irix system.
  592.  
  593.     `rtu'
  594.           RTU 3.0, UCB universe.
  595.  
  596.     `unisoft-unix'
  597.           UniSoft's UniPlus 5.0 or 5.2.
  598.  
  599.     `usg-unix-v'
  600.           AT&T's System V.0, System V Release 2.0, 2.2, or 3.
  601.  
  602.     `vax-vms'
  603.           VAX VMS version 4 or 5.
  604.  
  605.     `xenix'
  606.           SCO Xenix 386 Release 2.2.
  607.  
  608.      We do not wish to add new symbols to make finer distinctions
  609.      unless it is absolutely necessary!  In fact, it would be nice to
  610.      eliminate some of these alternatives in the future.
  611.  
  612.  - Function: system-name
  613.      This function returns the name of the machine you are running on.
  614.           (system-name)
  615.                => "prep.ai.mit.edu"
  616.  
  617.  - Function: getenv VAR
  618.      This function returns the value of the environment variable VAR,
  619.      as a string.  If the variable `process-environment' specifies a
  620.      value for VAR, that overrides the actual environment.
  621.  
  622.           (getenv "USER")
  623.                => "lewis"
  624.           
  625.           lewis@slug[10] % printenv
  626.           PATH=.:/user/lewis/bin:/usr/bin:/usr/local/bin
  627.           USER=lewis
  628.           TERM=ibmapa16
  629.           SHELL=/bin/csh
  630.           HOME=/user/lewis
  631.  
  632.  - Command: setenv VARIABLE VALUE
  633.      This command sets the value of the environment variable named
  634.      VARIABLE to VALUE.  Both arguments should be strings.  This works
  635.      by modifying `process-environment'; binding that variable with
  636.      `let' is also reasonable practice.
  637.  
  638.  - Variable: process-environment
  639.      This variable is a list of strings to append to the environment of
  640.      processes as they are created.  Each string assigns a value to a
  641.      shell environment variable.  (This applies both to asynchronous and
  642.      synchronous processes.)  The function `getenv' also looks at this
  643.      variable.
  644.  
  645.           process-environment
  646.           => ("l=/usr/stanford/lib/gnuemacs/lisp"
  647.               "PATH=.:/user/lewis/bin:/usr/class:/nfsusr/local/bin"
  648.               "USER=lewis"
  649.  
  650.           "TERM=ibmapa16"
  651.               "SHELL=/bin/csh"
  652.               "HOME=/user/lewis")
  653.  
  654.  - Function: load-average
  655.      This function returns the current 1 minute, 5 minute and 15 minute
  656.      load averages in a list.  The values are integers that are 100
  657.      times the system load averages.  (The load averages indicate the
  658.      number of processes trying to run.)
  659.  
  660.           (load-average)
  661.                => (169 48 36)
  662.           
  663.           lewis@rocky[5] % uptime
  664.            11:55am  up 1 day, 19:37,  3 users,
  665.            load average: 1.69, 0.48, 0.36
  666.  
  667.  - Function: setprv PRIVILEGE-NAME &optional SETP GETPRV
  668.      This function sets or resets a VMS privilege.  (It does not exist
  669.      on Unix.)  The first arg is the privilege name, as a string.  The
  670.      second argument, SETP, is `t' or `nil', indicating whether the
  671.      privilege is to be turned on or off.  Its default is `nil'.  The
  672.      function returns `t' if success, `nil' if not.
  673.  
  674.      If the third argument, GETPRV, is non-`nil', `setprv' does not
  675.      change the privilege, but returns `t' or `nil' indicating whether
  676.      the privilege is currently enabled.
  677.  
  678. 
  679. File: elisp,  Node: User Identification,  Next: Time of Day,  Prev: System Environment,  Up: System Interface
  680.  
  681. User Identification
  682. ===================
  683.  
  684.  - Function: user-login-name
  685.      This function returns the name under which the user is logged in.
  686.      This is based on the effective UID, not the real UID.
  687.  
  688.           (user-login-name)
  689.                => "lewis"
  690.  
  691.  - Function: user-real-login-name
  692.      This function returns the name under which the user logged in.
  693.      This is based on the real UID, not the effective UID.  This
  694.      differs from `user-login-name' only when running with the setuid
  695.      bit.
  696.  
  697.  - Function: user-full-name
  698.      This function returns the full name of the user.
  699.  
  700.           (user-full-name)
  701.                => "Bil Lewis"
  702.  
  703.  - Function: user-real-uid
  704.      This function returns the real UID of the user.
  705.  
  706.           (user-real-uid)
  707.                => 19
  708.  
  709.  - Function: user-uid
  710.      This function returns the effective UID of the user.
  711.  
  712. 
  713. File: elisp,  Node: Time of Day,  Next: Timers,  Prev: User Identification,  Up: System Interface
  714.  
  715. Time of Day
  716. ===========
  717.  
  718.    This section explains how to determine the current time and the time
  719. zone.
  720.  
  721.  - Function: current-time-string &optional TIME-VALUE
  722.      This function returns the current time and date as a
  723.      humanly-readable string.  The format of the string is unvarying;
  724.      the number of characters used for each part is always the same, so
  725.      you can reliably use `substring' to extract pieces of it.
  726.      However, it would be wise to count the characters from the
  727.      beginning of the string rather than from the end, as additional
  728.      information may be added at the end.
  729.  
  730.      The argument TIME-VALUE, if given, specifies a time to format
  731.      instead of the current time.  The argument should be a cons cell
  732.      containing two integers, or a list whose first two elements are
  733.      integers.  Thus, you can use times obtained from `current-time'
  734.      (see below) and from `file-attributes' (*note File Attributes::.).
  735.  
  736.           (current-time-string)
  737.                => "Wed Oct 14 22:21:05 1987"
  738.  
  739.  - Function: current-time
  740.      This function returns the system's time value as a list of three
  741.      integers: `(HIGH LOW MICROSEC)'.  The integers HIGH and LOW
  742.      combine to give the number of seconds since 0:00 January 1, 1970,
  743.      which is HIGH * 2**16 + LOW.
  744.  
  745.      The third element, MICROSEC, gives the microseconds since the
  746.      start of the current second (or 0 for systems that return time
  747.      only on the resolution of a second).
  748.  
  749.      The first two elements can be compared with file time values such
  750.      as you get with the function `file-attributes'.  *Note File
  751.      Attributes::.
  752.  
  753.  - Function: current-time-zone &optional TIME-VALUE
  754.      This function returns a list describing the time zone that the
  755.      user is in.
  756.  
  757.      The value has the form `(OFFSET NAME)'.  Here OFFSET is an integer
  758.      giving the number of seconds ahead of UTC (east of Greenwich).  A
  759.      negative value means west of Greenwich.  The second element, NAME
  760.      is a string giving the name of the time zone.  Both elements
  761.      change when daylight savings time begins or ends; if the user has
  762.      specified a time zone that does not use a seasonal time
  763.      adjustment, then the value is constant through time.
  764.  
  765.      If the operating system doesn't supply all the information
  766.      necessary to compute the value, both elements of the list are
  767.      `nil'.
  768.  
  769.      The argument TIME-VALUE, if given, specifies a time to analyze
  770.      instead of the current time.  The argument should be a cons cell
  771.      containing two integers, or a list whose first two elements are
  772.      integers.  Thus, you can use times obtained from `current-time'
  773.      (see below) and from `file-attributes' (*note File Attributes::.).
  774.  
  775. 
  776. File: elisp,  Node: Timers,  Next: Terminal Input,  Prev: Time of Day,  Up: System Interface
  777.  
  778. Timers
  779. ======
  780.  
  781.    You can set up a timer to call a function at a specified future time.
  782.  
  783.  - Function: run-at-time TIME REPEAT FUNCTION &rest ARGS
  784.      This function arranges to call FUNCTION with arguments ARGS at
  785.      time TIME.  The argument FUNCTION is a function to call later, and
  786.      ARGS are the arguments to give it when it is called.  The time
  787.      TIME is specified as a string.
  788.  
  789.      Absolute times may be specified in a wide variety of formats; The
  790.      form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where all fields are
  791.      numbers, works; the format that `current-time-string' returns is
  792.      also allowed.
  793.  
  794.      To specify a relative time, use numbers followed by units.  For
  795.      example:
  796.  
  797.     `1 min'
  798.           denotes 1 minute from now.
  799.  
  800.     `1 min 5 sec'
  801.           denotes 65 seconds from now.
  802.  
  803.     `1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year'
  804.           denotes exactly 103 months, 123 days, and 10862 seconds from
  805.           now.
  806.  
  807.      If TIME is an integer, that specifies a relative time measured in
  808.      seconds.
  809.  
  810.      The argument REPEAT specifies how often to repeat the call.  If
  811.      REPEAT is `nil', there are no repetitions; FUNCTION is called just
  812.      once, at TIME.  If REPEAT is an integer, it specifies a repetition
  813.      period measured in seconds.
  814.  
  815.  - Function: cancel-timer TIMER
  816.      Cancel the requested action for TIMER, which should be a value
  817.      previously returned by `run-at-time'.  This cancels the effect of
  818.      that call to `run-at-time'; the arrival of the specified time will
  819.      not cause anything special to happen.
  820.  
  821. 
  822. File: elisp,  Node: Terminal Input,  Next: Terminal Output,  Prev: Timers,  Up: System Interface
  823.  
  824. Terminal Input
  825. ==============
  826.  
  827.    This section describes functions and variables for recording or
  828. manipulating terminal input.  See *Note Emacs Display::, for related
  829. functions.
  830.  
  831. * Menu:
  832.  
  833. * Input Modes::        Options for how input is processed.
  834. * Translating Input::   Low level conversion of some characters or events
  835.               into others.
  836. * Recording Input::    Saving histories of recent or all input events.
  837.  
  838. 
  839. File: elisp,  Node: Input Modes,  Next: Translating Input,  Up: Terminal Input
  840.  
  841. Input Modes
  842. -----------
  843.  
  844.  - Function: set-input-mode INTERRUPT FLOW META QUIT-CHAR
  845.      This function sets the mode for reading keyboard input.  If
  846.      INTERRUPT is non-null, then Emacs uses input interrupts.  If it is
  847.      `nil', then it uses CBREAK mode.
  848.  
  849.      If FLOW is non-`nil', then Emacs uses XON/XOFF (`C-q', `C-s') flow
  850.      control for output to terminal.  This has no effect except in
  851.      CBREAK mode.  *Note Flow Control::.
  852.  
  853.      The normal setting is system dependent.  Some systems always use
  854.      CBREAK mode regardless of what is specified.
  855.  
  856.      The argument META controls support for input character codes above
  857.      127.  If META is `t', Emacs converts characters with the 8th bit
  858.      set into Meta characters.  If META is `nil', Emacs disregards the
  859.      8th bit; this is necessary when the terminal uses it as a parity
  860.      bit.  If META is neither `t' nor `nil', Emacs uses all 8 bits of
  861.      input unchanged.  This is good for terminals using European 8-bit
  862.      character sets.
  863.  
  864.      If QUIT-CHAR is non-`nil', it specifies the character to use for
  865.      quitting.  Normally this character is `C-g'.  *Note Quitting::.
  866.  
  867.    The `current-input-mode' function returns the input mode settings
  868. Emacs is currently using.
  869.  
  870.  - Function: current-input-mode
  871.      This function returns current mode for reading keyboard input.  It
  872.      returns a list, corresponding to the arguments of `set-input-mode',
  873.      of the form `(INTERRUPT FLOW META QUIT)' in which:
  874.     INTERRUPT
  875.           is non-`nil' when Emacs is using interrupt-driven input.  If
  876.           `nil', Emacs is using CBREAK mode.
  877.  
  878.     FLOW
  879.           is non-`nil' if Emacs uses XON/XOFF (`C-q', `C-s') flow
  880.           control for output to the terminal.  This value has no effect
  881.           unless INTERRUPT is non-`nil'.
  882.  
  883.     META
  884.           is non-`nil' if Emacs is paying attention to the eighth bit of
  885.           input characters; if nil, Emacs clears the eighth bit of
  886.           every input character.
  887.  
  888.     QUIT
  889.           is the character Emacs currently uses for quitting, usually
  890.           `C-g'.
  891.  
  892.  - Variable: meta-flag
  893.      This variable used to control whether to treat the 0200 bit in
  894.      keyboard input as the Meta bit.  `nil' meant no, and anything else
  895.      meant yes.  This variable existed in Emacs versions 18 and earlier
  896.      but no longer exists in Emacs 19; use `set-input-mode' instead.
  897.  
  898. 
  899. File: elisp,  Node: Translating Input,  Next: Recording Input,  Prev: Input Modes,  Up: Terminal Input
  900.  
  901. Translating Input Events
  902. ------------------------
  903.  
  904.  - Variable: extra-keyboard-modifiers
  905.      This variable lets Lisp programs "press" the modifier keys on the
  906.      keyboard.  The value is a bit mask:
  907.  
  908.     1
  909.           The SHIFT key.
  910.  
  911.     2
  912.           The LOCK key.
  913.  
  914.     4
  915.           The CTL key.
  916.  
  917.     8
  918.           The META key.
  919.  
  920.      Each time the user types a keyboard key, it is altered as if the
  921.      modifier keys specified in the bit mask were held down.
  922.  
  923.      When you use X windows, the program can "press" any of the modifier
  924.      keys in this way.  Otherwise, only the CTL and META keys can be
  925.      virtually pressed.
  926.  
  927.  - Variable: keyboard-translate-table
  928.      This variable is the translate table for keyboard characters.  It
  929.      lets you reshuffle the keys on the keyboard without changing any
  930.      command bindings.  Its value must be a string or `nil'.
  931.  
  932.      If `keyboard-translate-table' is a string, then each character read
  933.      from the keyboard is looked up in this string and the character in
  934.      the string is used instead.  If the string is of length N,
  935.      character codes N and up are untranslated.
  936.  
  937.      In the example below, we set `keyboard-translate-table' to a
  938.      string of 128 characters.  Then we fill it in to swap the
  939.      characters `C-s' and `C-\' and the characters `C-q' and `C-^'.
  940.      Subsequently, typing `C-\' has all the usual effects of typing
  941.      `C-s', and vice versa.  (*Note Flow Control:: for more information
  942.      on this subject.)
  943.  
  944.           (defun evade-flow-control ()
  945.             "Replace C-s with C-\ and C-q with C-^."
  946.             (interactive)
  947.             (let ((the-table (make-string 128 0)))
  948.               (let ((i 0))
  949.                 (while (< i 128)
  950.                   (aset the-table i i)
  951.                   (setq i (1+ i))))
  952.           
  953.               ;; Swap `C-s' and `C-\'.
  954.               (aset the-table ?\034 ?\^s)
  955.               (aset the-table ?\^s ?\034)
  956.               ;; Swap `C-q' and `C-^'.
  957.               (aset the-table ?\036 ?\^q)
  958.               (aset the-table ?\^q ?\036)
  959.           
  960.               (setq keyboard-translate-table the-table)))
  961.  
  962.      Note that this translation is the first thing that happens to a
  963.      character after it is read from the terminal.  Record-keeping
  964.      features such as `recent-keys' and dribble files record the
  965.      characters after translation.
  966.  
  967.  - Function: keyboard-translate FROM TO
  968.      This function modifies `keyboard-translate-table' to translate
  969.      character code FROM into character code TO.  It creates or
  970.      enlarges the translate table if necessary.
  971.  
  972.  - Variable: function-key-map
  973.      This variable holds a keymap which describes the character
  974.      sequences sent by function keys on an ordinary character terminal.
  975.      This keymap uses the data structure as other keymaps, but is used
  976.      differently: it specifies translations to make while reading
  977.      events.
  978.  
  979.      If `function-key-map' "binds" a key sequence K to a vector V, then
  980.      when K appears as a subsequence *anywhere* in a key sequence, it
  981.      is replaced with the events in V.
  982.  
  983.      For example, VT100 terminals send `ESC O P' when the keypad PF1
  984.      key is pressed.  Therefore, we want Emacs to translate that
  985.      sequence of events into the single event `pf1'.  We accomplish
  986.      this by "binding" `ESC O P' to `[pf1]' in `function-key-map', when
  987.      using a VT100.
  988.  
  989.      Thus, typing `C-c PF1' sends the character sequence `C-c ESC O P';
  990.      later the function `read-key-sequence' translates this back into
  991.      `C-c PF1', which it returns as the vector `[?\C-c pf1]'.
  992.  
  993.      Entries in `function-key-map' are ignored if they conflict with
  994.      bindings made in the minor mode, local, or global keymaps.  The
  995.      intent is that the character sequences that function keys send
  996.      should not have command bindings in their own right.
  997.  
  998.      The value of `function-key-map' is usually set up automatically
  999.      according to the terminal's Terminfo or Termcap entry, but
  1000.      sometimes those need help from terminal-specific Lisp files.
  1001.      Emacs comes with a number of terminal-specific files for many
  1002.      common terminals; their main purpose is to make entries in
  1003.      `function-key-map' beyond those that can be deduced from Termcap
  1004.      and Terminfo.  *Note Terminal-Specific::.
  1005.  
  1006.      Emacs versions 18 and earlier used totally different means of
  1007.      detecting the character sequences that represent function keys.
  1008.  
  1009.  - Variable: key-translation-map
  1010.      This variable is another keymap used just like `function-key-map'
  1011.      to translate input events into other events.  It differs from
  1012.      `function-key-map' in two ways:
  1013.  
  1014.         * `key-translation-map' goes to work after `function-key-map' is
  1015.           finished; it receives the results of translation by
  1016.           `function-key-map'.
  1017.  
  1018.         * `key-translation-map' overrides actual key bindings.
  1019.  
  1020.      The intent of `key-translation-map' is for users to map one
  1021.      character set to another, including ordinary characters normally
  1022.      bound to `self-insert-command'.
  1023.  
  1024. 
  1025. File: elisp,  Node: Recording Input,  Prev: Translating Input,  Up: Terminal Input
  1026.  
  1027. Recording Input
  1028. ---------------
  1029.  
  1030.  - Function: recent-keys
  1031.      This function returns a vector containing the last 100 input events
  1032.      from the keyboard or mouse.  All input events are included,
  1033.      whether or not they were used as parts of key sequences.  Thus,
  1034.      you always get the last 100 inputs, not counting keyboard macros.
  1035.      (Events from keyboard macros are excluded because they are less
  1036.      interesting for debugging; it should be enough to see the events
  1037.      which invoked the macros.)
  1038.  
  1039.  - Command: open-dribble-file FILENAME
  1040.      This function opens a "dribble file" named FILENAME.  When a
  1041.      dribble file is open, each input event from the keyboard or mouse
  1042.      (but not those from keyboard macros) are written in that file.  A
  1043.      non-character event is expressed using its printed representation
  1044.      surrounded by `<...>'.
  1045.  
  1046.      You close the dribble file by calling this function with an
  1047.      argument of `nil'.  The function always returns `nil'.
  1048.  
  1049.      This function is normally used to record the input necessary to
  1050.      trigger an Emacs bug, for the sake of a bug report.
  1051.  
  1052.           (open-dribble-file "~/dribble")
  1053.                => nil
  1054.  
  1055.    See also the `open-termscript' function (*note Terminal Output::.).
  1056.  
  1057. 
  1058. File: elisp,  Node: Terminal Output,  Next: Flow Control,  Prev: Terminal Input,  Up: System Interface
  1059.  
  1060. Terminal Output
  1061. ===============
  1062.  
  1063.    The terminal output functions send output to the terminal or keep
  1064. track of output sent to the terminal.  The variable `baud-rate' tells
  1065. you what Emacs thinks is the output speed of the terminal.
  1066.  
  1067.  - Variable: baud-rate
  1068.      This variable's value is the output speed of the terminal, as far
  1069.      as Emacs knows.  Setting this variable does not change the speed
  1070.      of actual data transmission, but the value is used for
  1071.      calculations such as padding.  It also affects decisions about
  1072.      whether to scroll part of the screen or repaint--even when using a
  1073.      window system, (We designed it this way despite the fact that a
  1074.      window system has no true "output speed", to give you a way to
  1075.      tune these decisions.)
  1076.  
  1077.      The value is measured in baud.
  1078.  
  1079.    If you are running across a network, and different parts of the
  1080. network work at different baud rates, the value returned by Emacs may be
  1081. different from the value used by your local terminal.  Some network
  1082. protocols communicate the local terminal speed to the remote machine, so
  1083. that Emacs and other programs can get the proper value, but others do
  1084. not.  If Emacs has the wrong value, it makes decisions that are less
  1085. than optimal.  To fix the problem, set `baud-rate'.
  1086.  
  1087.  - Function: baud-rate
  1088.      This function returns the value of the variable `baud-rate'.  In
  1089.      Emacs versions 18 and earlier, this was the only way to find out
  1090.      the terminal speed.
  1091.  
  1092.  - Function: send-string-to-terminal STRING
  1093.      This function sends STRING to the terminal without alteration.
  1094.      Control characters in STRING have terminal-dependent effects.
  1095.  
  1096.      One use of this function is to define function keys on terminals
  1097.      that have downloadable function key definitions.  For example,
  1098.      this is how on certain terminals to define function key 4 to move
  1099.      forward four characters (by transmitting the characters `C-u C-f'
  1100.      to the computer):
  1101.  
  1102.           (send-string-to-terminal "\eF4\^U\^F")
  1103.                => nil
  1104.  
  1105.  - Command: open-termscript FILENAME
  1106.      This function is used to open a "termscript file" that will record
  1107.      all the characters sent by Emacs to the terminal.  It returns
  1108.      `nil'.  Termscript files are useful for investigating problems
  1109.      where Emacs garbles the screen, problems which are due to incorrect
  1110.      Termcap entries or to undesirable settings of terminal options more
  1111.      often than actual Emacs bugs.  Once you are certain which
  1112.      characters were actually output, you can determine reliably
  1113.      whether they correspond to the Termcap specifications in use.
  1114.  
  1115.      See also `open-dribble-file' in *Note Terminal Input::.
  1116.  
  1117.           (open-termscript "../junk/termscript")
  1118.                => nil
  1119.  
  1120. 
  1121. File: elisp,  Node: Flow Control,  Next: Batch Mode,  Prev: Terminal Output,  Up: System Interface
  1122.  
  1123. Flow Control
  1124. ============
  1125.  
  1126.    This section attempts to answer the question "Why does Emacs choose
  1127. to use flow-control characters in its command character set?"  For a
  1128. second view on this issue, read the comments on flow control in the
  1129. `emacs/INSTALL' file from the distribution; for help with Termcap
  1130. entries and DEC terminal concentrators, see `emacs/etc/TERMS'.
  1131.  
  1132.    At one time, most terminals did not need flow control, and none used
  1133. `C-s' and `C-q' for flow control.  Therefore, the choice of `C-s' and
  1134. `C-q' as command characters was unobjectionable.  Emacs, for economy of
  1135. keystrokes and portability, used nearly all the ASCII control
  1136. characters, with mnemonic meanings when possible; thus, `C-s' for
  1137. search and `C-q' for quote.
  1138.  
  1139.    Later, some terminals were introduced which required these characters
  1140. for flow control.  They were not very good terminals for full-screen
  1141. editing, so Emacs maintainers did not pay attention.  In later years,
  1142. flow control with `C-s' and `C-q' became widespread among terminals,
  1143. but by this time it was usually an option.  And the majority of users,
  1144. who can turn flow control off, were unwilling to switch to less
  1145. mnemonic key bindings for the sake of flow control.
  1146.  
  1147.    So which usage is "right", Emacs's or that of some terminal and
  1148. concentrator manufacturers?  This is a rhetorical (or religious)
  1149. question; it has no simple answer.
  1150.  
  1151.    One reason why we are reluctant to cater to the problems caused by
  1152. `C-s' and `C-q' is that they are gratuitous.  There are other
  1153. techniques (albeit less common in practice) for flow control that
  1154. preserve transparency of the character stream.  Note also that their use
  1155. for flow control is not an official standard.  Interestingly, on the
  1156. model 33 teletype with a paper tape punch (which is very old), `C-s'
  1157. and `C-q' were sent by the computer to turn the punch on and off!
  1158.  
  1159.    GNU Emacs version 19 provides a convenient way of enabling flow
  1160. control if you want it: call the function `enable-flow-control'.
  1161.  
  1162.  - Function: enable-flow-control
  1163.      This function enables use of `C-s' and `C-q' for output flow
  1164.      control, and provides the characters `C-\' and `C-^' as aliases
  1165.      for them using `keyboard-translate-table' (*note Translating
  1166.      Input::.).
  1167.  
  1168.    You can use the function `enable-flow-control-on' in your `.emacs'
  1169. file to enable flow control automatically on certain terminal types.
  1170.  
  1171.  - Function: enable-flow-control-on &rest TERMTYPES
  1172.      This function enables flow control, and the aliases `C-\' and
  1173.      `C-^', if the terminal type is one of TERMTYPES.  For example:
  1174.  
  1175.           (enable-flow-control-on "vt200" "vt300" "vt101" "vt131")
  1176.  
  1177.    Here is how `enable-flow-control' does its job:
  1178.  
  1179.   1. It sets CBREAK mode for terminal input, and tells the kernel to
  1180.      handle flow control, with `(set-input-mode nil t)'.
  1181.  
  1182.   2. It sets up `keyboard-translate-table' to translate `C-\' and `C-^'
  1183.      into `C-s' and `C-q' were typed.  Except at its very lowest level,
  1184.      Emacs never knows that the characters typed were anything but
  1185.      `C-s' and `C-q', so you can in effect type them as `C-\' and `C-^'
  1186.      even when they are input for other commands.  For example:
  1187.  
  1188.           (setq keyboard-translate-table (make-string 128 0))
  1189.           (let ((i 0))
  1190.             ;; Map most characters into themselves.
  1191.             (while (< i 128)
  1192.               (aset keyboard-translate-table i i)
  1193.               (setq i (1+ i))))
  1194.             ;; Map `C-\' to `C-s'.
  1195.             (aset the-table ?\034 ?\^s)
  1196.             ;; Map `C-^' to `C-q'.
  1197.             (aset the-table ?\036 ?\^q)))
  1198.  
  1199.    If the terminal is the source of the flow control characters, then
  1200. once you enable kernel flow control handling, you probably can make do
  1201. with less padding than normal for that terminal.  You can reduce the
  1202. amount of padding by customizing the Termcap entry.  You can also
  1203. reduce it by setting `baud-rate' to a smaller value so that Emacs uses
  1204. a smaller speed when calculating the padding needed.  *Note Terminal
  1205. Output::.
  1206.  
  1207. 
  1208. File: elisp,  Node: Batch Mode,  Prev: Flow Control,  Up: System Interface
  1209.  
  1210. Batch Mode
  1211. ==========
  1212.  
  1213.    The command line option `-batch' causes Emacs to run
  1214. noninteractively.  In this mode, Emacs does not read commands from the
  1215. terminal, it does not alter the terminal modes, and it does not expect
  1216. to be outputting to an erasable screen.  The idea is that you specify
  1217. Lisp programs to run; when they are finished, Emacs should exit.  The
  1218. way to specify the programs to run is with `-l FILE', which loads the
  1219. library named FILE, and `-f FUNCTION', which calls FUNCTION with no
  1220. arguments.
  1221.  
  1222.    Any Lisp program output that would normally go to the echo area,
  1223. either using `message' or using `prin1', etc., with `t' as the stream,
  1224. goes instead to Emacs's standard output descriptor when in batch mode.
  1225. Thus, Emacs behaves much like a noninteractive application program.
  1226. (The echo area output that Emacs itself normally generates, such as
  1227. command echoing, is suppressed entirely.)
  1228.  
  1229.  - Variable: noninteractive
  1230.      This variable is non-`nil' when Emacs is running in batch mode.
  1231.  
  1232.