Misc manual updates.
[emacs.git] / doc / lispref / os.texi
blob8b158e602fda898e58876f2d904a8e2085fa1b40
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-1999, 2001-2012
4 @c   Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../../info/os
7 @node System Interface, Packaging, Display, Top
8 @chapter Operating System Interface
10   This chapter is about starting and getting out of Emacs, access to
11 values in the operating system environment, and terminal input, output,
12 and flow control.
14   @xref{Building Emacs}, for related information.  @xref{Display}, for
15 additional operating system status information pertaining to the
16 terminal and the screen.
18 @menu
19 * Starting Up::         Customizing Emacs startup processing.
20 * Getting Out::         How exiting works (permanent or temporary).
21 * System Environment::  Distinguish the name and kind of system.
22 * User Identification:: Finding the name and user id of the user.
23 * Time of Day::         Getting the current time.
24 * Time Conversion::     Converting a time from numeric form to
25                           calendrical data and vice versa.
26 * Time Parsing::        Converting a time from numeric form to text
27                           and vice versa.
28 * Processor Run Time::  Getting the run time used by Emacs.
29 * Time Calculations::   Adding, subtracting, comparing times, etc.
30 * Timers::              Setting a timer to call a function at a certain time.
31 * Idle Timers::         Setting a timer to call a function when Emacs has
32                           been idle for a certain length of time.
33 * Terminal Input::      Accessing and recording terminal input.
34 * Terminal Output::     Controlling and recording terminal output.
35 * Sound Output::        Playing sounds on the computer's speaker.
36 * X11 Keysyms::         Operating on key symbols for X Windows.
37 * Batch Mode::          Running Emacs without terminal interaction.
38 * Session Management::  Saving and restoring state with X Session Management.
39 * Dynamic Libraries::   On-demand loading of support libraries.
40 @end menu
42 @node Starting Up
43 @section Starting Up Emacs
45   This section describes what Emacs does when it is started, and how you
46 can customize these actions.
48 @menu
49 * Startup Summary::         Sequence of actions Emacs performs at startup.
50 * Init File::               Details on reading the init file.
51 * Terminal-Specific::       How the terminal-specific Lisp file is read.
52 * Command-Line Arguments::  How command-line arguments are processed,
53                               and how you can customize them.
54 @end menu
56 @node Startup Summary
57 @subsection Summary: Sequence of Actions at Startup
58 @cindex initialization of Emacs
59 @cindex startup of Emacs
60 @cindex @file{startup.el}
62   When Emacs is started up, it performs the following operations
63 (which are defined in @file{startup.el}):
65 @enumerate
66 @item
67 It adds subdirectories to @code{load-path}, by running the file named
68 @file{subdirs.el} in each directory in the list.  Normally, this file
69 adds the directory's subdirectories to the list, and those are scanned
70 in their turn.  The files @file{subdirs.el} are normally generated
71 automatically when Emacs is installed.
73 @vindex before-init-time
74 @item
75 It sets the variable @code{before-init-time} to the value of
76 @code{current-time} (@pxref{Time of Day}).  It also sets
77 @code{after-init-time} to @code{nil}, which signals to Lisp programs
78 that Emacs is being initialized.
80 @vindex initial-window-system@r{, and startup}
81 @vindex window-system-initialization-alist
82 @item
83 It loads the initialization library for the window system specified by
84 the variable @code{initial-window-system} (@pxref{Window Systems,
85 initial-window-system}).  This library's name is
86 @file{term/@var{windowsystem}-win.el}, where @var{windowsystem} is the
87 value of @code{initial-window-system}.  From that library, it calls
88 the appropriate initialization function.  The initialization function
89 for each supported window system is specified by
90 @code{window-system-initialization-alist}.
92 @item
93 It sets the language environment and the terminal coding system,
94 if requested by environment variables such as @code{LANG}.
96 @item
97 It processes the initial options.  (Some of them are handled
98 even earlier than this.)
100 @item
101 It runs the normal hook @code{before-init-hook}.
103 @item
104 It initializes the initial frame's faces, and turns on the menu bar
105 and tool bar if needed.
107 @item
108 It loads the library @file{site-start}, if it exists.  This is not
109 done if the options @samp{-Q} or @samp{--no-site-file} were specified.
110 @cindex @file{site-start.el}
112 @item
113 It loads your init file (@pxref{Init File}).  This is not done if the
114 options @samp{-q}, @samp{-Q}, or @samp{--batch} were specified.  If
115 the @samp{-u} option was specified, Emacs looks for the init file in
116 that user's home directory instead.
118 @item
119 It loads the library @file{default}, if it exists.  This is not done
120 if @code{inhibit-default-init} is non-@code{nil}, nor if the options
121 @samp{-q}, @samp{-Q}, or @samp{--batch} were specified.
122 @cindex @file{default.el}
124 @item
125 It loads your abbrevs from the file specified by
126 @code{abbrev-file-name}, if that file exists and can be read
127 (@pxref{Abbrev Files, abbrev-file-name}).  This is not done if the
128 option @samp{--batch} was specified.
130 @item
131 If @code{package-enable-at-startup} is non-@code{nil}, it calls the
132 function @code{package-initialize} to activate any optional Emacs Lisp
133 package that has been installed.  @xref{Packaging Basics}.
135 @vindex after-init-time
136 @item
137 It sets the variable @code{after-init-time} to the value of
138 @code{current-time}.  This variable was set to @code{nil} earlier;
139 setting it to the current time signals that the initialization phase
140 is over, and, together with @code{before-init-time}, provides the
141 measurement of how long it took.
143 @item
144 It runs the normal hook @code{after-init-hook}.
146 @item
147 If the buffer @samp{*scratch*} exists and is still in Fundamental mode
148 (as it should be by default), it sets its major mode according to
149 @code{initial-major-mode}.
151 @item
152 If started on a text terminal, it loads the terminal-specific
153 Lisp library, which is specified by the variable
154 @code{term-file-prefix} (@pxref{Terminal-Specific}).  This is not done
155 in @code{--batch} mode, nor if @code{term-file-prefix} is @code{nil}.
157 @item
158 It displays the initial echo area message, unless you have suppressed
159 that with @code{inhibit-startup-echo-area-message}.
161 @item
162 It processes the action arguments from the command line.
164 @item
165 It now exits if the option @code{--batch} was specified.
167 @item
168 If @code{initial-buffer-choice} is a string, it visits the file with
169 that name.  Furthermore, if the @samp{*scratch*} buffer exists and is
170 empty, it inserts @code{initial-scratch-message} into that buffer.
172 @item
173 It runs @code{emacs-startup-hook} and then @code{term-setup-hook}.
175 @item
176 It calls @code{frame-notice-user-settings}, which modifies the
177 parameters of the selected frame according to whatever the init files
178 specify.
180 @item
181 It runs @code{window-setup-hook}.  @xref{Window Systems}.
183 @item
184 If the option @code{--daemon} was specified, it calls
185 @code{server-start} and detaches from the controlling terminal.
186 @xref{Emacs Server,,, emacs, The GNU Emacs Manual}.
188 @item
189 It displays the @dfn{startup screen}, which is a special buffer that
190 contains information about copyleft and basic Emacs usage.  This is
191 not done if @code{initial-buffer-choice} or
192 @code{inhibit-startup-screen} are @code{nil}, nor if the
193 @samp{--no-splash} or @samp{-Q} command-line options were specified.
195 @item
196 If started by the X session manager, it calls
197 @code{emacs-session-restore} passing it as argument the ID of the
198 previous session.  @xref{Session Management}.
199 @end enumerate
201 @defopt inhibit-startup-screen
202 This variable, if non-@code{nil}, inhibits the startup screen.  In
203 that case, Emacs typically displays the @samp{*scratch*} buffer; but
204 see @code{initial-buffer-choice}, below.
206 Do not set this variable in the init file of a new user, or in a way
207 that affects more than one user, as that would prevent new users from
208 receiving information about copyleft and basic Emacs usage.
210 @vindex inhibit-startup-message
211 @vindex inhibit-splash-screen
212 @code{inhibit-startup-message} and @code{inhibit-splash-screen} are
213 aliases for this variable.
214 @end defopt
216 @defopt initial-buffer-choice
217 This variable, if non-@code{nil}, determines a file or buffer for
218 Emacs to display after starting up, instead of the startup screen.  If
219 its value is @code{t}, Emacs displays the @samp{*scratch*} buffer.  If
220 its value is a string, that specifies the name of a file for Emacs to
221 visit.
222 @end defopt
224 @defopt inhibit-startup-echo-area-message
225 This variable controls the display of the startup echo area message.
226 You can suppress the startup echo area message by adding text with this
227 form to your init file:
229 @example
230 (setq inhibit-startup-echo-area-message
231       "@var{your-login-name}")
232 @end example
234 Emacs explicitly checks for an expression as shown above in your init
235 file; your login name must appear in the expression as a Lisp string
236 constant.  Other methods of setting
237 @code{inhibit-startup-echo-area-message} to the same value do not
238 inhibit the startup message.  This way, you can easily inhibit the
239 message for yourself if you wish, but thoughtless copying of your init
240 file will not inhibit the message for someone else.
241 @end defopt
243 @defopt initial-scratch-message
244 This variable, if non-@code{nil}, should be a string, which is
245 inserted into the @samp{*scratch*} buffer when Emacs starts up.  If it
246 is @code{nil}, the @samp{*scratch*} buffer is empty.
247 @end defopt
249 @node Init File
250 @subsection The Init File
251 @cindex init file
252 @cindex @file{.emacs}
253 @cindex @file{init.el}
255   When you start Emacs, it normally attempts to load your @dfn{init
256 file}.  This is either a file named @file{.emacs} or @file{.emacs.el}
257 in your home directory, or a file named @file{init.el} in a
258 subdirectory named @file{.emacs.d} in your home directory.  Whichever
259 place you use, you can also compile the file (@pxref{Byte
260 Compilation}); then the actual file loaded will be @file{.emacs.elc}
261 or @file{init.elc}.
263   The command-line switches @samp{-q}, @samp{-Q}, and @samp{-u}
264 control whether and where to find the init file; @samp{-q} (and the
265 stronger @samp{-Q}) says not to load an init file, while @samp{-u
266 @var{user}} says to load @var{user}'s init file instead of yours.
267 @xref{Entering Emacs,,, emacs, The GNU Emacs Manual}.  If neither
268 option is specified, Emacs uses the @code{LOGNAME} environment
269 variable, or the @code{USER} (most systems) or @code{USERNAME} (MS
270 systems) variable, to find your home directory and thus your init
271 file; this way, even if you have su'd, Emacs still loads your own init
272 file.  If those environment variables are absent, though, Emacs uses
273 your user-id to find your home directory.
275 @cindex default init file
276   An Emacs installation may have a @dfn{default init file}, which is a
277 Lisp library named @file{default.el}.  Emacs finds this file through
278 the standard search path for libraries (@pxref{How Programs Do
279 Loading}).  The Emacs distribution does not come with this file; it is
280 intended for local customizations.  If the default init file exists,
281 it is loaded whenever you start Emacs, except in batch mode or if
282 @samp{-q} (or @samp{-Q}) is specified.  But your own personal init
283 file, if any, is loaded first; if it sets @code{inhibit-default-init}
284 to a non-@code{nil} value, then Emacs does not subsequently load the
285 @file{default.el} file.
287   Another file for site-customization is @file{site-start.el}.  Emacs
288 loads this @emph{before} the user's init file.  You can inhibit the
289 loading of this file with the option @samp{--no-site-file}.
291 @defopt site-run-file
292 This variable specifies the site-customization file to load before the
293 user's init file.  Its normal value is @code{"site-start"}.  The only
294 way you can change it with real effect is to do so before dumping
295 Emacs.
296 @end defopt
298   @xref{Init Examples,, Init File Examples, emacs, The GNU Emacs Manual}, for
299 examples of how to make various commonly desired customizations in your
300 @file{.emacs} file.
302 @defopt inhibit-default-init
303 This variable prevents Emacs from loading the default initialization
304 library file for your session of Emacs.  If its value is non-@code{nil},
305 then the default library is not loaded.  The default value is
306 @code{nil}.
307 @end defopt
309 @defvar before-init-hook
310 This normal hook is run, once, just before loading all the init files
311 (the user's init file, @file{default.el}, and/or @file{site-start.el}).
312 (The only way to change it with real effect is before dumping Emacs.)
313 @end defvar
315 @defvar after-init-hook
316 This normal hook is run, once, just after loading all the init files
317 (the user's init file, @file{default.el}, and/or @file{site-start.el}),
318 before loading the terminal-specific library and processing the
319 command-line action arguments.
320 @end defvar
322 @defvar emacs-startup-hook
323 This normal hook is run, once, just after handling the command line
324 arguments, just before @code{term-setup-hook}.
325 @end defvar
327 @defvar user-init-file
328 This variable holds the absolute file name of the user's init file.  If the
329 actual init file loaded is a compiled file, such as @file{.emacs.elc},
330 the value refers to the corresponding source file.
331 @end defvar
333 @defvar user-emacs-directory
334 This variable holds the name of the @file{.emacs.d} directory.  It is
335 ordinarily @file{~/.emacs.d}, but differs on some platforms.
336 @end defvar
338 @node Terminal-Specific
339 @subsection Terminal-Specific Initialization
340 @cindex terminal-specific initialization
342   Each terminal type can have its own Lisp library that Emacs loads when
343 run on that type of terminal.  The library's name is constructed by
344 concatenating the value of the variable @code{term-file-prefix} and the
345 terminal type (specified by the environment variable @code{TERM}).
346 Normally, @code{term-file-prefix} has the value
347 @code{"term/"}; changing this is not recommended.  Emacs finds the file
348 in the normal manner, by searching the @code{load-path} directories, and
349 trying the @samp{.elc} and @samp{.el} suffixes.
351 @cindex Termcap
352   The usual role of a terminal-specific library is to enable special
353 keys to send sequences that Emacs can recognize.  It may also need to
354 set or add to @code{input-decode-map} if the Termcap or Terminfo entry
355 does not specify all the terminal's function keys.  @xref{Terminal
356 Input}.
358   When the name of the terminal type contains a hyphen, and no library
359 is found whose name is identical to the terminal's name, Emacs strips
360 from the terminal's name the last hyphen and everything that follows
361 it, and tries again.  This process is repeated until Emacs finds a
362 matching library, or until there are no more hyphens in the name
363 (i.g.@: there is no terminal-specific library).  For example, if the
364 terminal name is @samp{xterm-256color} and there is no
365 @file{term/xterm-256color.el} library, Emacs tries to load
366 @file{term/xterm.el}.  If necessary, the terminal library can evaluate
367 @code{(getenv "TERM")} to find the full name of the terminal type.
369   Your init file can prevent the loading of the
370 terminal-specific library by setting the variable
371 @code{term-file-prefix} to @code{nil}.  This feature is useful when
372 experimenting with your own peculiar customizations.
374   You can also arrange to override some of the actions of the
375 terminal-specific library by setting the variable
376 @code{term-setup-hook}.  This is a normal hook which Emacs runs using
377 @code{run-hooks} at the end of Emacs initialization, after loading both
378 your init file and any terminal-specific libraries.  You can
379 use this variable to define initializations for terminals that do not
380 have their own libraries.  @xref{Hooks}.
382 @defvar term-file-prefix
383 @cindex @code{TERM} environment variable
384 If the value of this variable is non-@code{nil}, Emacs loads a
385 terminal-specific initialization file as follows:
387 @example
388 (load (concat term-file-prefix (getenv "TERM")))
389 @end example
391 @noindent
392 You may set the @code{term-file-prefix} variable to @code{nil} in your
393 init file if you do not wish to load the
394 terminal-initialization file.  To do this, put the following in
395 your init file: @code{(setq term-file-prefix nil)}.
397 On MS-DOS, if the environment variable @code{TERM} is not set, Emacs
398 uses @samp{internal} as the terminal type.
399 @end defvar
401 @defvar term-setup-hook
402 This variable is a normal hook that Emacs runs after loading your
403 init file, the default initialization file (if any) and the
404 terminal-specific Lisp file.
406 You can use @code{term-setup-hook} to override the definitions made by a
407 terminal-specific file.
408 @end defvar
410   See @code{window-setup-hook} in @ref{Window Systems}, for a related
411 feature.
413 @node Command-Line Arguments
414 @subsection Command-Line Arguments
415 @cindex command-line arguments
417   You can use command-line arguments to request various actions when
418 you start Emacs.  Command-line arguments should not be commonly used,
419 since the recommended way of using Emacs is to start it just once,
420 after logging in, and do all editing in the same Emacs session
421 (@pxref{Entering Emacs,,, emacs, The GNU Emacs Manual}); nonetheless,
422 they can be useful when invoking Emacs from session scripts or
423 debugging Emacs itself.  This section describes how Emacs processes
424 command-line arguments.
426 @defun command-line
427 This function parses the command line that Emacs was called with,
428 processes it, loads the user's init file and displays the
429 startup messages.
430 @end defun
432 @defvar command-line-processed
433 The value of this variable is @code{t} once the command line has been
434 processed.
436 If you redump Emacs by calling @code{dump-emacs}, you may wish to set
437 this variable to @code{nil} first in order to cause the new dumped Emacs
438 to process its new command-line arguments.
439 @end defvar
441 @defvar command-switch-alist
442 @cindex switches on command line
443 @cindex options on command line
444 @cindex command-line options
445 The value of this variable is an alist of user-defined command-line
446 options and associated handler functions.  This variable exists so you
447 can add elements to it.
449 A @dfn{command-line option} is an argument on the command line, which
450 has the form:
452 @example
453 -@var{option}
454 @end example
456 The elements of the @code{command-switch-alist} look like this:
458 @example
459 (@var{option} . @var{handler-function})
460 @end example
462 The @sc{car}, @var{option}, is a string, the name of a command-line
463 option (not including the initial hyphen).  The @var{handler-function}
464 is called to handle @var{option}, and receives the option name as its
465 sole argument.
467 In some cases, the option is followed in the command line by an
468 argument.  In these cases, the @var{handler-function} can find all the
469 remaining command-line arguments in the variable
470 @code{command-line-args-left}.  (The entire list of command-line
471 arguments is in @code{command-line-args}.)
473 The command-line arguments are parsed by the @code{command-line-1}
474 function in the @file{startup.el} file.  See also @ref{Emacs
475 Invocation, , Command Line Arguments for Emacs Invocation, emacs, The
476 GNU Emacs Manual}.
477 @end defvar
479 @defvar command-line-args
480 The value of this variable is the list of command-line arguments passed
481 to Emacs.
482 @end defvar
484 @defvar command-line-args-left
485 @vindex argv
486 The value of this variable is the list of command-line arguments that
487 have not yet been processed.  @code{argv} is an alias for this.
488 @end defvar
490 @defvar command-line-functions
491 This variable's value is a list of functions for handling an
492 unrecognized command-line argument.  Each time the next argument to be
493 processed has no special meaning, the functions in this list are called,
494 in order of appearance, until one of them returns a non-@code{nil}
495 value.
497 These functions are called with no arguments.  They can access the
498 command-line argument under consideration through the variable
499 @code{argi}, which is bound temporarily at this point.  The remaining
500 arguments (not including the current one) are in the variable
501 @code{command-line-args-left}.
503 When a function recognizes and processes the argument in @code{argi}, it
504 should return a non-@code{nil} value to say it has dealt with that
505 argument.  If it has also dealt with some of the following arguments, it
506 can indicate that by deleting them from @code{command-line-args-left}.
508 If all of these functions return @code{nil}, then the argument is used
509 as a file name to visit.
510 @end defvar
512 @node Getting Out
513 @section Getting Out of Emacs
514 @cindex exiting Emacs
516   There are two ways to get out of Emacs: you can kill the Emacs job,
517 which exits permanently, or you can suspend it, which permits you to
518 reenter the Emacs process later.
520 @menu
521 * Killing Emacs::        Exiting Emacs irreversibly.
522 * Suspending Emacs::     Exiting Emacs reversibly.
523 @end menu
525 @node Killing Emacs
526 @comment  node-name,  next,  previous,  up
527 @subsection Killing Emacs
528 @cindex killing Emacs
530   Killing Emacs means ending the execution of the Emacs process.  The
531 parent process normally resumes control.  The low-level primitive for
532 killing Emacs is @code{kill-emacs}.
534 @deffn Command kill-emacs &optional exit-data
535 This command calls the hook @code{kill-emacs-hook}, then exits the
536 Emacs process and kills it.
538 If @var{exit-data} is an integer, that is used as the exit status of
539 the Emacs process.  (This is useful primarily in batch operation; see
540 @ref{Batch Mode}.)
542 If @var{exit-data} is a string, its contents are stuffed into the
543 terminal input buffer so that the shell (or whatever program next reads
544 input) can read them.
545 @end deffn
547 @cindex SIGTERM
548 @cindex SIGHUP
549 @cindex SIGINT
550 @cindex operating system signal
551   The @code{kill-emacs} function is normally called via the
552 higher-level command @kbd{C-x C-c}
553 (@code{save-buffers-kill-terminal}).  @xref{Exiting,,, emacs, The GNU
554 Emacs Manual}.  It is also called automatically if Emacs receives a
555 @code{SIGTERM} or @code{SIGHUP} operating system signal (e.g. when the
556 controlling terminal is disconnected), or if it receives a
557 @code{SIGINT} signal while running in batch mode (@pxref{Batch Mode}).
559 @defvar kill-emacs-hook
560 This normal hook is run by @code{kill-emacs}, before it kills Emacs.
562 Because @code{kill-emacs} can be called in situations where user
563 interaction is impossible (e.g. when the terminal is disconnected),
564 functions on this hook should not attempt to interact with the user.
565 If you want to interact with the user when Emacs is shutting down, use
566 @code{kill-emacs-query-functions}, described below.
567 @end defvar
569   When Emacs is killed, all the information in the Emacs process,
570 aside from files that have been saved, is lost.  Because killing Emacs
571 inadvertently can lose a lot of work, the
572 @code{save-buffers-kill-terminal} command queries for confirmation if
573 you have buffers that need saving or subprocesses that are running.
574 It also runs the abnormal hook @code{kill-emacs-query-functions}:
576 @defvar kill-emacs-query-functions
577 When @code{save-buffers-kill-terminal} is killing Emacs, it calls the
578 functions in this hook, after asking the standard questions and before
579 calling @code{kill-emacs}.  The functions are called in order of
580 appearance, with no arguments.  Each function can ask for additional
581 confirmation from the user.  If any of them returns @code{nil},
582 @code{save-buffers-kill-emacs} does not kill Emacs, and does not run
583 the remaining functions in this hook.  Calling @code{kill-emacs}
584 directly does not run this hook.
585 @end defvar
587 @node Suspending Emacs
588 @subsection Suspending Emacs
589 @cindex suspending Emacs
591   On text terminals, it is possible to @dfn{suspend Emacs}, which
592 means stopping Emacs temporarily and returning control to its superior
593 process, which is usually the shell.  This allows you to resume
594 editing later in the same Emacs process, with the same buffers, the
595 same kill ring, the same undo history, and so on.  To resume Emacs,
596 use the appropriate command in the parent shell---most likely
597 @code{fg}.
599 @cindex controlling terminal
600   Suspending works only on a terminal device from which the Emacs
601 session was started.  We call that device the @dfn{controlling
602 terminal} of the session.  Suspending is not allowed if the
603 controlling terminal is a graphical terminal.
605   Some operating systems do not support suspension of jobs; on these
606 systems, ``suspension'' actually creates a new shell temporarily as a
607 subprocess of Emacs.  Then you would exit the shell to return to Emacs.
609 @deffn Command suspend-emacs &optional string
610 This function stops Emacs and returns control to the superior process.
611 If and when the superior process resumes Emacs, @code{suspend-emacs}
612 returns @code{nil} to its caller in Lisp.
614 This function works only on the controlling terminal of the Emacs
615 session; to relinquish control of other tty devices, use
616 @code{suspend-tty} (see below).  If the Emacs session uses more than
617 one terminal, you must delete the frames on all the other terminals
618 before suspending Emacs, or this function signals an error.
619 @xref{Multiple Terminals}.
621 If @var{string} is non-@code{nil}, its characters are sent to Emacs's
622 superior shell, to be read as terminal input.  The characters in
623 @var{string} are not echoed by the superior shell; only the results
624 appear.
626 Before suspending, @code{suspend-emacs} runs the normal hook
627 @code{suspend-hook}.  After the user resumes Emacs,
628 @code{suspend-emacs} runs the normal hook @code{suspend-resume-hook}.
629 @xref{Hooks}.
631 The next redisplay after resumption will redraw the entire screen,
632 unless the variable @code{no-redraw-on-reenter} is non-@code{nil}.
633 @xref{Refresh Screen}.
635 In the following example, note that @samp{pwd} is not echoed after
636 Emacs is suspended.  But it is read and executed by the shell.
638 @smallexample
639 @group
640 (suspend-emacs)
641      @result{} nil
642 @end group
644 @group
645 (add-hook 'suspend-hook
646           (function (lambda ()
647                       (or (y-or-n-p
648                             "Really suspend? ")
649                           (error "Suspend canceled")))))
650      @result{} (lambda nil
651           (or (y-or-n-p "Really suspend? ")
652               (error "Suspend canceled")))
653 @end group
654 @group
655 (add-hook 'suspend-resume-hook
656           (function (lambda () (message "Resumed!"))))
657      @result{} (lambda nil (message "Resumed!"))
658 @end group
659 @group
660 (suspend-emacs "pwd")
661      @result{} nil
662 @end group
663 @group
664 ---------- Buffer: Minibuffer ----------
665 Really suspend? @kbd{y}
666 ---------- Buffer: Minibuffer ----------
667 @end group
669 @group
670 ---------- Parent Shell ----------
671 lewis@@slug[23] % /user/lewis/manual
672 lewis@@slug[24] % fg
673 @end group
675 @group
676 ---------- Echo Area ----------
677 Resumed!
678 @end group
679 @end smallexample
680 @end deffn
682 @defvar suspend-hook
683 This variable is a normal hook that Emacs runs before suspending.
684 @end defvar
686 @defvar suspend-resume-hook
687 This variable is a normal hook that Emacs runs on resuming
688 after a suspension.
689 @end defvar
691 @defun suspend-tty &optional tty
692 If @var{tty} specifies a terminal device used by Emacs, this function
693 relinquishes the device and restores it to its prior state.  Frames
694 that used the device continue to exist, but are not updated and Emacs
695 doesn't read input from them.  @var{tty} can be a terminal object, a
696 frame (meaning the terminal for that frame), or @code{nil} (meaning
697 the terminal for the selected frame).  @xref{Multiple Terminals}.
699 If @var{tty} is already suspended, this function does nothing.
701 @vindex suspend-tty-functions
702 This function runs the hook @code{suspend-tty-functions}, passing the
703 terminal object as an argument to each function.
704 @end defun
706 @defun resume-tty &optional tty
707 This function resumes the previously suspended terminal device
708 @var{tty}; @var{tty} can be a terminal object, a frame (meaning the
709 terminal for that frame), or @code{nil} (meaning the terminal for the
710 selected frame).
712 @vindex resume-tty-functions
713 This function reopens the terminal device, re-initializes it, and
714 redraws its with that terminal's selected frame.  It then runs the
715 hook @code{resume-tty-functions}, passing the terminal object as an
716 argument to each function.
718 If the same device is already used by another Emacs terminal, this
719 function signals an error.
720 @end defun
722 @defun controlling-tty-p &optional terminal
723 This function returns non-@code{nil} if @var{terminal} is the
724 controlling terminal of the Emacs session; @code{terminal} can be a
725 terminal object, a frame (meaning the terminal for that frame), or
726 @code{nil} (meaning the terminal for the selected frame).
727 @end defun
729 @deffn Command suspend-frame
730 This command @dfn{suspends} a frame.  For GUI frames, it calls
731 @code{iconify-frame} (@pxref{Visibility of Frames}); for frames on
732 text terminals, it calls either @code{suspend-emacs} or
733 @code{suspend-tty}, depending on whether the frame is displayed on the
734 controlling terminal device or not.
735 @end deffn
737 @node System Environment
738 @section Operating System Environment
739 @cindex operating system environment
741   Emacs provides access to variables in the operating system environment
742 through various functions.  These variables include the name of the
743 system, the user's @acronym{UID}, and so on.
745 @defvar system-configuration
746 This variable holds the standard GNU configuration name for the
747 hardware/software configuration of your system, as a string.  The
748 convenient way to test parts of this string is with
749 @code{string-match}.
750 @end defvar
752 @cindex system type and name
753 @defvar system-type
754 The value of this variable is a symbol indicating the type of operating
755 system Emacs is operating on.  Here is a table of the possible values:
757 @table @code
758 @item aix
759 IBM's AIX.
761 @item berkeley-unix
762 Berkeley BSD and its variants.
764 @item cygwin
765 Cygwin, a Posix layer on top of MS-Windows.
767 @item darwin
768 Darwin (Mac OS X).
770 @item gnu
771 The GNU system (using the GNU kernel, which consists of the HURD and Mach).
773 @item gnu/linux
774 A GNU/Linux system---that is, a variant GNU system, using the Linux
775 kernel.  (These systems are the ones people often call ``Linux,'' but
776 actually Linux is just the kernel, not the whole system.)
778 @item gnu/kfreebsd
779 A GNU (glibc-based) system with a FreeBSD kernel.
781 @item hpux
782 Hewlett-Packard HPUX operating system.
784 @item irix
785 Silicon Graphics Irix system.
787 @item ms-dos
788 Microsoft MS-DOS ``operating system.''  Emacs compiled with DJGPP for
789 MS-DOS binds @code{system-type} to @code{ms-dos} even when you run it on
790 MS-Windows.
792 @item usg-unix-v
793 AT&T Unix System V.
795 @item windows-nt
796 Microsoft Windows NT and later.  The same executable supports Windows
797 9X, but the value of @code{system-type} is @code{windows-nt} in either
798 case.
800 @end table
802 We do not wish to add new symbols to make finer distinctions unless it
803 is absolutely necessary!  In fact, we hope to eliminate some of these
804 alternatives in the future.  We recommend using
805 @code{system-configuration} to distinguish between different operating
806 systems.
807 @end defvar
809 @defun system-name
810 This function returns the name of the machine you are running on.
811 @example
812 (system-name)
813      @result{} "www.gnu.org"
814 @end example
815 @end defun
817   The symbol @code{system-name} is a variable as well as a function.  In
818 fact, the function returns whatever value the variable
819 @code{system-name} currently holds.  Thus, you can set the variable
820 @code{system-name} in case Emacs is confused about the name of your
821 system.  The variable is also useful for constructing frame titles
822 (@pxref{Frame Titles}).
824 @defopt mail-host-address
825 If this variable is non-@code{nil}, it is used instead of
826 @code{system-name} for purposes of generating email addresses.  For
827 example, it is used when constructing the default value of
828 @code{user-mail-address}.  @xref{User Identification}.  (Since this is
829 done when Emacs starts up, the value actually used is the one saved when
830 Emacs was dumped.  @xref{Building Emacs}.)
831 @end defopt
833 @deffn Command getenv var &optional frame
834 @cindex environment variable access
835 This function returns the value of the environment variable @var{var},
836 as a string.  @var{var} should be a string.  If @var{var} is undefined
837 in the environment, @code{getenv} returns @code{nil}.  If returns
838 @samp{""} if @var{var} is set but null.  Within Emacs, the environment
839 variable values are kept in the Lisp variable @code{process-environment}.
841 @example
842 @group
843 (getenv "USER")
844      @result{} "lewis"
845 @end group
847 @group
848 lewis@@slug[10] % printenv
849 PATH=.:/user/lewis/bin:/usr/bin:/usr/local/bin
850 USER=lewis
851 @end group
852 @group
853 TERM=ibmapa16
854 SHELL=/bin/csh
855 HOME=/user/lewis
856 @end group
857 @end example
858 @end deffn
860 @c Emacs 19 feature
861 @deffn Command setenv variable &optional value
862 This command sets the value of the environment variable named
863 @var{variable} to @var{value}.  @var{variable} should be a string.
864 Internally, Emacs Lisp can handle any string.  However, normally
865 @var{variable} should be a valid shell identifier, that is, a sequence
866 of letters, digits and underscores, starting with a letter or
867 underscore.  Otherwise, errors may occur if subprocesses of Emacs try
868 to access the value of @var{variable}.  If @var{value} is omitted or
869 @code{nil}, @code{setenv} removes @var{variable} from the environment.
870 Otherwise, @var{value} should be a string.
872 @code{setenv} works by modifying @code{process-environment}; binding
873 that variable with @code{let} is also reasonable practice.
875 @code{setenv} returns the new value of @var{variable}, or @code{nil}
876 if it removed @var{variable} from the environment.
877 @end deffn
879 @defvar process-environment
880 This variable is a list of strings, each describing one environment
881 variable.  The functions @code{getenv} and @code{setenv} work by means
882 of this variable.
884 @smallexample
885 @group
886 process-environment
887 @result{} ("l=/usr/stanford/lib/gnuemacs/lisp"
888     "PATH=.:/user/lewis/bin:/usr/class:/nfsusr/local/bin"
889     "USER=lewis"
890 @end group
891 @group
892     "TERM=ibmapa16"
893     "SHELL=/bin/csh"
894     "HOME=/user/lewis")
895 @end group
896 @end smallexample
898 If @code{process-environment} contains ``duplicate'' elements that
899 specify the same environment variable, the first of these elements
900 specifies the variable, and the other ``duplicates'' are ignored.
901 @end defvar
903 @defvar initial-environment
904 This variable holds the list of environment variables Emacs inherited
905 from its parent process.  It is computed during startup, see
906 @ref{Startup Summary}.
907 @end defvar
909 @defvar path-separator
910 This variable holds a string which says which character separates
911 directories in a search path (as found in an environment variable).  Its
912 value is @code{":"} for Unix and GNU systems, and @code{";"} for MS-DOS
913 and MS-Windows.
914 @end defvar
916 @defun parse-colon-path path
917 This function takes a search path string such as would be the value of
918 the @code{PATH} environment variable, and splits it at the separators,
919 returning a list of directory names.  @code{nil} in this list stands for
920 ``use the current directory.''  Although the function's name says
921 ``colon,'' it actually uses the value of @code{path-separator}.
923 @example
924 (parse-colon-path ":/foo:/bar")
925      @result{} (nil "/foo/" "/bar/")
926 @end example
927 @end defun
929 @defvar invocation-name
930 This variable holds the program name under which Emacs was invoked.  The
931 value is a string, and does not include a directory name.
932 @end defvar
934 @defvar invocation-directory
935 This variable holds the directory from which the Emacs executable was
936 invoked, or perhaps @code{nil} if that directory cannot be determined.
937 @end defvar
939 @defvar installation-directory
940 If non-@code{nil}, this is a directory within which to look for the
941 @file{lib-src} and @file{etc} subdirectories.  This is non-@code{nil}
942 when Emacs can't find those directories in their standard installed
943 locations, but can find them in a directory related somehow to the one
944 containing the Emacs executable.
945 @end defvar
947 @defun load-average &optional use-float
948 This function returns the current 1-minute, 5-minute, and 15-minute load
949 averages, in a list.
951 By default, the values are integers that are 100 times the system load
952 averages, which indicate the average number of processes trying to run.
953 If @var{use-float} is non-@code{nil}, then they are returned
954 as floating point numbers and without multiplying by 100.
956 If it is impossible to obtain the load average, this function signals
957 an error.  On some platforms, access to load averages requires
958 installing Emacs as setuid or setgid so that it can read kernel
959 information, and that usually isn't advisable.
961 If the 1-minute load average is available, but the 5- or 15-minute
962 averages are not, this function returns a shortened list containing
963 the available averages.
965 @example
966 @group
967 (load-average)
968      @result{} (169 48 36)
969 @end group
970 @group
971 (load-average t)
972      @result{} (1.69 0.48 0.36)
973 @end group
975 @group
976 lewis@@rocky[5] % uptime
977  11:55am  up 1 day, 19:37,  3 users,
978  load average: 1.69, 0.48, 0.36
979 @end group
980 @end example
981 @end defun
983 @defun emacs-pid
984 This function returns the process @acronym{ID} of the Emacs process,
985 as an integer.
986 @end defun
988 @defvar tty-erase-char
989 This variable holds the erase character that was selected
990 in the system's terminal driver, before Emacs was started.
991 The value is @code{nil} if Emacs is running under a window system.
992 @end defvar
994 @node User Identification
995 @section User Identification
996 @cindex user identification
998 @defvar init-file-user
999 This variable says which user's init files should be used by
1000 Emacs---or @code{nil} if none.  @code{""} stands for the user who
1001 originally logged in.  The value reflects command-line options such as
1002 @samp{-q} or @samp{-u @var{user}}.
1004 Lisp packages that load files of customizations, or any other sort of
1005 user profile, should obey this variable in deciding where to find it.
1006 They should load the profile of the user name found in this variable.
1007 If @code{init-file-user} is @code{nil}, meaning that the @samp{-q}
1008 option was used, then Lisp packages should not load any customization
1009 files or user profile.
1010 @end defvar
1012 @defopt user-mail-address
1013 This holds the nominal email address of the user who is using Emacs.
1014 Emacs normally sets this variable to a default value after reading your
1015 init files, but not if you have already set it.  So you can set the
1016 variable to some other value in your init file if you do not
1017 want to use the default value.
1018 @end defopt
1020 @defun user-login-name &optional uid
1021 If you don't specify @var{uid}, this function returns the name under
1022 which the user is logged in.  If the environment variable @code{LOGNAME}
1023 is set, that value is used.  Otherwise, if the environment variable
1024 @code{USER} is set, that value is used.  Otherwise, the value is based
1025 on the effective @acronym{UID}, not the real @acronym{UID}.
1027 If you specify @var{uid}, the value is the user name that corresponds
1028 to @var{uid} (which should be an integer), or @code{nil} if there is
1029 no such user.
1031 @example
1032 @group
1033 (user-login-name)
1034      @result{} "lewis"
1035 @end group
1036 @end example
1037 @end defun
1039 @defun user-real-login-name
1040 This function returns the user name corresponding to Emacs's real
1041 @acronym{UID}.  This ignores the effective @acronym{UID} and ignores the
1042 environment variables @code{LOGNAME} and @code{USER}.
1043 @end defun
1045 @defun user-full-name &optional uid
1046 This function returns the full name of the logged-in user---or the value
1047 of the environment variable @code{NAME}, if that is set.
1049 @c "Bil" is the correct spelling.
1050 @example
1051 @group
1052 (user-full-name)
1053      @result{} "Bil Lewis"
1054 @end group
1055 @end example
1057 If the Emacs job's user-id does not correspond to any known user (and
1058 provided @code{NAME} is not set), the value is @code{"unknown"}.
1060 If @var{uid} is non-@code{nil}, then it should be a number (a user-id)
1061 or a string (a login name).  Then @code{user-full-name} returns the full
1062 name corresponding to that user-id or login name.  If you specify a
1063 user-id or login name that isn't defined, it returns @code{nil}.
1064 @end defun
1066 @vindex user-full-name
1067 @vindex user-real-login-name
1068 @vindex user-login-name
1069   The symbols @code{user-login-name}, @code{user-real-login-name} and
1070 @code{user-full-name} are variables as well as functions.  The functions
1071 return the same values that the variables hold.  These variables allow
1072 you to ``fake out'' Emacs by telling the functions what to return.  The
1073 variables are also useful for constructing frame titles (@pxref{Frame
1074 Titles}).
1076 @defun user-real-uid
1077 This function returns the real @acronym{UID} of the user.
1078 The value may be a floating point number.
1080 @example
1081 @group
1082 (user-real-uid)
1083      @result{} 19
1084 @end group
1085 @end example
1086 @end defun
1088 @defun user-uid
1089 This function returns the effective @acronym{UID} of the user.
1090 The value may be a floating point number.
1091 @end defun
1093 @node Time of Day
1094 @section Time of Day
1096   This section explains how to determine the current time and time
1097 zone.
1099 @cindex epoch
1100   Most of these functions represent time as a list of either three
1101 integers, @code{(@var{sec-high} @var{sec-low} @var{microsec})}, or of
1102 two integers, @code{(@var{sec-high} @var{sec-low})}.  The integers
1103 @var{sec-high} and @var{sec-low} give the high and low bits of an
1104 integer number of seconds.  This integer number,
1105 @ifnottex
1106 @var{high} * 2**16 + @var{low},
1107 @end ifnottex
1108 @tex
1109 $high*2^{16}+low$,
1110 @end tex
1111 is the number of seconds from the @dfn{epoch} (0:00 January 1, 1970
1112 UTC) to the specified time.  The third list element @var{microsec}, if
1113 present, gives the number of microseconds from the start of that
1114 second to the specified time.
1116   The return value of @code{current-time} represents time using three
1117 integers, while the timestamps in the return value of
1118 @code{file-attributes} use two integers (@pxref{Definition of
1119 file-attributes}).  In function arguments, e.g.@: the @var{time-value}
1120 argument to @code{current-time-string}, both two- and three-integer
1121 lists are accepted.  You can convert times from the list
1122 representation into standard human-readable strings using
1123 @code{current-time}, or to other forms using the @code{decode-time}
1124 and @code{format-time-string} functions documented in the following
1125 sections.
1127 @defun current-time-string &optional time-value
1128 This function returns the current time and date as a human-readable
1129 string.  The format of the string is unvarying; the number of
1130 characters used for each part is always the same, so you can reliably
1131 use @code{substring} to extract pieces of it.  You should count
1132 characters from the beginning of the string rather than from the end,
1133 as additional information may some day be added at the end.
1135 The argument @var{time-value}, if given, specifies a time to format
1136 (represented as a list of integers), instead of the current time.
1138 @example
1139 @group
1140 (current-time-string)
1141      @result{} "Wed Oct 14 22:21:05 1987"
1142 @end group
1143 @end example
1144 @end defun
1146 @defun current-time
1147 This function returns the current time, represented as a list of three
1148 integers @code{(@var{sec-high} @var{sec-low} @var{microsec})}.  On
1149 systems with only one-second time resolutions, @var{microsec} is 0.
1150 @end defun
1152 @defun float-time &optional time-value
1153 This function returns the current time as a floating-point number of
1154 seconds since the epoch.  The optional argument @var{time-value}, if
1155 given, specifies a time (represented as a list of integers) to convert
1156 instead of the current time.
1158 @emph{Warning}: Since the result is floating point, it may not be
1159 exact.  Do not use this function if precise time stamps are required.
1160 @end defun
1162 @defun current-time-zone &optional time-value
1163 This function returns a list describing the time zone that the user is
1166 The value has the form @code{(@var{offset} @var{name})}.  Here
1167 @var{offset} is an integer giving the number of seconds ahead of UTC
1168 (east of Greenwich).  A negative value means west of Greenwich.  The
1169 second element, @var{name}, is a string giving the name of the time
1170 zone.  Both elements change when daylight saving time begins or ends;
1171 if the user has specified a time zone that does not use a seasonal time
1172 adjustment, then the value is constant through time.
1174 If the operating system doesn't supply all the information necessary to
1175 compute the value, the unknown elements of the list are @code{nil}.
1177 The argument @var{time-value}, if given, specifies a time (represented
1178 as a list of integers) to analyze instead of the current time.
1179 @end defun
1181 The current time zone is determined by the @samp{TZ} environment
1182 variable.  @xref{System Environment}.  For example, you can tell Emacs
1183 to use universal time with @code{(setenv "TZ" "UTC0")}.  If @samp{TZ}
1184 is not in the environment, Emacs uses a platform-dependent default
1185 time zone.
1187 @node Time Conversion
1188 @section Time Conversion
1190   These functions convert time values (lists of two or three integers,
1191 as explained in the previous section) into calendrical information and
1192 vice versa.
1194   Many 32-bit operating systems are limited to time values containing
1195 32 bits of information; these systems typically handle only the times
1196 from 1901-12-13 20:45:52 UTC through 2038-01-19 03:14:07 UTC.
1197 However, 64-bit and some 32-bit operating systems have larger time
1198 values, and can represent times far in the past or future.
1200   Time conversion functions always use the Gregorian calendar, even
1201 for dates before the Gregorian calendar was introduced.  Year numbers
1202 count the number of years since the year 1 B.C., and do not skip zero
1203 as traditional Gregorian years do; for example, the year number
1204 @minus{}37 represents the Gregorian year 38 B.C@.
1206 @defun decode-time &optional time
1207 This function converts a time value into calendrical information.  If
1208 you don't specify @var{time}, it decodes the current time.  The return
1209 value is a list of nine elements, as follows:
1211 @example
1212 (@var{seconds} @var{minutes} @var{hour} @var{day} @var{month} @var{year} @var{dow} @var{dst} @var{zone})
1213 @end example
1215 Here is what the elements mean:
1217 @table @var
1218 @item seconds
1219 The number of seconds past the minute, as an integer between 0 and 59.
1220 On some operating systems, this is 60 for leap seconds.
1221 @item minutes
1222 The number of minutes past the hour, as an integer between 0 and 59.
1223 @item hour
1224 The hour of the day, as an integer between 0 and 23.
1225 @item day
1226 The day of the month, as an integer between 1 and 31.
1227 @item month
1228 The month of the year, as an integer between 1 and 12.
1229 @item year
1230 The year, an integer typically greater than 1900.
1231 @item dow
1232 The day of week, as an integer between 0 and 6, where 0 stands for
1233 Sunday.
1234 @item dst
1235 @code{t} if daylight saving time is effect, otherwise @code{nil}.
1236 @item zone
1237 An integer indicating the time zone, as the number of seconds east of
1238 Greenwich.
1239 @end table
1241 @strong{Common Lisp Note:} Common Lisp has different meanings for
1242 @var{dow} and @var{zone}.
1243 @end defun
1245 @defun encode-time seconds minutes hour day month year &optional zone
1246 This function is the inverse of @code{decode-time}.  It converts seven
1247 items of calendrical data into a time value.  For the meanings of the
1248 arguments, see the table above under @code{decode-time}.
1250 Year numbers less than 100 are not treated specially.  If you want them
1251 to stand for years above 1900, or years above 2000, you must alter them
1252 yourself before you call @code{encode-time}.
1254 The optional argument @var{zone} defaults to the current time zone and
1255 its daylight saving time rules.  If specified, it can be either a list
1256 (as you would get from @code{current-time-zone}), a string as in the
1257 @code{TZ} environment variable, @code{t} for Universal Time, or an
1258 integer (as you would get from @code{decode-time}).  The specified
1259 zone is used without any further alteration for daylight saving time.
1261 If you pass more than seven arguments to @code{encode-time}, the first
1262 six are used as @var{seconds} through @var{year}, the last argument is
1263 used as @var{zone}, and the arguments in between are ignored.  This
1264 feature makes it possible to use the elements of a list returned by
1265 @code{decode-time} as the arguments to @code{encode-time}, like this:
1267 @example
1268 (apply 'encode-time (decode-time @dots{}))
1269 @end example
1271 You can perform simple date arithmetic by using out-of-range values for
1272 the @var{seconds}, @var{minutes}, @var{hour}, @var{day}, and @var{month}
1273 arguments; for example, day 0 means the day preceding the given month.
1275 The operating system puts limits on the range of possible time values;
1276 if you try to encode a time that is out of range, an error results.
1277 For instance, years before 1970 do not work on some systems;
1278 on others, years as early as 1901 do work.
1279 @end defun
1281 @node Time Parsing
1282 @section Parsing and Formatting Times
1284   These functions convert time values (lists of two or three integers)
1285 to text in a string, and vice versa.
1287 @defun date-to-time string
1288 This function parses the time-string @var{string} and returns the
1289 corresponding time value.
1290 @end defun
1292 @defun format-time-string format-string &optional time universal
1293 This function converts @var{time} (or the current time, if @var{time} is
1294 omitted) to a string according to @var{format-string}.  The argument
1295 @var{format-string} may contain @samp{%}-sequences which say to
1296 substitute parts of the time.  Here is a table of what the
1297 @samp{%}-sequences mean:
1299 @table @samp
1300 @item %a
1301 This stands for the abbreviated name of the day of week.
1302 @item %A
1303 This stands for the full name of the day of week.
1304 @item %b
1305 This stands for the abbreviated name of the month.
1306 @item %B
1307 This stands for the full name of the month.
1308 @item %c
1309 This is a synonym for @samp{%x %X}.
1310 @item %C
1311 This has a locale-specific meaning.  In the default locale (named C), it
1312 is equivalent to @samp{%A, %B %e, %Y}.
1313 @item %d
1314 This stands for the day of month, zero-padded.
1315 @item %D
1316 This is a synonym for @samp{%m/%d/%y}.
1317 @item %e
1318 This stands for the day of month, blank-padded.
1319 @item %h
1320 This is a synonym for @samp{%b}.
1321 @item %H
1322 This stands for the hour (00-23).
1323 @item %I
1324 This stands for the hour (01-12).
1325 @item %j
1326 This stands for the day of the year (001-366).
1327 @item %k
1328 This stands for the hour (0-23), blank padded.
1329 @item %l
1330 This stands for the hour (1-12), blank padded.
1331 @item %m
1332 This stands for the month (01-12).
1333 @item %M
1334 This stands for the minute (00-59).
1335 @item %n
1336 This stands for a newline.
1337 @item %N
1338 This stands for the nanoseconds (000000000-999999999).  To ask for
1339 fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for
1340 microseconds, etc.  Any excess digits are discarded, without rounding.
1341 Currently Emacs time stamps are at best microsecond resolution so the
1342 last three digits generated by plain @samp{%N} are always zero.
1343 @item %p
1344 This stands for @samp{AM} or @samp{PM}, as appropriate.
1345 @item %r
1346 This is a synonym for @samp{%I:%M:%S %p}.
1347 @item %R
1348 This is a synonym for @samp{%H:%M}.
1349 @item %S
1350 This stands for the seconds (00-59).
1351 @item %t
1352 This stands for a tab character.
1353 @item %T
1354 This is a synonym for @samp{%H:%M:%S}.
1355 @item %U
1356 This stands for the week of the year (01-52), assuming that weeks
1357 start on Sunday.
1358 @item %w
1359 This stands for the numeric day of week (0-6).  Sunday is day 0.
1360 @item %W
1361 This stands for the week of the year (01-52), assuming that weeks
1362 start on Monday.
1363 @item %x
1364 This has a locale-specific meaning.  In the default locale (named
1365 @samp{C}), it is equivalent to @samp{%D}.
1366 @item %X
1367 This has a locale-specific meaning.  In the default locale (named
1368 @samp{C}), it is equivalent to @samp{%T}.
1369 @item %y
1370 This stands for the year without century (00-99).
1371 @item %Y
1372 This stands for the year with century.
1373 @item %Z
1374 This stands for the time zone abbreviation (e.g., @samp{EST}).
1375 @item %z
1376 This stands for the time zone numerical offset (e.g., @samp{-0500}).
1377 @end table
1379 You can also specify the field width and type of padding for any of
1380 these @samp{%}-sequences.  This works as in @code{printf}: you write
1381 the field width as digits in the middle of a @samp{%}-sequences.  If you
1382 start the field width with @samp{0}, it means to pad with zeros.  If you
1383 start the field width with @samp{_}, it means to pad with spaces.
1385 For example, @samp{%S} specifies the number of seconds since the minute;
1386 @samp{%03S} means to pad this with zeros to 3 positions, @samp{%_3S} to
1387 pad with spaces to 3 positions.  Plain @samp{%3S} pads with zeros,
1388 because that is how @samp{%S} normally pads to two positions.
1390 The characters @samp{E} and @samp{O} act as modifiers when used between
1391 @samp{%} and one of the letters in the table above.  @samp{E} specifies
1392 using the current locale's ``alternative'' version of the date and time.
1393 In a Japanese locale, for example, @code{%Ex} might yield a date format
1394 based on the Japanese Emperors' reigns.  @samp{E} is allowed in
1395 @samp{%Ec}, @samp{%EC}, @samp{%Ex}, @samp{%EX}, @samp{%Ey}, and
1396 @samp{%EY}.
1398 @samp{O} means to use the current locale's ``alternative''
1399 representation of numbers, instead of the ordinary decimal digits.  This
1400 is allowed with most letters, all the ones that output numbers.
1402 If @var{universal} is non-@code{nil}, that means to describe the time as
1403 Universal Time; @code{nil} means describe it using what Emacs believes
1404 is the local time zone (see @code{current-time-zone}).
1406 This function uses the C library function @code{strftime}
1407 (@pxref{Formatting Calendar Time,,, libc, The GNU C Library Reference
1408 Manual}) to do most of the work.  In order to communicate with that
1409 function, it first encodes its argument using the coding system
1410 specified by @code{locale-coding-system} (@pxref{Locales}); after
1411 @code{strftime} returns the resulting string,
1412 @code{format-time-string} decodes the string using that same coding
1413 system.
1414 @end defun
1416 @defun seconds-to-time seconds
1417 This function converts @var{seconds}, a floating point number of
1418 seconds since the epoch, to a time value and returns that.  To perform
1419 the inverse conversion, use @code{float-time}.
1420 @end defun
1422 @defun format-seconds format-string seconds
1423 This function converts its argument @var{seconds} into a string of
1424 years, days, hours, etc., according to @var{format-string}.  The
1425 argument @var{format-string} may contain @samp{%}-sequences which
1426 control the conversion.  Here is a table of what the
1427 @samp{%}-sequences mean:
1429 @table @samp
1430 @item %y
1431 @itemx %Y
1432 The integer number of 365-day years.
1433 @item %d
1434 @itemx %D
1435 The integer number of days.
1436 @item %h
1437 @itemx %H
1438 The integer number of hours.
1439 @item %m
1440 @itemx %M
1441 The integer number of minutes.
1442 @item %s
1443 @itemx %S
1444 The integer number of seconds.
1445 @item %z
1446 Non-printing control flag.  When it is used, other specifiers must be
1447 given in the order of decreasing size, i.e.@: years before days, hours
1448 before minutes, etc.  Nothing will be produced in the result string to
1449 the left of @samp{%z} until the first non-zero conversion is
1450 encountered.  For example, the default format used by
1451 @code{emacs-uptime} (@pxref{Processor Run Time, emacs-uptime})
1452 @w{@code{"%Y, %D, %H, %M, %z%S"}} means that the number of seconds
1453 will always be produced, but years, days, hours, and minutes will only
1454 be shown if they are non-zero.
1455 @item %%
1456 Produces a literal @samp{%}.
1457 @end table
1459 Upper-case format sequences produce the units in addition to the
1460 numbers, lower-case formats produce only the numbers.
1462 You can also specify the field width by following the @samp{%} with a
1463 number; shorter numbers will be padded with blanks.  An optional
1464 period before the width requests zero-padding instead.  For example,
1465 @code{"%.3Y"} might produce @code{"004 years"}.
1467 @emph{Warning:} This function works only with values of @var{seconds}
1468 that don't exceed @code{most-positive-fixnum} (@pxref{Integer Basics,
1469 most-positive-fixnum}).
1470 @end defun
1472 @node Processor Run Time
1473 @section Processor Run time
1474 @cindex processor run time
1475 @cindex Emacs process run time
1477   Emacs provides several functions and primitives that return time,
1478 both elapsed and processor time, used by the Emacs process.
1480 @deffn Command emacs-uptime &optional format
1481 This function returns a string representing the Emacs
1482 @dfn{uptime}---the elapsed wall-clock time this instance of Emacs is
1483 running.  The string is formatted by @code{format-seconds} according
1484 to the optional argument @var{format}.  For the available format
1485 descriptors, see @ref{Time Parsing, format-seconds}.  If @var{format}
1486 is @code{nil} or omitted, it defaults to @code{"%Y, %D, %H, %M,
1487 %z%S"}.
1489 When called interactively, it prints the uptime in the echo area.
1490 @end deffn
1492 @defun get-internal-run-time
1493 This function returns the processor run time used by Emacs as a list
1494 of three integers: @code{(@var{high} @var{low} @var{microsec})}.  The
1495 integers @var{high} and @var{low} combine to give the number of
1496 seconds, which is
1497 @ifnottex
1498 @var{high} * 2**16 + @var{low}.
1499 @end ifnottex
1500 @tex
1501 $high*2^{16}+low$.
1502 @end tex
1504 The third element, @var{microsec}, gives the microseconds (or 0 for
1505 systems that return time with the resolution of only one second).
1507 Note that the time returned by this function excludes the time Emacs
1508 was not using the processor, and if the Emacs process has several
1509 threads, the returned value is the sum of the processor times used up
1510 by all Emacs threads.
1512 If the system doesn't provide a way to determine the processor run
1513 time, @code{get-internal-run-time} returns the same time as
1514 @code{current-time}.
1515 @end defun
1517 @deffn Command emacs-init-time
1518 This function returns the duration of the Emacs initialization
1519 (@pxref{Startup Summary}) in seconds, as a string.  When called
1520 interactively, it prints the duration in the echo area.
1521 @end deffn
1523 @node Time Calculations
1524 @section Time Calculations
1526   These functions perform calendrical computations using time values
1527 (the kind of list that @code{current-time} returns).
1529 @defun time-less-p t1 t2
1530 This returns @code{t} if time value @var{t1} is less than time value
1531 @var{t2}.
1532 @end defun
1534 @defun time-subtract t1 t2
1535 This returns the time difference @var{t1} @minus{} @var{t2} between
1536 two time values, in the same format as a time value.
1537 @end defun
1539 @defun time-add t1 t2
1540 This returns the sum of two time values, one of which ought to
1541 represent a time difference rather than a point in time.
1542 Here is how to add a number of seconds to a time value:
1544 @example
1545 (time-add @var{time} (seconds-to-time @var{seconds}))
1546 @end example
1547 @end defun
1549 @defun time-to-days time
1550 This function returns the number of days between the beginning of year
1551 1 and @var{time}.
1552 @end defun
1554 @defun time-to-day-in-year time
1555 This returns the day number within the year corresponding to @var{time}.
1556 @end defun
1558 @defun date-leap-year-p year
1559 This function returns @code{t} if @var{year} is a leap year.
1560 @end defun
1562 @node Timers
1563 @section Timers for Delayed Execution
1564 @cindex timer
1566   You can set up a @dfn{timer} to call a function at a specified
1567 future time or after a certain length of idleness.
1569   Emacs cannot run timers at any arbitrary point in a Lisp program; it
1570 can run them only when Emacs could accept output from a subprocess:
1571 namely, while waiting or inside certain primitive functions such as
1572 @code{sit-for} or @code{read-event} which @emph{can} wait.  Therefore, a
1573 timer's execution may be delayed if Emacs is busy.  However, the time of
1574 execution is very precise if Emacs is idle.
1576   Emacs binds @code{inhibit-quit} to @code{t} before calling the timer
1577 function, because quitting out of many timer functions can leave
1578 things in an inconsistent state.  This is normally unproblematical
1579 because most timer functions don't do a lot of work.  Indeed, for a
1580 timer to call a function that takes substantial time to run is likely
1581 to be annoying.  If a timer function needs to allow quitting, it
1582 should use @code{with-local-quit} (@pxref{Quitting}).  For example, if
1583 a timer function calls @code{accept-process-output} to receive output
1584 from an external process, that call should be wrapped inside
1585 @code{with-local-quit}, to ensure that @kbd{C-g} works if the external
1586 process hangs.
1588   It is usually a bad idea for timer functions to alter buffer
1589 contents.  When they do, they usually should call @code{undo-boundary}
1590 both before and after changing the buffer, to separate the timer's
1591 changes from user commands' changes and prevent a single undo entry
1592 from growing to be quite large.
1594   Timer functions should also avoid calling functions that cause Emacs
1595 to wait, such as @code{sit-for} (@pxref{Waiting}).  This can lead to
1596 unpredictable effects, since other timers (or even the same timer) can
1597 run while waiting.  If a timer function needs to perform an action
1598 after a certain time has elapsed, it can do this by scheduling a new
1599 timer.
1601   If a timer function calls functions that can change the match data,
1602 it should save and restore the match data.  @xref{Saving Match Data}.
1604 @deffn Command run-at-time time repeat function &rest args
1605 This sets up a timer that calls the function @var{function} with
1606 arguments @var{args} at time @var{time}.  If @var{repeat} is a number
1607 (integer or floating point), the timer is scheduled to run again every
1608 @var{repeat} seconds after @var{time}.  If @var{repeat} is @code{nil},
1609 the timer runs only once.
1611 @var{time} may specify an absolute or a relative time.
1613 Absolute times may be specified using a string with a limited variety
1614 of formats, and are taken to be times @emph{today}, even if already in
1615 the past.  The recognized forms are @samp{@var{xxxx}},
1616 @samp{@var{x}:@var{xx}}, or @samp{@var{xx}:@var{xx}} (military time),
1617 and @samp{@var{xx}am}, @samp{@var{xx}AM}, @samp{@var{xx}pm},
1618 @samp{@var{xx}PM}, @samp{@var{xx}:@var{xx}am},
1619 @samp{@var{xx}:@var{xx}AM}, @samp{@var{xx}:@var{xx}pm}, or
1620 @samp{@var{xx}:@var{xx}PM}.  A period can be used instead of a colon
1621 to separate the hour and minute parts.
1623 To specify a relative time as a string, use numbers followed by units.
1624 For example:
1626 @table @samp
1627 @item 1 min
1628 denotes 1 minute from now.
1629 @item 1 min 5 sec
1630 denotes 65 seconds from now.
1631 @item 1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
1632 denotes exactly 103 months, 123 days, and 10862 seconds from now.
1633 @end table
1635 For relative time values, Emacs considers a month to be exactly thirty
1636 days, and a year to be exactly 365.25 days.
1638 Not all convenient formats are strings.  If @var{time} is a number
1639 (integer or floating point), that specifies a relative time measured in
1640 seconds.  The result of @code{encode-time} can also be used to specify
1641 an absolute value for @var{time}.
1643 In most cases, @var{repeat} has no effect on when @emph{first} call
1644 takes place---@var{time} alone specifies that.  There is one exception:
1645 if @var{time} is @code{t}, then the timer runs whenever the time is a
1646 multiple of @var{repeat} seconds after the epoch.  This is useful for
1647 functions like @code{display-time}.
1649 The function @code{run-at-time} returns a timer value that identifies
1650 the particular scheduled future action.  You can use this value to call
1651 @code{cancel-timer} (see below).
1652 @end deffn
1654   A repeating timer nominally ought to run every @var{repeat} seconds,
1655 but remember that any invocation of a timer can be late.  Lateness of
1656 one repetition has no effect on the scheduled time of the next
1657 repetition.  For instance, if Emacs is busy computing for long enough
1658 to cover three scheduled repetitions of the timer, and then starts to
1659 wait, it will immediately call the timer function three times in
1660 immediate succession (presuming no other timers trigger before or
1661 between them).  If you want a timer to run again no less than @var{n}
1662 seconds after the last invocation, don't use the @var{repeat} argument.
1663 Instead, the timer function should explicitly reschedule the timer.
1665 @defvar timer-max-repeats
1666 This variable's value specifies the maximum number of times to repeat
1667 calling a timer function in a row, when many previously scheduled
1668 calls were unavoidably delayed.
1669 @end defvar
1671 @defmac with-timeout (seconds timeout-forms@dots{}) body@dots{}
1672 Execute @var{body}, but give up after @var{seconds} seconds.  If
1673 @var{body} finishes before the time is up, @code{with-timeout} returns
1674 the value of the last form in @var{body}.  If, however, the execution of
1675 @var{body} is cut short by the timeout, then @code{with-timeout}
1676 executes all the @var{timeout-forms} and returns the value of the last
1677 of them.
1679 This macro works by setting a timer to run after @var{seconds} seconds.  If
1680 @var{body} finishes before that time, it cancels the timer.  If the
1681 timer actually runs, it terminates execution of @var{body}, then
1682 executes @var{timeout-forms}.
1684 Since timers can run within a Lisp program only when the program calls a
1685 primitive that can wait, @code{with-timeout} cannot stop executing
1686 @var{body} while it is in the midst of a computation---only when it
1687 calls one of those primitives.  So use @code{with-timeout} only with a
1688 @var{body} that waits for input, not one that does a long computation.
1689 @end defmac
1691   The function @code{y-or-n-p-with-timeout} provides a simple way to use
1692 a timer to avoid waiting too long for an answer.  @xref{Yes-or-No
1693 Queries}.
1695 @defun cancel-timer timer
1696 This cancels the requested action for @var{timer}, which should be a
1697 timer---usually, one previously returned by @code{run-at-time} or
1698 @code{run-with-idle-timer}.  This cancels the effect of that call to
1699 one of these functions; the arrival of the specified time will not
1700 cause anything special to happen.
1701 @end defun
1703 @node Idle Timers
1704 @section Idle Timers
1706   Here is how to set up a timer that runs when Emacs is idle for a
1707 certain length of time.  Aside from how to set them up, idle timers
1708 work just like ordinary timers.
1710 @deffn Command run-with-idle-timer secs repeat function &rest args
1711 Set up a timer which runs when Emacs has been idle for @var{secs}
1712 seconds.  The value of @var{secs} may be an integer or a floating point
1713 number; a value of the type returned by @code{current-idle-time}
1714 is also allowed.
1716 If @var{repeat} is @code{nil}, the timer runs just once, the first time
1717 Emacs remains idle for a long enough time.  More often @var{repeat} is
1718 non-@code{nil}, which means to run the timer @emph{each time} Emacs
1719 remains idle for @var{secs} seconds.
1721 The function @code{run-with-idle-timer} returns a timer value which you
1722 can use in calling @code{cancel-timer} (@pxref{Timers}).
1723 @end deffn
1725 @cindex idleness
1726   Emacs becomes ``idle'' when it starts waiting for user input, and it
1727 remains idle until the user provides some input.  If a timer is set for
1728 five seconds of idleness, it runs approximately five seconds after Emacs
1729 first becomes idle.  Even if @var{repeat} is non-@code{nil}, this timer
1730 will not run again as long as Emacs remains idle, because the duration
1731 of idleness will continue to increase and will not go down to five
1732 seconds again.
1734   Emacs can do various things while idle: garbage collect, autosave or
1735 handle data from a subprocess.  But these interludes during idleness do
1736 not interfere with idle timers, because they do not reset the clock of
1737 idleness to zero.  An idle timer set for 600 seconds will run when ten
1738 minutes have elapsed since the last user command was finished, even if
1739 subprocess output has been accepted thousands of times within those ten
1740 minutes, and even if there have been garbage collections and autosaves.
1742   When the user supplies input, Emacs becomes non-idle while executing the
1743 input.  Then it becomes idle again, and all the idle timers that are
1744 set up to repeat will subsequently run another time, one by one.
1746 @c Emacs 19 feature
1747 @defun current-idle-time
1748 If Emacs is idle, this function returns the length of time Emacs has
1749 been idle, as a list of three integers: @code{(@var{high} @var{low}
1750 @var{microsec})}.  The integers @var{high} and @var{low} combine to
1751 give the number of seconds of idleness, which is
1752 @ifnottex
1753 @var{high} * 2**16 + @var{low}.
1754 @end ifnottex
1755 @tex
1756 $high*2^{16}+low$.
1757 @end tex
1759 The third element, @var{microsec}, gives the microseconds since the
1760 start of the current second (or 0 for systems that return time with
1761 the resolution of only one second).
1763 When Emacs is not idle, @code{current-idle-time} returns @code{nil}.
1764 This is a convenient way to test whether Emacs is idle.
1766 The main use of this function is when an idle timer function wants to
1767 ``take a break'' for a while.  It can set up another idle timer to
1768 call the same function again, after a few seconds more idleness.
1769 Here's an example:
1771 @smallexample
1772 (defvar resume-timer nil
1773   "Timer that `timer-function' used to reschedule itself, or nil.")
1775 (defun timer-function ()
1776   ;; @r{If the user types a command while @code{resume-timer}}
1777   ;; @r{is active, the next time this function is called from}
1778   ;; @r{its main idle timer, deactivate @code{resume-timer}.}
1779   (when resume-timer
1780     (cancel-timer resume-timer))
1781   ...@var{do the work for a while}...
1782   (when @var{taking-a-break}
1783     (setq resume-timer
1784           (run-with-idle-timer
1785             ;; Compute an idle time @var{break-length}
1786             ;; more than the current value.
1787             (time-add (current-idle-time)
1788                       (seconds-to-time @var{break-length}))
1789             nil
1790             'timer-function))))
1791 @end smallexample
1792 @end defun
1794   Some idle timer functions in user Lisp packages have a loop that
1795 does a certain amount of processing each time around, and exits when
1796 @code{(input-pending-p)} is non-@code{nil}.  That approach seems very
1797 natural but has two problems:
1799 @itemize
1800 @item
1801 It blocks out all process output (since Emacs accepts process output
1802 only while waiting).
1804 @item
1805 It blocks out any idle timers that ought to run during that time.
1806 @end itemize
1808 @noindent
1809 To avoid these problems, don't use that technique.  Instead, write
1810 such idle timers to reschedule themselves after a brief pause, using
1811 the method in the @code{timer-function} example above.
1813 @node Terminal Input
1814 @section Terminal Input
1815 @cindex terminal input
1817   This section describes functions and variables for recording or
1818 manipulating terminal input.  See @ref{Display}, for related
1819 functions.
1821 @menu
1822 * Input Modes::         Options for how input is processed.
1823 * Recording Input::     Saving histories of recent or all input events.
1824 @end menu
1826 @node Input Modes
1827 @subsection Input Modes
1828 @cindex input modes
1829 @cindex terminal input modes
1831 @defun set-input-mode interrupt flow meta &optional quit-char
1832 This function sets the mode for reading keyboard input.  If
1833 @var{interrupt} is non-null, then Emacs uses input interrupts.  If it is
1834 @code{nil}, then it uses @sc{cbreak} mode.  The default setting is
1835 system-dependent.  Some systems always use @sc{cbreak} mode regardless
1836 of what is specified.
1838 When Emacs communicates directly with X, it ignores this argument and
1839 uses interrupts if that is the way it knows how to communicate.
1841 If @var{flow} is non-@code{nil}, then Emacs uses @sc{xon/xoff}
1842 (@kbd{C-q}, @kbd{C-s}) flow control for output to the terminal.  This
1843 has no effect except in @sc{cbreak} mode.
1845 @c Emacs 19 feature
1846 The argument @var{meta} controls support for input character codes
1847 above 127.  If @var{meta} is @code{t}, Emacs converts characters with
1848 the 8th bit set into Meta characters.  If @var{meta} is @code{nil},
1849 Emacs disregards the 8th bit; this is necessary when the terminal uses
1850 it as a parity bit.  If @var{meta} is neither @code{t} nor @code{nil},
1851 Emacs uses all 8 bits of input unchanged.  This is good for terminals
1852 that use 8-bit character sets.
1854 @c Emacs 19 feature
1855 If @var{quit-char} is non-@code{nil}, it specifies the character to
1856 use for quitting.  Normally this character is @kbd{C-g}.
1857 @xref{Quitting}.
1858 @end defun
1860 The @code{current-input-mode} function returns the input mode settings
1861 Emacs is currently using.
1863 @c Emacs 19 feature
1864 @defun current-input-mode
1865 This function returns the current mode for reading keyboard input.  It
1866 returns a list, corresponding to the arguments of @code{set-input-mode},
1867 of the form @code{(@var{interrupt} @var{flow} @var{meta} @var{quit})} in
1868 which:
1869 @table @var
1870 @item interrupt
1871 is non-@code{nil} when Emacs is using interrupt-driven input.  If
1872 @code{nil}, Emacs is using @sc{cbreak} mode.
1873 @item flow
1874 is non-@code{nil} if Emacs uses @sc{xon/xoff} (@kbd{C-q}, @kbd{C-s})
1875 flow control for output to the terminal.  This value is meaningful only
1876 when @var{interrupt} is @code{nil}.
1877 @item meta
1878 is @code{t} if Emacs treats the eighth bit of input characters as
1879 the meta bit; @code{nil} means Emacs clears the eighth bit of every
1880 input character; any other value means Emacs uses all eight bits as the
1881 basic character code.
1882 @item quit
1883 is the character Emacs currently uses for quitting, usually @kbd{C-g}.
1884 @end table
1885 @end defun
1887 @node Recording Input
1888 @subsection Recording Input
1889 @cindex recording input
1891 @defun recent-keys
1892 This function returns a vector containing the last 300 input events from
1893 the keyboard or mouse.  All input events are included, whether or not
1894 they were used as parts of key sequences.  Thus, you always get the last
1895 100 input events, not counting events generated by keyboard macros.
1896 (These are excluded because they are less interesting for debugging; it
1897 should be enough to see the events that invoked the macros.)
1899 A call to @code{clear-this-command-keys} (@pxref{Command Loop Info})
1900 causes this function to return an empty vector immediately afterward.
1901 @end defun
1903 @deffn Command open-dribble-file filename
1904 @cindex dribble file
1905 This function opens a @dfn{dribble file} named @var{filename}.  When a
1906 dribble file is open, each input event from the keyboard or mouse (but
1907 not those from keyboard macros) is written in that file.  A
1908 non-character event is expressed using its printed representation
1909 surrounded by @samp{<@dots{}>}.
1911 You close the dribble file by calling this function with an argument
1912 of @code{nil}.
1914 This function is normally used to record the input necessary to
1915 trigger an Emacs bug, for the sake of a bug report.
1917 @example
1918 @group
1919 (open-dribble-file "~/dribble")
1920      @result{} nil
1921 @end group
1922 @end example
1923 @end deffn
1925   See also the @code{open-termscript} function (@pxref{Terminal Output}).
1927 @node Terminal Output
1928 @section Terminal Output
1929 @cindex terminal output
1931   The terminal output functions send output to a text terminal, or keep
1932 track of output sent to the terminal.  The variable @code{baud-rate}
1933 tells you what Emacs thinks is the output speed of the terminal.
1935 @defopt baud-rate
1936 This variable's value is the output speed of the terminal, as far as
1937 Emacs knows.  Setting this variable does not change the speed of actual
1938 data transmission, but the value is used for calculations such as
1939 padding.
1941   It also affects decisions about whether to scroll part of the
1942 screen or repaint on text terminals.  @xref{Forcing Redisplay},
1943 for the corresponding functionality on graphical terminals.
1945 The value is measured in baud.
1946 @end defopt
1948   If you are running across a network, and different parts of the
1949 network work at different baud rates, the value returned by Emacs may be
1950 different from the value used by your local terminal.  Some network
1951 protocols communicate the local terminal speed to the remote machine, so
1952 that Emacs and other programs can get the proper value, but others do
1953 not.  If Emacs has the wrong value, it makes decisions that are less
1954 than optimal.  To fix the problem, set @code{baud-rate}.
1956 @defun send-string-to-terminal string &optional terminal
1957 This function sends @var{string} to @var{terminal} without alteration.
1958 Control characters in @var{string} have terminal-dependent effects.
1959 This function operates only on text terminals.  @var{terminal} may be
1960 a terminal object, a frame, or @code{nil} for the selected frame's
1961 terminal.  In batch mode, @var{string} is sent to @code{stdout} when
1962 @var{terminal} is @code{nil}.
1964 One use of this function is to define function keys on terminals that
1965 have downloadable function key definitions.  For example, this is how (on
1966 certain terminals) to define function key 4 to move forward four
1967 characters (by transmitting the characters @kbd{C-u C-f} to the
1968 computer):
1970 @example
1971 @group
1972 (send-string-to-terminal "\eF4\^U\^F")
1973      @result{} nil
1974 @end group
1975 @end example
1976 @end defun
1978 @deffn Command open-termscript filename
1979 @cindex termscript file
1980 This function is used to open a @dfn{termscript file} that will record
1981 all the characters sent by Emacs to the terminal.  It returns
1982 @code{nil}.  Termscript files are useful for investigating problems
1983 where Emacs garbles the screen, problems that are due to incorrect
1984 Termcap entries or to undesirable settings of terminal options more
1985 often than to actual Emacs bugs.  Once you are certain which characters
1986 were actually output, you can determine reliably whether they correspond
1987 to the Termcap specifications in use.
1989 You close the termscript file by calling this function with an
1990 argument of @code{nil}.
1992 See also @code{open-dribble-file} in @ref{Recording Input}.
1994 @example
1995 @group
1996 (open-termscript "../junk/termscript")
1997      @result{} nil
1998 @end group
1999 @end example
2000 @end deffn
2002 @node Sound Output
2003 @section Sound Output
2004 @cindex sound
2006   To play sound using Emacs, use the function @code{play-sound}.  Only
2007 certain systems are supported; if you call @code{play-sound} on a
2008 system which cannot really do the job, it gives an error.
2010   The sound must be stored as a file in RIFF-WAVE format (@samp{.wav})
2011 or Sun Audio format (@samp{.au}).
2013 @defun play-sound sound
2014 This function plays a specified sound.  The argument, @var{sound}, has
2015 the form @code{(sound @var{properties}...)}, where the @var{properties}
2016 consist of alternating keywords (particular symbols recognized
2017 specially) and values corresponding to them.
2019 Here is a table of the keywords that are currently meaningful in
2020 @var{sound}, and their meanings:
2022 @table @code
2023 @item :file @var{file}
2024 This specifies the file containing the sound to play.
2025 If the file name is not absolute, it is expanded against
2026 the directory @code{data-directory}.
2028 @item :data @var{data}
2029 This specifies the sound to play without need to refer to a file.  The
2030 value, @var{data}, should be a string containing the same bytes as a
2031 sound file.  We recommend using a unibyte string.
2033 @item :volume @var{volume}
2034 This specifies how loud to play the sound.  It should be a number in the
2035 range of 0 to 1.  The default is to use whatever volume has been
2036 specified before.
2038 @item :device @var{device}
2039 This specifies the system device on which to play the sound, as a
2040 string.  The default device is system-dependent.
2041 @end table
2043 Before actually playing the sound, @code{play-sound}
2044 calls the functions in the list @code{play-sound-functions}.
2045 Each function is called with one argument, @var{sound}.
2046 @end defun
2048 @defun play-sound-file file &optional volume device
2049 This function is an alternative interface to playing a sound @var{file}
2050 specifying an optional @var{volume} and @var{device}.
2051 @end defun
2053 @defvar play-sound-functions
2054 A list of functions to be called before playing a sound.  Each function
2055 is called with one argument, a property list that describes the sound.
2056 @end defvar
2058 @node X11 Keysyms
2059 @section Operating on X11 Keysyms
2060 @cindex X11 keysyms
2062 To define system-specific X11 keysyms, set the variable
2063 @code{system-key-alist}.
2065 @defvar system-key-alist
2066 This variable's value should be an alist with one element for each
2067 system-specific keysym.  Each element has the form @code{(@var{code}
2068 . @var{symbol})}, where @var{code} is the numeric keysym code (not
2069 including the ``vendor specific'' bit,
2070 @ifnottex
2071 -2**28),
2072 @end ifnottex
2073 @tex
2074 $-2^{28}$),
2075 @end tex
2076 and @var{symbol} is the name for the function key.
2078 For example @code{(168 . mute-acute)} defines a system-specific key (used
2079 by HP X servers) whose numeric code is
2080 @ifnottex
2081 -2**28
2082 @end ifnottex
2083 @tex
2084 $-2^{28}$
2085 @end tex
2086 + 168.
2088 It is not crucial to exclude from the alist the keysyms of other X
2089 servers; those do no harm, as long as they don't conflict with the ones
2090 used by the X server actually in use.
2092 The variable is always local to the current terminal, and cannot be
2093 buffer-local.  @xref{Multiple Terminals}.
2094 @end defvar
2096 You can specify which keysyms Emacs should use for the Meta, Alt, Hyper, and Super modifiers by setting these variables:
2098 @defvar x-alt-keysym
2099 @defvarx x-meta-keysym
2100 @defvarx x-hyper-keysym
2101 @defvarx x-super-keysym
2102 The name of the keysym that should stand for the Alt modifier
2103 (respectively, for Meta, Hyper, and Super).  For example, here is
2104 how to swap the Meta and Alt modifiers within Emacs:
2105 @lisp
2106 (setq x-alt-keysym 'meta)
2107 (setq x-meta-keysym 'alt)
2108 @end lisp
2109 @end defvar
2111 @node Batch Mode
2112 @section Batch Mode
2113 @cindex batch mode
2115   The command-line option @samp{-batch} causes Emacs to run
2116 noninteractively.  In this mode, Emacs does not read commands from the
2117 terminal, it does not alter the terminal modes, and it does not expect
2118 to be outputting to an erasable screen.  The idea is that you specify
2119 Lisp programs to run; when they are finished, Emacs should exit.  The
2120 way to specify the programs to run is with @samp{-l @var{file}}, which
2121 loads the library named @var{file}, or @samp{-f @var{function}}, which
2122 calls @var{function} with no arguments, or @samp{--eval @var{form}}.
2124   Any Lisp program output that would normally go to the echo area,
2125 either using @code{message}, or using @code{prin1}, etc., with @code{t}
2126 as the stream, goes instead to Emacs's standard error descriptor when
2127 in batch mode.  Similarly, input that would normally come from the
2128 minibuffer is read from the standard input descriptor.
2129 Thus, Emacs behaves much like a noninteractive
2130 application program.  (The echo area output that Emacs itself normally
2131 generates, such as command echoing, is suppressed entirely.)
2133 @defvar noninteractive
2134 This variable is non-@code{nil} when Emacs is running in batch mode.
2135 @end defvar
2137 @node Session Management
2138 @section Session Management
2139 @cindex session manager
2141 Emacs supports the X Session Management Protocol, which is used to
2142 suspend and restart applications.  In the X Window System, a program
2143 called the @dfn{session manager} is responsible for keeping track of
2144 the applications that are running.  When the X server shuts down, the
2145 session manager asks applications to save their state, and delays the
2146 actual shutdown until they respond.  An application can also cancel
2147 the shutdown.
2149 When the session manager restarts a suspended session, it directs
2150 these applications to individually reload their saved state.  It does
2151 this by specifying a special command-line argument that says what
2152 saved session to restore.  For Emacs, this argument is @samp{--smid
2153 @var{session}}.
2155 @defvar emacs-save-session-functions
2156 Emacs supports saving state via a hook called
2157 @code{emacs-save-session-functions}.  Emacs runs this hook when the
2158 session manager tells it that the window system is shutting down.  The
2159 functions are called with no arguments, and with the current buffer
2160 set to a temporary buffer.  Each function can use @code{insert} to add
2161 Lisp code to this buffer.  At the end, Emacs saves the buffer in a
2162 file, called the @dfn{session file}.
2164 @findex emacs-session-restore
2165 Subsequently, when the session manager restarts Emacs, it loads the
2166 session file automatically (@pxref{Loading}).  This is performed by a
2167 function named @code{emacs-session-restore}, which is called during
2168 startup.  @xref{Startup Summary}.
2170 If a function in @code{emacs-save-session-functions} returns
2171 non-@code{nil}, Emacs tells the session manager to cancel the
2172 shutdown.
2173 @end defvar
2175 Here is an example that just inserts some text into @samp{*scratch*} when
2176 Emacs is restarted by the session manager.
2178 @example
2179 @group
2180 (add-hook 'emacs-save-session-functions 'save-yourself-test)
2181 @end group
2183 @group
2184 (defun save-yourself-test ()
2185   (insert "(save-current-buffer
2186   (switch-to-buffer \"*scratch*\")
2187   (insert \"I am restored\"))")
2188   nil)
2189 @end group
2190 @end example
2192 @node Dynamic Libraries
2193 @section Dynamically Loaded Libraries
2194 @cindex dynamic libraries
2196   A @dfn{dynamically loaded library} is a library that is loaded on
2197 demand, when its facilities are first needed.  Emacs supports such
2198 on-demand loading of support libraries for some of its features.
2200 @defvar dynamic-library-alist
2201 This is an alist of dynamic libraries and external library files
2202 implementing them.
2204 Each element is a list of the form
2205 @w{@code{(@var{library} @var{files}@dots{})}}, where the @code{car} is
2206 a symbol representing a supported external library, and the rest are
2207 strings giving alternate filenames for that library.
2209 Emacs tries to load the library from the files in the order they
2210 appear in the list; if none is found, the running session of Emacs
2211 won't have access to that library, and the features that depend on the
2212 library will be unavailable.
2214 Image support on some platforms uses this facility.  Here's an example
2215 of setting this variable for supporting images on MS-Windows:
2217 @lisp
2218 (setq dynamic-library-alist
2219       '((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll")
2220         (png "libpng12d.dll" "libpng12.dll" "libpng.dll"
2221          "libpng13d.dll" "libpng13.dll")
2222         (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll")
2223         (tiff "libtiff3.dll" "libtiff.dll")
2224         (gif "giflib4.dll" "libungif4.dll" "libungif.dll")
2225         (svg "librsvg-2-2.dll")
2226         (gdk-pixbuf "libgdk_pixbuf-2.0-0.dll")
2227         (glib "libglib-2.0-0.dll")
2228         (gobject "libgobject-2.0-0.dll")))
2229 @end lisp
2231 Note that image types @code{pbm} and @code{xbm} do not need entries in
2232 this variable because they do not depend on external libraries and are
2233 always available in Emacs.
2235 Also note that this variable is not meant to be a generic facility for
2236 accessing external libraries; only those already known by Emacs can
2237 be loaded through it.
2239 This variable is ignored if the given @var{library} is statically
2240 linked into Emacs.
2241 @end defvar