More minor manual copyedits to fix 7x9 manual underfull/overfull hboxes.
[emacs.git] / doc / lispref / os.texi
blobbc5cde1bc3c906a6353fa188a9b5eb7f431852f6
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.
13   @xref{Building Emacs}, for related information.  @xref{Display}, for
14 additional operating system status information pertaining to the
15 terminal and the screen.
17 @menu
18 * Starting Up::         Customizing Emacs startup processing.
19 * Getting Out::         How exiting works (permanent or temporary).
20 * System Environment::  Distinguish the name and kind of system.
21 * User Identification:: Finding the name and user id of the user.
22 * Time of Day::         Getting the current time.
23 * Time Conversion::     Converting a time from numeric form to
24                           calendrical data and vice versa.
25 * Time Parsing::        Converting a time from numeric form to text
26                           and vice versa.
27 * Processor Run Time::  Getting the run time used by Emacs.
28 * Time Calculations::   Adding, subtracting, comparing times, etc.
29 * Timers::              Setting a timer to call a function at a certain time.
30 * Idle Timers::         Setting a timer to call a function when Emacs has
31                           been idle for a certain length of time.
32 * Terminal Input::      Accessing and recording terminal input.
33 * Terminal Output::     Controlling and recording terminal output.
34 * Sound Output::        Playing sounds on the computer's speaker.
35 * X11 Keysyms::         Operating on key symbols for X Windows.
36 * Batch Mode::          Running Emacs without terminal interaction.
37 * Session Management::  Saving and restoring state with X Session Management.
38 * Notifications::       Desktop notifications.
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 (see @code{normal-top-level} 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 @item
74 It registers input methods by loading any @file{leim-list.el} file
75 found in the @code{load-path}.
77 @c It removes PWD from the environment if it is not accurate.
78 @c It abbreviates default-directory.
80 @c Now normal-top-level calls command-line.
82 @vindex before-init-time
83 @item
84 It sets the variable @code{before-init-time} to the value of
85 @code{current-time} (@pxref{Time of Day}).  It also sets
86 @code{after-init-time} to @code{nil}, which signals to Lisp programs
87 that Emacs is being initialized.
89 @c set-locale-environment
90 @item
91 It sets the language environment and the terminal coding system,
92 if requested by environment variables such as @env{LANG}.
94 @item
95 It does some basic parsing of the command-line arguments.
97 @vindex initial-window-system@r{, and startup}
98 @vindex window-system-initialization-alist
99 @item
100 If not running in batch mode, it initializes the window system that
101 the variable @code{initial-window-system} specifies (@pxref{Window
102 Systems, initial-window-system}).  The initialization function for
103 each supported window system is specified by
104 @code{window-system-initialization-alist}.  If the value
105 of @code{initial-window-system} is @var{windowsystem}, then the
106 appropriate initialization function is defined in the file
107 @file{term/@var{windowsystem}-win.el}.  This file should have been
108 compiled into the Emacs executable when it was built.
110 @item
111 It runs the normal hook @code{before-init-hook}.
113 @item
114 If appropriate, it creates a graphical frame.  This is not done if the
115 options @samp{--batch} or @samp{--daemon} were specified.
117 @item
118 It initializes the initial frame's faces, and sets up the menu bar
119 and tool bar if needed.  If graphical frames are supported, it sets up
120 the tool bar even if the current frame is not a graphical one, since a
121 graphical frame may be created later on.
123 @item
124 It use @code{custom-reevaluate-setting} to re-initialize the members
125 of the list @code{custom-delayed-init-variables}.  These are any
126 pre-loaded user options whose default value depends on the run-time,
127 rather than build-time, context.
128 @xref{Building Emacs, custom-initialize-delay}.
130 @c @item
131 @c It registers the colors available for tty frames.
133 @item
134 It loads the library @file{site-start}, if it exists.  This is not
135 done if the options @samp{-Q} or @samp{--no-site-file} were specified.
136 @cindex @file{site-start.el}
138 @item
139 It loads your init file (@pxref{Init File}).  This is not done if the
140 options @samp{-q}, @samp{-Q}, or @samp{--batch} were specified.  If
141 the @samp{-u} option was specified, Emacs looks for the init file in
142 that user's home directory instead.
144 @item
145 It loads the library @file{default}, if it exists.  This is not done
146 if @code{inhibit-default-init} is non-@code{nil}, nor if the options
147 @samp{-q}, @samp{-Q}, or @samp{--batch} were specified.
148 @cindex @file{default.el}
150 @item
151 It loads your abbrevs from the file specified by
152 @code{abbrev-file-name}, if that file exists and can be read
153 (@pxref{Abbrev Files, abbrev-file-name}).  This is not done if the
154 option @samp{--batch} was specified.
156 @item
157 If @code{package-enable-at-startup} is non-@code{nil}, it calls the
158 function @code{package-initialize} to activate any optional Emacs Lisp
159 package that has been installed.  @xref{Packaging Basics}.
161 @vindex after-init-time
162 @item
163 It sets the variable @code{after-init-time} to the value of
164 @code{current-time}.  This variable was set to @code{nil} earlier;
165 setting it to the current time signals that the initialization phase
166 is over, and, together with @code{before-init-time}, provides the
167 measurement of how long it took.
169 @item
170 It runs the normal hook @code{after-init-hook}.
172 @item
173 If the buffer @file{*scratch*} exists and is still in Fundamental mode
174 (as it should be by default), it sets its major mode according to
175 @code{initial-major-mode}.
177 @item
178 If started on a text terminal, it loads the terminal-specific
179 Lisp library, which is specified by the variable
180 @code{term-file-prefix} (@pxref{Terminal-Specific}).  This is not done
181 in @code{--batch} mode, nor if @code{term-file-prefix} is @code{nil}.
183 @c Now command-line calls command-line-1.
185 @item
186 It displays the initial echo area message, unless you have suppressed
187 that with @code{inhibit-startup-echo-area-message}.
189 @item
190 It processes any command-line options that were not handled earlier.
192 @c This next one is back in command-line, but the remaining bits of
193 @c command-line-1 are not done if noninteractive.
194 @item
195 It now exits if the option @code{--batch} was specified.
197 @item
198 If @code{initial-buffer-choice} is a string, it visits the file with
199 that name.  If the @file{*scratch*} buffer exists and is
200 empty, it inserts @code{initial-scratch-message} into that buffer.
202 @c To make things nice and confusing, the next three items can be
203 @c called from two places.  If displaying a startup screen, they are
204 @c called in command-line-1 before the startup screen is shown.
205 @c inhibit-startup-hooks is then set and window-setup-hook set to nil.
206 @c If not displaying a startup screen, they are are called in
207 @c normal-top-level.
208 @c FIXME?  So it seems they can be called before or after the
209 @c daemon/session restore step?
211 @item
212 It runs @code{emacs-startup-hook} and then @code{term-setup-hook}.
214 @item
215 It calls @code{frame-notice-user-settings}, which modifies the
216 parameters of the selected frame according to whatever the init files
217 specify.
219 @item
220 It runs @code{window-setup-hook}.  @xref{Window Systems}.
222 @item
223 It displays the @dfn{startup screen}, which is a special buffer that
224 contains information about copyleft and basic Emacs usage.  This is
225 not done if @code{inhibit-startup-screen} or @code{initial-buffer-choice}
226 are non-@code{nil}, or if the @samp{--no-splash} or @samp{-Q} command-line
227 options were specified.
229 @c End of command-line-1.
231 @c Back to command-line from command-line-1.
233 @c This is the point at which we actually exit in batch mode, but the
234 @c last few bits of command-line-1 are not done in batch mode.
236 @item
237 If the option @code{--daemon} was specified, it calls
238 @code{server-start} and detaches from the controlling terminal.
239 @xref{Emacs Server,,, emacs, The GNU Emacs Manual}.
241 @item
242 If started by the X session manager, it calls
243 @code{emacs-session-restore} passing it as argument the ID of the
244 previous session.  @xref{Session Management}.
246 @c End of command-line.
248 @c Back to normal-top-level from command-line.
250 @end enumerate
252 @noindent
253 The following options affect some aspects of the startup sequence.
255 @defopt inhibit-startup-screen
256 This variable, if non-@code{nil}, inhibits the startup screen.  In
257 that case, Emacs typically displays the @file{*scratch*} buffer; but
258 see @code{initial-buffer-choice}, below.
260 Do not set this variable in the init file of a new user, or in a way
261 that affects more than one user, as that would prevent new users from
262 receiving information about copyleft and basic Emacs usage.
264 @vindex inhibit-startup-message
265 @vindex inhibit-splash-screen
266 @code{inhibit-startup-message} and @code{inhibit-splash-screen} are
267 aliases for this variable.
268 @end defopt
270 @defopt initial-buffer-choice
271 If non-@code{nil}, this variable is a string that specifies a file or
272 directory for Emacs to display after starting up, instead of the
273 startup screen.
274 @ignore
275 @c I do not think this should be mentioned.  AFAICS it is just a dodge
276 @c around inhibit-startup-screen not being settable on a site-wide basis.
277 If its value is @code{t}, Emacs displays the @file{*scratch*} buffer.
278 @end ignore
279 @end defopt
281 @defopt inhibit-startup-echo-area-message
282 This variable controls the display of the startup echo area message.
283 You can suppress the startup echo area message by adding text with this
284 form to your init file:
286 @example
287 (setq inhibit-startup-echo-area-message
288       "@var{your-login-name}")
289 @end example
291 Emacs explicitly checks for an expression as shown above in your init
292 file; your login name must appear in the expression as a Lisp string
293 constant.  You can also use the Customize interface.  Other methods of
294 setting @code{inhibit-startup-echo-area-message} to the same value do
295 not inhibit the startup message.  This way, you can easily inhibit the
296 message for yourself if you wish, but thoughtless copying of your init
297 file will not inhibit the message for someone else.
298 @end defopt
300 @defopt initial-scratch-message
301 This variable, if non-@code{nil}, should be a string, which is
302 inserted into the @file{*scratch*} buffer when Emacs starts up.  If it
303 is @code{nil}, the @file{*scratch*} buffer is empty.
304 @end defopt
306 @noindent
307 The following command-line options affect some aspects of the startup
308 sequence.  @xref{Initial Options,,, emacs, The GNU Emacs Manual}.
310 @table @code
311 @item --no-splash
312 Do not display a splash screen.
314 @item --batch
315 Run without an interactive terminal.  @xref{Batch Mode}.
317 @item --daemon
318 Do not initialize any display; just start a server in the background.
320 @item --no-init-file
321 @itemx -Q
322 Do not load either the init file, or the @file{default} library.
324 @item --no-site-file
325 Do not load the @file{site-start} library.
327 @item --quick
328 @itemx -Q
329 Equivalent to @samp{-q --no-site-file --no-splash}.
330 @c and --no-site-lisp, but let's not mention that here.
331 @end table
334 @node Init File
335 @subsection The Init File
336 @cindex init file
337 @cindex @file{.emacs}
338 @cindex @file{init.el}
340   When you start Emacs, it normally attempts to load your @dfn{init
341 file}.  This is either a file named @file{.emacs} or @file{.emacs.el}
342 in your home directory, or a file named @file{init.el} in a
343 subdirectory named @file{.emacs.d} in your home directory.
344 @ignore
345 Whichever place you use, you can also compile the file (@pxref{Byte
346 Compilation}); then the actual file loaded will be @file{.emacs.elc}
347 or @file{init.elc}.
348 @end ignore
350   The command-line switches @samp{-q}, @samp{-Q}, and @samp{-u}
351 control whether and where to find the init file; @samp{-q} (and the
352 stronger @samp{-Q}) says not to load an init file, while @samp{-u
353 @var{user}} says to load @var{user}'s init file instead of yours.
354 @xref{Entering Emacs,,, emacs, The GNU Emacs Manual}.  If neither
355 option is specified, Emacs uses the @env{LOGNAME} environment
356 variable, or the @env{USER} (most systems) or @env{USERNAME} (MS
357 systems) variable, to find your home directory and thus your init
358 file; this way, even if you have su'd, Emacs still loads your own init
359 file.  If those environment variables are absent, though, Emacs uses
360 your user-id to find your home directory.
362 @cindex default init file
363   An Emacs installation may have a @dfn{default init file}, which is a
364 Lisp library named @file{default.el}.  Emacs finds this file through
365 the standard search path for libraries (@pxref{How Programs Do
366 Loading}).  The Emacs distribution does not come with this file; it is
367 intended for local customizations.  If the default init file exists,
368 it is loaded whenever you start Emacs.  But your own personal init
369 file, if any, is loaded first; if it sets @code{inhibit-default-init}
370 to a non-@code{nil} value, then Emacs does not subsequently load the
371 @file{default.el} file.  In batch mode, or if you specify @samp{-q}
372 (or @samp{-Q}), Emacs loads neither your personal init file nor
373 the default init file.
375   Another file for site-customization is @file{site-start.el}.  Emacs
376 loads this @emph{before} the user's init file.  You can inhibit the
377 loading of this file with the option @samp{--no-site-file}.
379 @defopt site-run-file
380 This variable specifies the site-customization file to load before the
381 user's init file.  Its normal value is @code{"site-start"}.  The only
382 way you can change it with real effect is to do so before dumping
383 Emacs.
384 @c So why even mention it here.  I imagine it is almost never changed.
385 @end defopt
387   @xref{Init Examples,, Init File Examples, emacs, The GNU Emacs Manual}, for
388 examples of how to make various commonly desired customizations in your
389 @file{.emacs} file.
391 @defopt inhibit-default-init
392 If this variable is non-@code{nil}, it prevents Emacs from loading the
393 default initialization library file.  The default value is @code{nil}.
394 @end defopt
396 @defvar before-init-hook
397 This normal hook is run, once, just before loading all the init files
398 (@file{site-start.el}, your init file, and @file{default.el}).
399 (The only way to change it with real effect is before dumping Emacs.)
400 @end defvar
402 @defvar after-init-hook
403 This normal hook is run, once, just after loading all the init files
404 (@file{site-start.el}, your init file, and @file{default.el}),
405 before loading the terminal-specific library (if started on a text
406 terminal) and processing the command-line action arguments.
407 @end defvar
409 @defvar emacs-startup-hook
410 This normal hook is run, once, just after handling the command line
411 arguments, just before @code{term-setup-hook}.  In batch mode, Emacs
412 does not run either of these hooks.
413 @end defvar
415 @defvar user-init-file
416 This variable holds the absolute file name of the user's init file.  If the
417 actual init file loaded is a compiled file, such as @file{.emacs.elc},
418 the value refers to the corresponding source file.
419 @end defvar
421 @defvar user-emacs-directory
422 This variable holds the name of the @file{.emacs.d} directory.  It is
423 @file{~/.emacs.d} on all platforms but MS-DOS.
424 @end defvar
426 @node Terminal-Specific
427 @subsection Terminal-Specific Initialization
428 @cindex terminal-specific initialization
430   Each terminal type can have its own Lisp library that Emacs loads when
431 run on that type of terminal.  The library's name is constructed by
432 concatenating the value of the variable @code{term-file-prefix} and the
433 terminal type (specified by the environment variable @env{TERM}).
434 Normally, @code{term-file-prefix} has the value
435 @code{"term/"}; changing this is not recommended.  Emacs finds the file
436 in the normal manner, by searching the @code{load-path} directories, and
437 trying the @samp{.elc} and @samp{.el} suffixes.
439 @cindex Termcap
440   The usual role of a terminal-specific library is to enable special
441 keys to send sequences that Emacs can recognize.  It may also need to
442 set or add to @code{input-decode-map} if the Termcap or Terminfo entry
443 does not specify all the terminal's function keys.  @xref{Terminal
444 Input}.
446   When the name of the terminal type contains a hyphen or underscore, and no library
447 is found whose name is identical to the terminal's name, Emacs strips
448 from the terminal's name the last hyphen or underscore and everything that follows
449 it, and tries again.  This process is repeated until Emacs finds a
450 matching library, or until there are no more hyphens or underscores in the name
451 (i.e.@: there is no terminal-specific library).  For example, if the
452 terminal name is @samp{xterm-256color} and there is no
453 @file{term/xterm-256color.el} library, Emacs tries to load
454 @file{term/xterm.el}.  If necessary, the terminal library can evaluate
455 @code{(getenv "TERM")} to find the full name of the terminal type.
457   Your init file can prevent the loading of the
458 terminal-specific library by setting the variable
459 @code{term-file-prefix} to @code{nil}.  This feature is useful when
460 experimenting with your own peculiar customizations.
462   You can also arrange to override some of the actions of the
463 terminal-specific library by setting the variable
464 @code{term-setup-hook}.  This is a normal hook that Emacs runs
465 at the end of its initialization, after loading both
466 your init file and any terminal-specific libraries.  You could
467 use this hook to define initializations for terminals that do not
468 have their own libraries.  @xref{Hooks}.
470 @defvar term-file-prefix
471 @cindex @env{TERM} environment variable
472 If the value of this variable is non-@code{nil}, Emacs loads a
473 terminal-specific initialization file as follows:
475 @example
476 (load (concat term-file-prefix (getenv "TERM")))
477 @end example
479 @noindent
480 You may set the @code{term-file-prefix} variable to @code{nil} in your
481 init file if you do not wish to load the
482 terminal-initialization file.
484 On MS-DOS, Emacs sets the @env{TERM} environment variable to @samp{internal}.
485 @end defvar
487 @defvar term-setup-hook
488 This variable is a normal hook that Emacs runs after loading your
489 init file, the default initialization file (if any) and the
490 terminal-specific Lisp file.
492 You can use @code{term-setup-hook} to override the definitions made by a
493 terminal-specific file.
495 For a related feature, @pxref{Window Systems, window-setup-hook}.
496 @end defvar
498 @node Command-Line Arguments
499 @subsection Command-Line Arguments
500 @cindex command-line arguments
502   You can use command-line arguments to request various actions when
503 you start Emacs.  Note that the recommended way of using Emacs is to
504 start it just once, after logging in, and then do all editing in the same
505 Emacs session (@pxref{Entering Emacs,,, emacs, The GNU Emacs Manual}).
506 For this reason, you might not use command-line arguments very often;
507 nonetheless, they can be useful when invoking Emacs from session
508 scripts or debugging Emacs.  This section describes how Emacs
509 processes command-line arguments.
511 @defun command-line
512 This function parses the command line that Emacs was called with,
513 processes it, and (amongst other things) loads the user's init file and
514 displays the startup messages.
515 @end defun
517 @defvar command-line-processed
518 The value of this variable is @code{t} once the command line has been
519 processed.
521 If you redump Emacs by calling @code{dump-emacs}, you may wish to set
522 this variable to @code{nil} first in order to cause the new dumped Emacs
523 to process its new command-line arguments.
524 @end defvar
526 @defvar command-switch-alist
527 @cindex switches on command line
528 @cindex options on command line
529 @cindex command-line options
530 This variable is an alist of user-defined command-line options and
531 associated handler functions.  By default it is empty, but you can
532 add elements if you wish.
534 A @dfn{command-line option} is an argument on the command line, which
535 has the form:
537 @example
538 -@var{option}
539 @end example
541 The elements of the @code{command-switch-alist} look like this:
543 @example
544 (@var{option} . @var{handler-function})
545 @end example
547 The @sc{car}, @var{option}, is a string, the name of a command-line
548 option (not including the initial hyphen).  The @var{handler-function}
549 is called to handle @var{option}, and receives the option name as its
550 sole argument.
552 In some cases, the option is followed in the command line by an
553 argument.  In these cases, the @var{handler-function} can find all the
554 remaining command-line arguments in the variable
555 @code{command-line-args-left}.  (The entire list of command-line
556 arguments is in @code{command-line-args}.)
558 The command-line arguments are parsed by the @code{command-line-1}
559 function in the @file{startup.el} file.  See also @ref{Emacs
560 Invocation, , Command Line Arguments for Emacs Invocation, emacs, The
561 GNU Emacs Manual}.
562 @end defvar
564 @defvar command-line-args
565 The value of this variable is the list of command-line arguments passed
566 to Emacs.
567 @end defvar
569 @defvar command-line-args-left
570 @vindex argv
571 The value of this variable is the list of command-line arguments that
572 have not yet been processed.
573 @c Don't mention this, since it is a "bad name for a dynamically bound variable"
574 @c @code{argv} is an alias for this.
575 @end defvar
577 @defvar command-line-functions
578 This variable's value is a list of functions for handling an
579 unrecognized command-line argument.  Each time the next argument to be
580 processed has no special meaning, the functions in this list are called,
581 in order of appearance, until one of them returns a non-@code{nil}
582 value.
584 These functions are called with no arguments.  They can access the
585 command-line argument under consideration through the variable
586 @code{argi}, which is bound temporarily at this point.  The remaining
587 arguments (not including the current one) are in the variable
588 @code{command-line-args-left}.
590 When a function recognizes and processes the argument in @code{argi}, it
591 should return a non-@code{nil} value to say it has dealt with that
592 argument.  If it has also dealt with some of the following arguments, it
593 can indicate that by deleting them from @code{command-line-args-left}.
595 If all of these functions return @code{nil}, then the argument is treated
596 as a file name to visit.
597 @end defvar
599 @node Getting Out
600 @section Getting Out of Emacs
601 @cindex exiting Emacs
603   There are two ways to get out of Emacs: you can kill the Emacs job,
604 which exits permanently, or you can suspend it, which permits you to
605 reenter the Emacs process later.  (In a graphical environment, you can
606 of course simply switch to another application without doing anything
607 special to Emacs, then switch back to Emacs when you want.)
609 @menu
610 * Killing Emacs::        Exiting Emacs irreversibly.
611 * Suspending Emacs::     Exiting Emacs reversibly.
612 @end menu
614 @node Killing Emacs
615 @comment  node-name,  next,  previous,  up
616 @subsection Killing Emacs
617 @cindex killing Emacs
619   Killing Emacs means ending the execution of the Emacs process.
620 If you started Emacs from a terminal, the parent process normally
621 resumes control.  The low-level primitive for killing Emacs is
622 @code{kill-emacs}.
624 @deffn Command kill-emacs &optional exit-data
625 This command calls the hook @code{kill-emacs-hook}, then exits the
626 Emacs process and kills it.
628 If @var{exit-data} is an integer, that is used as the exit status of
629 the Emacs process.  (This is useful primarily in batch operation; see
630 @ref{Batch Mode}.)
632 If @var{exit-data} is a string, its contents are stuffed into the
633 terminal input buffer so that the shell (or whatever program next reads
634 input) can read them.
635 @end deffn
637 @cindex SIGTERM
638 @cindex SIGHUP
639 @cindex SIGINT
640 @cindex operating system signal
641   The @code{kill-emacs} function is normally called via the
642 higher-level command @kbd{C-x C-c}
643 (@code{save-buffers-kill-terminal}).  @xref{Exiting,,, emacs, The GNU
644 Emacs Manual}.  It is also called automatically if Emacs receives a
645 @code{SIGTERM} or @code{SIGHUP} operating system signal (e.g. when the
646 controlling terminal is disconnected), or if it receives a
647 @code{SIGINT} signal while running in batch mode (@pxref{Batch Mode}).
649 @defvar kill-emacs-hook
650 This normal hook is run by @code{kill-emacs}, before it kills Emacs.
652 Because @code{kill-emacs} can be called in situations where user
653 interaction is impossible (e.g. when the terminal is disconnected),
654 functions on this hook should not attempt to interact with the user.
655 If you want to interact with the user when Emacs is shutting down, use
656 @code{kill-emacs-query-functions}, described below.
657 @end defvar
659   When Emacs is killed, all the information in the Emacs process,
660 aside from files that have been saved, is lost.  Because killing Emacs
661 inadvertently can lose a lot of work, the
662 @code{save-buffers-kill-terminal} command queries for confirmation if
663 you have buffers that need saving or subprocesses that are running.
664 It also runs the abnormal hook @code{kill-emacs-query-functions}:
666 @defvar kill-emacs-query-functions
667 When @code{save-buffers-kill-terminal} is killing Emacs, it calls the
668 functions in this hook, after asking the standard questions and before
669 calling @code{kill-emacs}.  The functions are called in order of
670 appearance, with no arguments.  Each function can ask for additional
671 confirmation from the user.  If any of them returns @code{nil},
672 @code{save-buffers-kill-emacs} does not kill Emacs, and does not run
673 the remaining functions in this hook.  Calling @code{kill-emacs}
674 directly does not run this hook.
675 @end defvar
677 @node Suspending Emacs
678 @subsection Suspending Emacs
679 @cindex suspending Emacs
681   On text terminals, it is possible to @dfn{suspend Emacs}, which
682 means stopping Emacs temporarily and returning control to its superior
683 process, which is usually the shell.  This allows you to resume
684 editing later in the same Emacs process, with the same buffers, the
685 same kill ring, the same undo history, and so on.  To resume Emacs,
686 use the appropriate command in the parent shell---most likely
687 @code{fg}.
689 @cindex controlling terminal
690   Suspending works only on a terminal device from which the Emacs
691 session was started.  We call that device the @dfn{controlling
692 terminal} of the session.  Suspending is not allowed if the
693 controlling terminal is a graphical terminal.  Suspending is usually
694 not relevant in graphical environments, since you can simply switch to
695 another application without doing anything special to Emacs.
697 @c FIXME?  Are there any systems Emacs still supports that do not
698 @c have SIGTSTP?
699 @cindex SIGTSTP
700   Some operating systems (those without @code{SIGTSTP}, or MS-DOS) do
701 not support suspension of jobs; on these systems, ``suspension''
702 actually creates a new shell temporarily as a subprocess of Emacs.
703 Then you would exit the shell to return to Emacs.
705 @deffn Command suspend-emacs &optional string
706 This function stops Emacs and returns control to the superior process.
707 If and when the superior process resumes Emacs, @code{suspend-emacs}
708 returns @code{nil} to its caller in Lisp.
710 This function works only on the controlling terminal of the Emacs
711 session; to relinquish control of other tty devices, use
712 @code{suspend-tty} (see below).  If the Emacs session uses more than
713 one terminal, you must delete the frames on all the other terminals
714 before suspending Emacs, or this function signals an error.
715 @xref{Multiple Terminals}.
717 If @var{string} is non-@code{nil}, its characters are sent to Emacs's
718 superior shell, to be read as terminal input.
719 @c FIXME?  It seems to me that shell does echo STRING.
720 The characters in @var{string} are not echoed by the superior shell;
721 only the results appear.
723 Before suspending, @code{suspend-emacs} runs the normal hook
724 @code{suspend-hook}.  After the user resumes Emacs,
725 @code{suspend-emacs} runs the normal hook @code{suspend-resume-hook}.
726 @xref{Hooks}.
728 The next redisplay after resumption will redraw the entire screen,
729 unless the variable @code{no-redraw-on-reenter} is non-@code{nil}.
730 @xref{Refresh Screen}.
732 Here is an example of how you could use these hooks:
734 @smallexample
735 @group
736 (add-hook 'suspend-hook
737           (lambda () (or (y-or-n-p "Really suspend? ")
738                          (error "Suspend canceled"))))
739 @end group
740 (add-hook 'suspend-resume-hook (lambda () (message "Resumed!")
741                                  (sit-for 2)))
742 @end smallexample
743 @c The sit-for prevents the ``nil'' that suspend-emacs returns
744 @c hiding the message.
746 Here is what you would see upon evaluating @code{(suspend-emacs "pwd")}:
748 @smallexample
749 @group
750 ---------- Buffer: Minibuffer ----------
751 Really suspend? @kbd{y}
752 ---------- Buffer: Minibuffer ----------
753 @end group
755 @group
756 ---------- Parent Shell ----------
757 bash$ /home/username
758 bash$ fg
759 @end group
761 @group
762 ---------- Echo Area ----------
763 Resumed!
764 @end group
765 @end smallexample
767 @c FIXME?  AFAICS, it is echoed.
768 Note that @samp{pwd} is not echoed after Emacs is suspended.  But it
769 is read and executed by the shell.
770 @end deffn
772 @defvar suspend-hook
773 This variable is a normal hook that Emacs runs before suspending.
774 @end defvar
776 @defvar suspend-resume-hook
777 This variable is a normal hook that Emacs runs on resuming
778 after a suspension.
779 @end defvar
781 @defun suspend-tty &optional tty
782 If @var{tty} specifies a terminal device used by Emacs, this function
783 relinquishes the device and restores it to its prior state.  Frames
784 that used the device continue to exist, but are not updated and Emacs
785 doesn't read input from them.  @var{tty} can be a terminal object, a
786 frame (meaning the terminal for that frame), or @code{nil} (meaning
787 the terminal for the selected frame).  @xref{Multiple Terminals}.
789 If @var{tty} is already suspended, this function does nothing.
791 @vindex suspend-tty-functions
792 This function runs the hook @code{suspend-tty-functions}, passing the
793 terminal object as an argument to each function.
794 @end defun
796 @defun resume-tty &optional tty
797 This function resumes the previously suspended terminal device
798 @var{tty}; where @var{tty} has the same possible values as it does
799 for @code{suspend-tty}.
801 @vindex resume-tty-functions
802 This function reopens the terminal device, re-initializes it, and
803 redraws it with that terminal's selected frame.  It then runs the
804 hook @code{resume-tty-functions}, passing the terminal object as an
805 argument to each function.
807 If the same device is already used by another Emacs terminal, this
808 function signals an error.  If @var{tty} is not suspended, this
809 function does nothing.
810 @end defun
812 @defun controlling-tty-p &optional tty
813 This function returns non-@code{nil} if @var{tty} is the
814 controlling terminal of the Emacs session; @var{tty} can be a
815 terminal object, a frame (meaning the terminal for that frame), or
816 @code{nil} (meaning the terminal for the selected frame).
817 @end defun
819 @deffn Command suspend-frame
820 This command @dfn{suspends} a frame.  For GUI frames, it calls
821 @code{iconify-frame} (@pxref{Visibility of Frames}); for frames on
822 text terminals, it calls either @code{suspend-emacs} or
823 @code{suspend-tty}, depending on whether the frame is displayed on the
824 controlling terminal device or not.
825 @end deffn
827 @node System Environment
828 @section Operating System Environment
829 @cindex operating system environment
831   Emacs provides access to variables in the operating system environment
832 through various functions.  These variables include the name of the
833 system, the user's @acronym{UID}, and so on.
835 @defvar system-configuration
836 This variable holds the standard GNU configuration name for the
837 hardware/software configuration of your system, as a string.  For
838 example, a typical value for a 64-bit GNU/Linux system is
839 @samp{"x86_64-unknown-linux-gnu"}.
840 @end defvar
842 @cindex system type and name
843 @defvar system-type
844 The value of this variable is a symbol indicating the type of operating
845 system Emacs is running on.  The possible values are:
847 @table @code
848 @item aix
849 IBM's AIX.
851 @item berkeley-unix
852 Berkeley BSD and its variants.
854 @item cygwin
855 Cygwin, a Posix layer on top of MS-Windows.
857 @item darwin
858 Darwin (Mac OS X).
860 @item gnu
861 The GNU system (using the GNU kernel, which consists of the HURD and Mach).
863 @item gnu/linux
864 A GNU/Linux system---that is, a variant GNU system, using the Linux
865 kernel.  (These systems are the ones people often call ``Linux'', but
866 actually Linux is just the kernel, not the whole system.)
868 @item gnu/kfreebsd
869 A GNU (glibc-based) system with a FreeBSD kernel.
871 @item hpux
872 Hewlett-Packard HPUX operating system.
874 @item irix
875 Silicon Graphics Irix system.
877 @item ms-dos
878 Microsoft's DOS.  Emacs compiled with DJGPP for MS-DOS binds
879 @code{system-type} to @code{ms-dos} even when you run it on MS-Windows.
881 @item usg-unix-v
882 AT&T Unix System V.
884 @item windows-nt
885 Microsoft Windows NT, 9X and later.  The value of @code{system-type}
886 is always @code{windows-nt}, e.g. even on Windows 7.
888 @end table
890 We do not wish to add new symbols to make finer distinctions unless it
891 is absolutely necessary!  In fact, we hope to eliminate some of these
892 alternatives in the future.  If you need to make a finer distinction
893 than @code{system-type} allows for, you can test
894 @code{system-configuration}, e.g. against a regexp.
895 @end defvar
897 @defun system-name
898 This function returns the name of the machine you are running on, as a
899 string.
900 @end defun
902   The symbol @code{system-name} is a variable as well as a function.  In
903 fact, the function returns whatever value the variable
904 @code{system-name} currently holds.  Thus, you can set the variable
905 @code{system-name} in case Emacs is confused about the name of your
906 system.  The variable is also useful for constructing frame titles
907 (@pxref{Frame Titles}).
909 @c FIXME seems like this section is not the best place for this option?
910 @defopt mail-host-address
911 If this variable is non-@code{nil}, it is used instead of
912 @code{system-name} for purposes of generating email addresses.  For
913 example, it is used when constructing the default value of
914 @code{user-mail-address}.  @xref{User Identification}.  (Since this is
915 done when Emacs starts up, the value actually used is the one saved when
916 Emacs was dumped.  @xref{Building Emacs}.)
917 @c FIXME sounds like should probably give this a :set-after and some
918 @c custom-initialize-delay voodoo.
919 @end defopt
921 @deffn Command getenv var &optional frame
922 @cindex environment variable access
923 This function returns the value of the environment variable @var{var},
924 as a string.  @var{var} should be a string.  If @var{var} is undefined
925 in the environment, @code{getenv} returns @code{nil}.  It returns
926 @samp{""} if @var{var} is set but null.  Within Emacs, a list of environment
927 variables and their values is kept in the variable @code{process-environment}.
929 @example
930 @group
931 (getenv "USER")
932      @result{} "lewis"
933 @end group
934 @end example
936 The shell command @code{printenv} prints all or part of the environment:
938 @example
939 @group
940 bash$ printenv
941 PATH=/usr/local/bin:/usr/bin:/bin
942 USER=lewis
943 @end group
944 @group
945 TERM=xterm
946 SHELL=/bin/bash
947 HOME=/home/lewis
948 @end group
949 @dots{}
950 @end example
951 @end deffn
953 @deffn Command setenv variable &optional value substitute
954 This command sets the value of the environment variable named
955 @var{variable} to @var{value}.  @var{variable} should be a string.
956 Internally, Emacs Lisp can handle any string.  However, normally
957 @var{variable} should be a valid shell identifier, that is, a sequence
958 of letters, digits and underscores, starting with a letter or
959 underscore.  Otherwise, errors may occur if subprocesses of Emacs try
960 to access the value of @var{variable}.  If @var{value} is omitted or
961 @code{nil} (or, interactively, with a prefix argument), @code{setenv}
962 removes @var{variable} from the environment.  Otherwise, @var{value}
963 should be a string.
965 If the optional argument @var{substitute} is non-@code{nil}, Emacs
966 calls the function @code{substitute-env-vars} to expand any
967 environment variables in @var{value}.
969 @code{setenv} works by modifying @code{process-environment}; binding
970 that variable with @code{let} is also reasonable practice.
972 @code{setenv} returns the new value of @var{variable}, or @code{nil}
973 if it removed @var{variable} from the environment.
974 @end deffn
976 @defvar process-environment
977 This variable is a list of strings, each describing one environment
978 variable.  The functions @code{getenv} and @code{setenv} work by means
979 of this variable.
981 @smallexample
982 @group
983 process-environment
984 @result{} ("PATH=/usr/local/bin:/usr/bin:/bin"
985     "USER=lewis"
986 @end group
987 @group
988     "TERM=xterm"
989     "SHELL=/bin/bash"
990     "HOME=/home/lewis"
991     @dots{})
992 @end group
993 @end smallexample
995 If @code{process-environment} contains ``duplicate'' elements that
996 specify the same environment variable, the first of these elements
997 specifies the variable, and the other ``duplicates'' are ignored.
998 @end defvar
1000 @defvar initial-environment
1001 This variable holds the list of environment variables Emacs inherited
1002 from its parent process when Emacs started.
1003 @end defvar
1005 @defvar path-separator
1006 This variable holds a string that says which character separates
1007 directories in a search path (as found in an environment variable).  Its
1008 value is @code{":"} for Unix and GNU systems, and @code{";"} for MS systems.
1009 @end defvar
1011 @defun parse-colon-path path
1012 This function takes a search path string such as the value of
1013 the @env{PATH} environment variable, and splits it at the separators,
1014 returning a list of directory names.  @code{nil} in this list means
1015 the current directory.  Although the function's name says
1016 ``colon'', it actually uses the value of @code{path-separator}.
1018 @example
1019 (parse-colon-path ":/foo:/bar")
1020      @result{} (nil "/foo/" "/bar/")
1021 @end example
1022 @end defun
1024 @defvar invocation-name
1025 This variable holds the program name under which Emacs was invoked.  The
1026 value is a string, and does not include a directory name.
1027 @end defvar
1029 @defvar invocation-directory
1030 This variable holds the directory from which the Emacs executable was
1031 invoked, or @code{nil} if that directory cannot be determined.
1032 @end defvar
1034 @defvar installation-directory
1035 If non-@code{nil}, this is a directory within which to look for the
1036 @file{lib-src} and @file{etc} subdirectories.  In an installed Emacs,
1037 it is normally @code{nil}.  It is non-@code{nil}
1038 when Emacs can't find those directories in their standard installed
1039 locations, but can find them in a directory related somehow to the one
1040 containing the Emacs executable (i.e., @code{invocation-directory}).
1041 @end defvar
1043 @defun load-average &optional use-float
1044 This function returns the current 1-minute, 5-minute, and 15-minute
1045 system load averages, in a list.  The load average indicates the
1046 number of processes trying to run on the system.
1048 By default, the values are integers that are 100 times the system load
1049 averages, but if @var{use-float} is non-@code{nil}, then they are
1050 returned as floating point numbers without multiplying by 100.
1052 If it is impossible to obtain the load average, this function signals
1053 an error.  On some platforms, access to load averages requires
1054 installing Emacs as setuid or setgid so that it can read kernel
1055 information, and that usually isn't advisable.
1056 @c FIXME which platforms are these?  Are they still relevant?
1058 If the 1-minute load average is available, but the 5- or 15-minute
1059 averages are not, this function returns a shortened list containing
1060 the available averages.
1062 @example
1063 @group
1064 (load-average)
1065      @result{} (169 48 36)
1066 @end group
1067 @group
1068 (load-average t)
1069      @result{} (1.69 0.48 0.36)
1070 @end group
1071 @end example
1073 The shell command @code{uptime} returns similar information.
1074 @end defun
1076 @defun emacs-pid
1077 This function returns the process @acronym{ID} of the Emacs process,
1078 as an integer.
1079 @end defun
1081 @defvar tty-erase-char
1082 This variable holds the erase character that was selected
1083 in the system's terminal driver, before Emacs was started.
1084 @c FIXME?  Seems untrue since 23.1.  For me, it is 0.
1085 @c The value is @code{nil} if Emacs is running under a window system.
1086 @end defvar
1088 @node User Identification
1089 @section User Identification
1090 @cindex user identification
1092 @defvar init-file-user
1093 This variable says which user's init files should be used by
1094 Emacs---or @code{nil} if none.  @code{""} stands for the user who
1095 originally logged in.  The value reflects command-line options such as
1096 @samp{-q} or @samp{-u @var{user}}.
1098 Lisp packages that load files of customizations, or any other sort of
1099 user profile, should obey this variable in deciding where to find it.
1100 They should load the profile of the user name found in this variable.
1101 If @code{init-file-user} is @code{nil}, meaning that the @samp{-q}
1102 option was used, then Lisp packages should not load any customization
1103 files or user profile.
1104 @end defvar
1106 @defopt user-mail-address
1107 This holds the nominal email address of the user who is using Emacs.
1108 Emacs normally sets this variable to a default value after reading your
1109 init files, but not if you have already set it.  So you can set the
1110 variable to some other value in your init file if you do not
1111 want to use the default value.
1112 @end defopt
1114 @defun user-login-name &optional uid
1115 This function returns the name under which the user is logged in.
1116 It uses the environment variables @env{LOGNAME} or @env{USER} if
1117 either is set.  Otherwise, the value is based on the effective
1118 @acronym{UID}, not the real @acronym{UID}.
1120 If you specify @var{uid} (a number), the result is the user name that
1121 corresponds to @var{uid}, or @code{nil} if there is no such user.
1122 @end defun
1124 @defun user-real-login-name
1125 This function returns the user name corresponding to Emacs's real
1126 @acronym{UID}.  This ignores the effective @acronym{UID}, and the
1127 environment variables @env{LOGNAME} and @env{USER}.
1128 @end defun
1130 @defun user-full-name &optional uid
1131 This function returns the full name of the logged-in user---or the value
1132 of the environment variable @env{NAME}, if that is set.
1134 If the Emacs process's user-id does not correspond to any known user (and
1135 provided @code{NAME} is not set), the result is @code{"unknown"}.
1137 If @var{uid} is non-@code{nil}, then it should be a number (a user-id)
1138 or a string (a login name).  Then @code{user-full-name} returns the full
1139 name corresponding to that user-id or login name.  If you specify a
1140 user-id or login name that isn't defined, it returns @code{nil}.
1141 @end defun
1143 @vindex user-full-name
1144 @vindex user-real-login-name
1145 @vindex user-login-name
1146   The symbols @code{user-login-name}, @code{user-real-login-name} and
1147 @code{user-full-name} are variables as well as functions.  The functions
1148 return the same values that the variables hold.  These variables allow
1149 you to ``fake out'' Emacs by telling the functions what to return.  The
1150 variables are also useful for constructing frame titles (@pxref{Frame
1151 Titles}).
1153 @defun user-real-uid
1154 This function returns the real @acronym{UID} of the user.
1155 The value may be a floating point number, in the (unlikely) event that
1156 the UID is too large to fit in a Lisp integer.
1157 @end defun
1159 @defun user-uid
1160 This function returns the effective @acronym{UID} of the user.
1161 The value may be a floating point number.
1162 @end defun
1164 @node Time of Day
1165 @section Time of Day
1167   This section explains how to determine the current time and time
1168 zone.
1170 @cindex epoch
1171   Most of these functions represent time as a list of either three
1172 integers, @code{(@var{sec-high} @var{sec-low} @var{microsec})}, or of
1173 two integers, @code{(@var{sec-high} @var{sec-low})}.  The integers
1174 @var{sec-high} and @var{sec-low} give the high and low bits of an
1175 integer number of seconds.  This integer number,
1176 @ifnottex
1177 @var{high} * 2**16 + @var{low},
1178 @end ifnottex
1179 @tex
1180 $high*2^{16}+low$,
1181 @end tex
1182 is the number of seconds from the @dfn{epoch} (0:00 January 1, 1970
1183 UTC) to the specified time.  The third list element @var{microsec}, if
1184 present, gives the number of microseconds from the start of that
1185 second to the specified time.
1187   The return value of @code{current-time} represents time using three
1188 integers, while the timestamps in the return value of
1189 @code{file-attributes} use two integers (@pxref{Definition of
1190 file-attributes}).  In function arguments, e.g.@: the @var{time-value}
1191 argument to @code{current-time-string}, both two- and three-integer
1192 lists are accepted.  You can convert times from the list
1193 representation into standard human-readable strings using
1194 @code{current-time}, or to other forms using the @code{decode-time}
1195 and @code{format-time-string} functions documented in the following
1196 sections.
1198 @defun current-time-string &optional time-value
1199 This function returns the current time and date as a human-readable
1200 string.  The format of the string is unvarying; the number of
1201 characters used for each part is always the same, so you can reliably
1202 use @code{substring} to extract pieces of it.  You should count
1203 characters from the beginning of the string rather than from the end,
1204 as additional information may some day be added at the end.
1206 The argument @var{time-value}, if given, specifies a time to format
1207 (represented as a list of integers), instead of the current time.
1209 @example
1210 @group
1211 (current-time-string)
1212      @result{} "Wed Oct 14 22:21:05 1987"
1213 @end group
1214 @end example
1215 @end defun
1217 @defun current-time
1218 This function returns the current time, represented as a list of three
1219 integers @code{(@var{sec-high} @var{sec-low} @var{microsec})}.  On
1220 systems with only one-second time resolutions, @var{microsec} is 0.
1221 @end defun
1223 @defun float-time &optional time-value
1224 This function returns the current time as a floating-point number of
1225 seconds since the epoch.  The optional argument @var{time-value}, if
1226 given, specifies a time (represented as a list of integers) to convert
1227 instead of the current time.
1229 @emph{Warning}: Since the result is floating point, it may not be
1230 exact.  Do not use this function if precise time stamps are required.
1231 @end defun
1233 @defun current-time-zone &optional time-value
1234 This function returns a list describing the time zone that the user is
1237 The value has the form @code{(@var{offset} @var{name})}.  Here
1238 @var{offset} is an integer giving the number of seconds ahead of UTC
1239 (east of Greenwich).  A negative value means west of Greenwich.  The
1240 second element, @var{name}, is a string giving the name of the time
1241 zone.  Both elements change when daylight saving time begins or ends;
1242 if the user has specified a time zone that does not use a seasonal time
1243 adjustment, then the value is constant through time.
1245 If the operating system doesn't supply all the information necessary to
1246 compute the value, the unknown elements of the list are @code{nil}.
1248 The argument @var{time-value}, if given, specifies a time (represented
1249 as a list of integers) to analyze instead of the current time.
1250 @end defun
1252 The current time zone is determined by the @env{TZ} environment
1253 variable.  @xref{System Environment}.  For example, you can tell Emacs
1254 to use universal time with @code{(setenv "TZ" "UTC0")}.  If @env{TZ}
1255 is not in the environment, Emacs uses a platform-dependent default
1256 time zone.
1258 @node Time Conversion
1259 @section Time Conversion
1261   These functions convert time values (lists of two or three integers,
1262 as explained in the previous section) into calendrical information and
1263 vice versa.
1265   Many 32-bit operating systems are limited to time values containing
1266 32 bits of information; these systems typically handle only the times
1267 from 1901-12-13 20:45:52 UTC through 2038-01-19 03:14:07 UTC.
1268 However, 64-bit and some 32-bit operating systems have larger time
1269 values, and can represent times far in the past or future.
1271   Time conversion functions always use the Gregorian calendar, even
1272 for dates before the Gregorian calendar was introduced.  Year numbers
1273 count the number of years since the year 1 B.C., and do not skip zero
1274 as traditional Gregorian years do; for example, the year number
1275 @minus{}37 represents the Gregorian year 38 B.C@.
1277 @defun decode-time &optional time
1278 This function converts a time value into calendrical information.  If
1279 you don't specify @var{time}, it decodes the current time.  The return
1280 value is a list of nine elements, as follows:
1282 @example
1283 (@var{seconds} @var{minutes} @var{hour} @var{day} @var{month} @var{year} @var{dow} @var{dst} @var{zone})
1284 @end example
1286 Here is what the elements mean:
1288 @table @var
1289 @item seconds
1290 The number of seconds past the minute, as an integer between 0 and 59.
1291 On some operating systems, this is 60 for leap seconds.
1292 @item minutes
1293 The number of minutes past the hour, as an integer between 0 and 59.
1294 @item hour
1295 The hour of the day, as an integer between 0 and 23.
1296 @item day
1297 The day of the month, as an integer between 1 and 31.
1298 @item month
1299 The month of the year, as an integer between 1 and 12.
1300 @item year
1301 The year, an integer typically greater than 1900.
1302 @item dow
1303 The day of week, as an integer between 0 and 6, where 0 stands for
1304 Sunday.
1305 @item dst
1306 @code{t} if daylight saving time is effect, otherwise @code{nil}.
1307 @item zone
1308 An integer indicating the time zone, as the number of seconds east of
1309 Greenwich.
1310 @end table
1312 @strong{Common Lisp Note:} Common Lisp has different meanings for
1313 @var{dow} and @var{zone}.
1314 @end defun
1316 @defun encode-time seconds minutes hour day month year &optional zone
1317 This function is the inverse of @code{decode-time}.  It converts seven
1318 items of calendrical data into a time value.  For the meanings of the
1319 arguments, see the table above under @code{decode-time}.
1321 Year numbers less than 100 are not treated specially.  If you want them
1322 to stand for years above 1900, or years above 2000, you must alter them
1323 yourself before you call @code{encode-time}.
1325 The optional argument @var{zone} defaults to the current time zone and
1326 its daylight saving time rules.  If specified, it can be either a list
1327 (as you would get from @code{current-time-zone}), a string as in the
1328 @env{TZ} environment variable, @code{t} for Universal Time, or an
1329 integer (as you would get from @code{decode-time}).  The specified
1330 zone is used without any further alteration for daylight saving time.
1332 If you pass more than seven arguments to @code{encode-time}, the first
1333 six are used as @var{seconds} through @var{year}, the last argument is
1334 used as @var{zone}, and the arguments in between are ignored.  This
1335 feature makes it possible to use the elements of a list returned by
1336 @code{decode-time} as the arguments to @code{encode-time}, like this:
1338 @example
1339 (apply 'encode-time (decode-time @dots{}))
1340 @end example
1342 You can perform simple date arithmetic by using out-of-range values for
1343 the @var{seconds}, @var{minutes}, @var{hour}, @var{day}, and @var{month}
1344 arguments; for example, day 0 means the day preceding the given month.
1346 The operating system puts limits on the range of possible time values;
1347 if you try to encode a time that is out of range, an error results.
1348 For instance, years before 1970 do not work on some systems;
1349 on others, years as early as 1901 do work.
1350 @end defun
1352 @node Time Parsing
1353 @section Parsing and Formatting Times
1355   These functions convert time values (lists of two or three integers)
1356 to text in a string, and vice versa.
1358 @defun date-to-time string
1359 This function parses the time-string @var{string} and returns the
1360 corresponding time value.
1361 @end defun
1363 @defun format-time-string format-string &optional time universal
1364 This function converts @var{time} (or the current time, if @var{time} is
1365 omitted) to a string according to @var{format-string}.  The argument
1366 @var{format-string} may contain @samp{%}-sequences which say to
1367 substitute parts of the time.  Here is a table of what the
1368 @samp{%}-sequences mean:
1370 @table @samp
1371 @item %a
1372 This stands for the abbreviated name of the day of week.
1373 @item %A
1374 This stands for the full name of the day of week.
1375 @item %b
1376 This stands for the abbreviated name of the month.
1377 @item %B
1378 This stands for the full name of the month.
1379 @item %c
1380 This is a synonym for @samp{%x %X}.
1381 @item %C
1382 This has a locale-specific meaning.  In the default locale (named C), it
1383 is equivalent to @samp{%A, %B %e, %Y}.
1384 @item %d
1385 This stands for the day of month, zero-padded.
1386 @item %D
1387 This is a synonym for @samp{%m/%d/%y}.
1388 @item %e
1389 This stands for the day of month, blank-padded.
1390 @item %h
1391 This is a synonym for @samp{%b}.
1392 @item %H
1393 This stands for the hour (00-23).
1394 @item %I
1395 This stands for the hour (01-12).
1396 @item %j
1397 This stands for the day of the year (001-366).
1398 @item %k
1399 This stands for the hour (0-23), blank padded.
1400 @item %l
1401 This stands for the hour (1-12), blank padded.
1402 @item %m
1403 This stands for the month (01-12).
1404 @item %M
1405 This stands for the minute (00-59).
1406 @item %n
1407 This stands for a newline.
1408 @item %N
1409 This stands for the nanoseconds (000000000-999999999).  To ask for
1410 fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for
1411 microseconds, etc.  Any excess digits are discarded, without rounding.
1412 Currently Emacs time stamps are at best microsecond resolution so the
1413 last three digits generated by plain @samp{%N} are always zero.
1414 @item %p
1415 This stands for @samp{AM} or @samp{PM}, as appropriate.
1416 @item %r
1417 This is a synonym for @samp{%I:%M:%S %p}.
1418 @item %R
1419 This is a synonym for @samp{%H:%M}.
1420 @item %S
1421 This stands for the seconds (00-59).
1422 @item %t
1423 This stands for a tab character.
1424 @item %T
1425 This is a synonym for @samp{%H:%M:%S}.
1426 @item %U
1427 This stands for the week of the year (01-52), assuming that weeks
1428 start on Sunday.
1429 @item %w
1430 This stands for the numeric day of week (0-6).  Sunday is day 0.
1431 @item %W
1432 This stands for the week of the year (01-52), assuming that weeks
1433 start on Monday.
1434 @item %x
1435 This has a locale-specific meaning.  In the default locale (named
1436 @samp{C}), it is equivalent to @samp{%D}.
1437 @item %X
1438 This has a locale-specific meaning.  In the default locale (named
1439 @samp{C}), it is equivalent to @samp{%T}.
1440 @item %y
1441 This stands for the year without century (00-99).
1442 @item %Y
1443 This stands for the year with century.
1444 @item %Z
1445 This stands for the time zone abbreviation (e.g., @samp{EST}).
1446 @item %z
1447 This stands for the time zone numerical offset (e.g., @samp{-0500}).
1448 @end table
1450 You can also specify the field width and type of padding for any of
1451 these @samp{%}-sequences.  This works as in @code{printf}: you write
1452 the field width as digits in the middle of a @samp{%}-sequences.  If you
1453 start the field width with @samp{0}, it means to pad with zeros.  If you
1454 start the field width with @samp{_}, it means to pad with spaces.
1456 For example, @samp{%S} specifies the number of seconds since the minute;
1457 @samp{%03S} means to pad this with zeros to 3 positions, @samp{%_3S} to
1458 pad with spaces to 3 positions.  Plain @samp{%3S} pads with zeros,
1459 because that is how @samp{%S} normally pads to two positions.
1461 The characters @samp{E} and @samp{O} act as modifiers when used between
1462 @samp{%} and one of the letters in the table above.  @samp{E} specifies
1463 using the current locale's ``alternative'' version of the date and time.
1464 In a Japanese locale, for example, @code{%Ex} might yield a date format
1465 based on the Japanese Emperors' reigns.  @samp{E} is allowed in
1466 @samp{%Ec}, @samp{%EC}, @samp{%Ex}, @samp{%EX}, @samp{%Ey}, and
1467 @samp{%EY}.
1469 @samp{O} means to use the current locale's ``alternative''
1470 representation of numbers, instead of the ordinary decimal digits.  This
1471 is allowed with most letters, all the ones that output numbers.
1473 If @var{universal} is non-@code{nil}, that means to describe the time as
1474 Universal Time; @code{nil} means describe it using what Emacs believes
1475 is the local time zone (see @code{current-time-zone}).
1477 This function uses the C library function @code{strftime}
1478 (@pxref{Formatting Calendar Time,,, libc, The GNU C Library Reference
1479 Manual}) to do most of the work.  In order to communicate with that
1480 function, it first encodes its argument using the coding system
1481 specified by @code{locale-coding-system} (@pxref{Locales}); after
1482 @code{strftime} returns the resulting string,
1483 @code{format-time-string} decodes the string using that same coding
1484 system.
1485 @end defun
1487 @defun seconds-to-time seconds
1488 This function converts @var{seconds}, a floating point number of
1489 seconds since the epoch, to a time value and returns that.  To perform
1490 the inverse conversion, use @code{float-time}.
1491 @end defun
1493 @defun format-seconds format-string seconds
1494 This function converts its argument @var{seconds} into a string of
1495 years, days, hours, etc., according to @var{format-string}.  The
1496 argument @var{format-string} may contain @samp{%}-sequences which
1497 control the conversion.  Here is a table of what the
1498 @samp{%}-sequences mean:
1500 @table @samp
1501 @item %y
1502 @itemx %Y
1503 The integer number of 365-day years.
1504 @item %d
1505 @itemx %D
1506 The integer number of days.
1507 @item %h
1508 @itemx %H
1509 The integer number of hours.
1510 @item %m
1511 @itemx %M
1512 The integer number of minutes.
1513 @item %s
1514 @itemx %S
1515 The integer number of seconds.
1516 @item %z
1517 Non-printing control flag.  When it is used, other specifiers must be
1518 given in the order of decreasing size, i.e.@: years before days, hours
1519 before minutes, etc.  Nothing will be produced in the result string to
1520 the left of @samp{%z} until the first non-zero conversion is
1521 encountered.  For example, the default format used by
1522 @code{emacs-uptime} (@pxref{Processor Run Time, emacs-uptime})
1523 @w{@code{"%Y, %D, %H, %M, %z%S"}} means that the number of seconds
1524 will always be produced, but years, days, hours, and minutes will only
1525 be shown if they are non-zero.
1526 @item %%
1527 Produces a literal @samp{%}.
1528 @end table
1530 Upper-case format sequences produce the units in addition to the
1531 numbers, lower-case formats produce only the numbers.
1533 You can also specify the field width by following the @samp{%} with a
1534 number; shorter numbers will be padded with blanks.  An optional
1535 period before the width requests zero-padding instead.  For example,
1536 @code{"%.3Y"} might produce @code{"004 years"}.
1538 @emph{Warning:} This function works only with values of @var{seconds}
1539 that don't exceed @code{most-positive-fixnum} (@pxref{Integer Basics,
1540 most-positive-fixnum}).
1541 @end defun
1543 @node Processor Run Time
1544 @section Processor Run time
1545 @cindex processor run time
1546 @cindex Emacs process run time
1548   Emacs provides several functions and primitives that return time,
1549 both elapsed and processor time, used by the Emacs process.
1551 @deffn Command emacs-uptime &optional format
1552 This function returns a string representing the Emacs
1553 @dfn{uptime}---the elapsed wall-clock time this instance of Emacs is
1554 running.  The string is formatted by @code{format-seconds} according
1555 to the optional argument @var{format}.  For the available format
1556 descriptors, see @ref{Time Parsing, format-seconds}.  If @var{format}
1557 is @code{nil} or omitted, it defaults to @code{"%Y, %D, %H, %M,
1558 %z%S"}.
1560 When called interactively, it prints the uptime in the echo area.
1561 @end deffn
1563 @defun get-internal-run-time
1564 This function returns the processor run time used by Emacs as a list
1565 of three integers: @code{(@var{high} @var{low} @var{microsec})}.  The
1566 integers @var{high} and @var{low} combine to give the number of
1567 seconds, which is
1568 @ifnottex
1569 @var{high} * 2**16 + @var{low}.
1570 @end ifnottex
1571 @tex
1572 $high*2^{16}+low$.
1573 @end tex
1575 The third element, @var{microsec}, gives the microseconds (or 0 for
1576 systems that return time with the resolution of only one second).
1578 Note that the time returned by this function excludes the time Emacs
1579 was not using the processor, and if the Emacs process has several
1580 threads, the returned value is the sum of the processor times used up
1581 by all Emacs threads.
1583 If the system doesn't provide a way to determine the processor run
1584 time, @code{get-internal-run-time} returns the same time as
1585 @code{current-time}.
1586 @end defun
1588 @deffn Command emacs-init-time
1589 This function returns the duration of the Emacs initialization
1590 (@pxref{Startup Summary}) in seconds, as a string.  When called
1591 interactively, it prints the duration in the echo area.
1592 @end deffn
1594 @node Time Calculations
1595 @section Time Calculations
1597   These functions perform calendrical computations using time values
1598 (the kind of list that @code{current-time} returns).
1600 @defun time-less-p t1 t2
1601 This returns @code{t} if time value @var{t1} is less than time value
1602 @var{t2}.
1603 @end defun
1605 @defun time-subtract t1 t2
1606 This returns the time difference @var{t1} @minus{} @var{t2} between
1607 two time values, in the same format as a time value.
1608 @end defun
1610 @defun time-add t1 t2
1611 This returns the sum of two time values, one of which ought to
1612 represent a time difference rather than a point in time.
1613 Here is how to add a number of seconds to a time value:
1615 @example
1616 (time-add @var{time} (seconds-to-time @var{seconds}))
1617 @end example
1618 @end defun
1620 @defun time-to-days time
1621 This function returns the number of days between the beginning of year
1622 1 and @var{time}.
1623 @end defun
1625 @defun time-to-day-in-year time
1626 This returns the day number within the year corresponding to @var{time}.
1627 @end defun
1629 @defun date-leap-year-p year
1630 This function returns @code{t} if @var{year} is a leap year.
1631 @end defun
1633 @node Timers
1634 @section Timers for Delayed Execution
1635 @cindex timer
1637   You can set up a @dfn{timer} to call a function at a specified
1638 future time or after a certain length of idleness.
1640   Emacs cannot run timers at any arbitrary point in a Lisp program; it
1641 can run them only when Emacs could accept output from a subprocess:
1642 namely, while waiting or inside certain primitive functions such as
1643 @code{sit-for} or @code{read-event} which @emph{can} wait.  Therefore, a
1644 timer's execution may be delayed if Emacs is busy.  However, the time of
1645 execution is very precise if Emacs is idle.
1647   Emacs binds @code{inhibit-quit} to @code{t} before calling the timer
1648 function, because quitting out of many timer functions can leave
1649 things in an inconsistent state.  This is normally unproblematical
1650 because most timer functions don't do a lot of work.  Indeed, for a
1651 timer to call a function that takes substantial time to run is likely
1652 to be annoying.  If a timer function needs to allow quitting, it
1653 should use @code{with-local-quit} (@pxref{Quitting}).  For example, if
1654 a timer function calls @code{accept-process-output} to receive output
1655 from an external process, that call should be wrapped inside
1656 @code{with-local-quit}, to ensure that @kbd{C-g} works if the external
1657 process hangs.
1659   It is usually a bad idea for timer functions to alter buffer
1660 contents.  When they do, they usually should call @code{undo-boundary}
1661 both before and after changing the buffer, to separate the timer's
1662 changes from user commands' changes and prevent a single undo entry
1663 from growing to be quite large.
1665   Timer functions should also avoid calling functions that cause Emacs
1666 to wait, such as @code{sit-for} (@pxref{Waiting}).  This can lead to
1667 unpredictable effects, since other timers (or even the same timer) can
1668 run while waiting.  If a timer function needs to perform an action
1669 after a certain time has elapsed, it can do this by scheduling a new
1670 timer.
1672   If a timer function calls functions that can change the match data,
1673 it should save and restore the match data.  @xref{Saving Match Data}.
1675 @deffn Command run-at-time time repeat function &rest args
1676 This sets up a timer that calls the function @var{function} with
1677 arguments @var{args} at time @var{time}.  If @var{repeat} is a number
1678 (integer or floating point), the timer is scheduled to run again every
1679 @var{repeat} seconds after @var{time}.  If @var{repeat} is @code{nil},
1680 the timer runs only once.
1682 @var{time} may specify an absolute or a relative time.
1684 Absolute times may be specified using a string with a limited variety
1685 of formats, and are taken to be times @emph{today}, even if already in
1686 the past.  The recognized forms are @samp{@var{xxxx}},
1687 @samp{@var{x}:@var{xx}}, or @samp{@var{xx}:@var{xx}} (military time),
1688 and @samp{@var{xx}am}, @samp{@var{xx}AM}, @samp{@var{xx}pm},
1689 @samp{@var{xx}PM}, @samp{@var{xx}:@var{xx}am},
1690 @samp{@var{xx}:@var{xx}AM}, @samp{@var{xx}:@var{xx}pm}, or
1691 @samp{@var{xx}:@var{xx}PM}.  A period can be used instead of a colon
1692 to separate the hour and minute parts.
1694 To specify a relative time as a string, use numbers followed by units.
1695 For example:
1697 @table @samp
1698 @item 1 min
1699 denotes 1 minute from now.
1700 @item 1 min 5 sec
1701 denotes 65 seconds from now.
1702 @item 1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
1703 denotes exactly 103 months, 123 days, and 10862 seconds from now.
1704 @end table
1706 For relative time values, Emacs considers a month to be exactly thirty
1707 days, and a year to be exactly 365.25 days.
1709 Not all convenient formats are strings.  If @var{time} is a number
1710 (integer or floating point), that specifies a relative time measured in
1711 seconds.  The result of @code{encode-time} can also be used to specify
1712 an absolute value for @var{time}.
1714 In most cases, @var{repeat} has no effect on when @emph{first} call
1715 takes place---@var{time} alone specifies that.  There is one exception:
1716 if @var{time} is @code{t}, then the timer runs whenever the time is a
1717 multiple of @var{repeat} seconds after the epoch.  This is useful for
1718 functions like @code{display-time}.
1720 The function @code{run-at-time} returns a timer value that identifies
1721 the particular scheduled future action.  You can use this value to call
1722 @code{cancel-timer} (see below).
1723 @end deffn
1725   A repeating timer nominally ought to run every @var{repeat} seconds,
1726 but remember that any invocation of a timer can be late.  Lateness of
1727 one repetition has no effect on the scheduled time of the next
1728 repetition.  For instance, if Emacs is busy computing for long enough
1729 to cover three scheduled repetitions of the timer, and then starts to
1730 wait, it will immediately call the timer function three times in
1731 immediate succession (presuming no other timers trigger before or
1732 between them).  If you want a timer to run again no less than @var{n}
1733 seconds after the last invocation, don't use the @var{repeat} argument.
1734 Instead, the timer function should explicitly reschedule the timer.
1736 @defvar timer-max-repeats
1737 This variable's value specifies the maximum number of times to repeat
1738 calling a timer function in a row, when many previously scheduled
1739 calls were unavoidably delayed.
1740 @end defvar
1742 @defmac with-timeout (seconds timeout-forms@dots{}) body@dots{}
1743 Execute @var{body}, but give up after @var{seconds} seconds.  If
1744 @var{body} finishes before the time is up, @code{with-timeout} returns
1745 the value of the last form in @var{body}.  If, however, the execution of
1746 @var{body} is cut short by the timeout, then @code{with-timeout}
1747 executes all the @var{timeout-forms} and returns the value of the last
1748 of them.
1750 This macro works by setting a timer to run after @var{seconds} seconds.  If
1751 @var{body} finishes before that time, it cancels the timer.  If the
1752 timer actually runs, it terminates execution of @var{body}, then
1753 executes @var{timeout-forms}.
1755 Since timers can run within a Lisp program only when the program calls a
1756 primitive that can wait, @code{with-timeout} cannot stop executing
1757 @var{body} while it is in the midst of a computation---only when it
1758 calls one of those primitives.  So use @code{with-timeout} only with a
1759 @var{body} that waits for input, not one that does a long computation.
1760 @end defmac
1762   The function @code{y-or-n-p-with-timeout} provides a simple way to use
1763 a timer to avoid waiting too long for an answer.  @xref{Yes-or-No
1764 Queries}.
1766 @defun cancel-timer timer
1767 This cancels the requested action for @var{timer}, which should be a
1768 timer---usually, one previously returned by @code{run-at-time} or
1769 @code{run-with-idle-timer}.  This cancels the effect of that call to
1770 one of these functions; the arrival of the specified time will not
1771 cause anything special to happen.
1772 @end defun
1774 @node Idle Timers
1775 @section Idle Timers
1777   Here is how to set up a timer that runs when Emacs is idle for a
1778 certain length of time.  Aside from how to set them up, idle timers
1779 work just like ordinary timers.
1781 @deffn Command run-with-idle-timer secs repeat function &rest args
1782 Set up a timer which runs the next time Emacs is idle for @var{secs}
1783 seconds.  The value of @var{secs} may be an integer or a floating
1784 point number; a value of the type returned by @code{current-idle-time}
1785 is also allowed.
1787 If @var{repeat} is @code{nil}, the timer runs just once, the first time
1788 Emacs remains idle for a long enough time.  More often @var{repeat} is
1789 non-@code{nil}, which means to run the timer @emph{each time} Emacs
1790 remains idle for @var{secs} seconds.
1792 The function @code{run-with-idle-timer} returns a timer value which you
1793 can use in calling @code{cancel-timer} (@pxref{Timers}).
1794 @end deffn
1796 @cindex idleness
1797   Emacs becomes @dfn{idle} when it starts waiting for user input, and
1798 it remains idle until the user provides some input.  If a timer is set
1799 for five seconds of idleness, it runs approximately five seconds after
1800 Emacs first becomes idle.  Even if @var{repeat} is non-@code{nil},
1801 this timer will not run again as long as Emacs remains idle, because
1802 the duration of idleness will continue to increase and will not go
1803 down to five seconds again.
1805   Emacs can do various things while idle: garbage collect, autosave or
1806 handle data from a subprocess.  But these interludes during idleness do
1807 not interfere with idle timers, because they do not reset the clock of
1808 idleness to zero.  An idle timer set for 600 seconds will run when ten
1809 minutes have elapsed since the last user command was finished, even if
1810 subprocess output has been accepted thousands of times within those ten
1811 minutes, and even if there have been garbage collections and autosaves.
1813   When the user supplies input, Emacs becomes non-idle while executing the
1814 input.  Then it becomes idle again, and all the idle timers that are
1815 set up to repeat will subsequently run another time, one by one.
1817 @defun current-idle-time
1818 If Emacs is idle, this function returns the length of time Emacs has
1819 been idle, as a list of three integers: @code{(@var{sec-high}
1820 @var{sec-low} @var{microsec})}, where @var{high} and @var{low} are the
1821 high and low bits for the number of seconds and @var{microsec} is the
1822 additional number of microseconds (@pxref{Time of Day}).
1824 When Emacs is not idle, @code{current-idle-time} returns @code{nil}.
1825 This is a convenient way to test whether Emacs is idle.
1827 The main use of this function is when an idle timer function wants to
1828 ``take a break'' for a while.  It can set up another idle timer to
1829 call the same function again, after a few seconds more idleness.
1830 Here's an example:
1832 @smallexample
1833 (defvar resume-timer nil
1834   "Timer that `timer-function' used to reschedule itself, or nil.")
1836 (defun timer-function ()
1837   ;; @r{If the user types a command while @code{resume-timer}}
1838   ;; @r{is active, the next time this function is called from}
1839   ;; @r{its main idle timer, deactivate @code{resume-timer}.}
1840   (when resume-timer
1841     (cancel-timer resume-timer))
1842   ...@var{do the work for a while}...
1843   (when @var{taking-a-break}
1844     (setq resume-timer
1845           (run-with-idle-timer
1846             ;; Compute an idle time @var{break-length}
1847             ;; more than the current value.
1848             (time-add (current-idle-time)
1849                       (seconds-to-time @var{break-length}))
1850             nil
1851             'timer-function))))
1852 @end smallexample
1853 @end defun
1855   Do not write an idle timer function containing a loop which does a
1856 certain amount of processing each time around, and exits when
1857 @code{(input-pending-p)} is non-@code{nil}.  This approach seems very
1858 natural but has two problems:
1860 @itemize
1861 @item
1862 It blocks out all process output (since Emacs accepts process output
1863 only while waiting).
1865 @item
1866 It blocks out any idle timers that ought to run during that time.
1867 @end itemize
1869 @noindent
1870 The correct approach is for the idle timer to reschedule itself after
1871 a brief pause, using the method in the @code{timer-function} example
1872 above.
1874 @node Terminal Input
1875 @section Terminal Input
1876 @cindex terminal input
1878   This section describes functions and variables for recording or
1879 manipulating terminal input.  See @ref{Display}, for related
1880 functions.
1882 @menu
1883 * Input Modes::         Options for how input is processed.
1884 * Recording Input::     Saving histories of recent or all input events.
1885 @end menu
1887 @node Input Modes
1888 @subsection Input Modes
1889 @cindex input modes
1890 @cindex terminal input modes
1892 @defun set-input-mode interrupt flow meta &optional quit-char
1893 This function sets the mode for reading keyboard input.  If
1894 @var{interrupt} is non-null, then Emacs uses input interrupts.  If it is
1895 @code{nil}, then it uses @sc{cbreak} mode.  The default setting is
1896 system-dependent.  Some systems always use @sc{cbreak} mode regardless
1897 of what is specified.
1899 When Emacs communicates directly with X, it ignores this argument and
1900 uses interrupts if that is the way it knows how to communicate.
1902 If @var{flow} is non-@code{nil}, then Emacs uses @sc{xon/xoff}
1903 (@kbd{C-q}, @kbd{C-s}) flow control for output to the terminal.  This
1904 has no effect except in @sc{cbreak} mode.
1906 @c Emacs 19 feature
1907 The argument @var{meta} controls support for input character codes
1908 above 127.  If @var{meta} is @code{t}, Emacs converts characters with
1909 the 8th bit set into Meta characters.  If @var{meta} is @code{nil},
1910 Emacs disregards the 8th bit; this is necessary when the terminal uses
1911 it as a parity bit.  If @var{meta} is neither @code{t} nor @code{nil},
1912 Emacs uses all 8 bits of input unchanged.  This is good for terminals
1913 that use 8-bit character sets.
1915 @c Emacs 19 feature
1916 If @var{quit-char} is non-@code{nil}, it specifies the character to
1917 use for quitting.  Normally this character is @kbd{C-g}.
1918 @xref{Quitting}.
1919 @end defun
1921 The @code{current-input-mode} function returns the input mode settings
1922 Emacs is currently using.
1924 @c Emacs 19 feature
1925 @defun current-input-mode
1926 This function returns the current mode for reading keyboard input.  It
1927 returns a list, corresponding to the arguments of @code{set-input-mode},
1928 of the form @code{(@var{interrupt} @var{flow} @var{meta} @var{quit})} in
1929 which:
1930 @table @var
1931 @item interrupt
1932 is non-@code{nil} when Emacs is using interrupt-driven input.  If
1933 @code{nil}, Emacs is using @sc{cbreak} mode.
1934 @item flow
1935 is non-@code{nil} if Emacs uses @sc{xon/xoff} (@kbd{C-q}, @kbd{C-s})
1936 flow control for output to the terminal.  This value is meaningful only
1937 when @var{interrupt} is @code{nil}.
1938 @item meta
1939 is @code{t} if Emacs treats the eighth bit of input characters as
1940 the meta bit; @code{nil} means Emacs clears the eighth bit of every
1941 input character; any other value means Emacs uses all eight bits as the
1942 basic character code.
1943 @item quit
1944 is the character Emacs currently uses for quitting, usually @kbd{C-g}.
1945 @end table
1946 @end defun
1948 @node Recording Input
1949 @subsection Recording Input
1950 @cindex recording input
1952 @defun recent-keys
1953 This function returns a vector containing the last 300 input events from
1954 the keyboard or mouse.  All input events are included, whether or not
1955 they were used as parts of key sequences.  Thus, you always get the last
1956 100 input events, not counting events generated by keyboard macros.
1957 (These are excluded because they are less interesting for debugging; it
1958 should be enough to see the events that invoked the macros.)
1960 A call to @code{clear-this-command-keys} (@pxref{Command Loop Info})
1961 causes this function to return an empty vector immediately afterward.
1962 @end defun
1964 @deffn Command open-dribble-file filename
1965 @cindex dribble file
1966 This function opens a @dfn{dribble file} named @var{filename}.  When a
1967 dribble file is open, each input event from the keyboard or mouse (but
1968 not those from keyboard macros) is written in that file.  A
1969 non-character event is expressed using its printed representation
1970 surrounded by @samp{<@dots{}>}.
1972 You close the dribble file by calling this function with an argument
1973 of @code{nil}.
1975 This function is normally used to record the input necessary to
1976 trigger an Emacs bug, for the sake of a bug report.
1978 @example
1979 @group
1980 (open-dribble-file "~/dribble")
1981      @result{} nil
1982 @end group
1983 @end example
1984 @end deffn
1986   See also the @code{open-termscript} function (@pxref{Terminal Output}).
1988 @node Terminal Output
1989 @section Terminal Output
1990 @cindex terminal output
1992   The terminal output functions send output to a text terminal, or keep
1993 track of output sent to the terminal.  The variable @code{baud-rate}
1994 tells you what Emacs thinks is the output speed of the terminal.
1996 @defopt baud-rate
1997 This variable's value is the output speed of the terminal, as far as
1998 Emacs knows.  Setting this variable does not change the speed of actual
1999 data transmission, but the value is used for calculations such as
2000 padding.
2002   It also affects decisions about whether to scroll part of the
2003 screen or repaint on text terminals.  @xref{Forcing Redisplay},
2004 for the corresponding functionality on graphical terminals.
2006 The value is measured in baud.
2007 @end defopt
2009   If you are running across a network, and different parts of the
2010 network work at different baud rates, the value returned by Emacs may be
2011 different from the value used by your local terminal.  Some network
2012 protocols communicate the local terminal speed to the remote machine, so
2013 that Emacs and other programs can get the proper value, but others do
2014 not.  If Emacs has the wrong value, it makes decisions that are less
2015 than optimal.  To fix the problem, set @code{baud-rate}.
2017 @defun send-string-to-terminal string &optional terminal
2018 This function sends @var{string} to @var{terminal} without alteration.
2019 Control characters in @var{string} have terminal-dependent effects.
2020 This function operates only on text terminals.  @var{terminal} may be
2021 a terminal object, a frame, or @code{nil} for the selected frame's
2022 terminal.  In batch mode, @var{string} is sent to @code{stdout} when
2023 @var{terminal} is @code{nil}.
2025 One use of this function is to define function keys on terminals that
2026 have downloadable function key definitions.  For example, this is how (on
2027 certain terminals) to define function key 4 to move forward four
2028 characters (by transmitting the characters @kbd{C-u C-f} to the
2029 computer):
2031 @example
2032 @group
2033 (send-string-to-terminal "\eF4\^U\^F")
2034      @result{} nil
2035 @end group
2036 @end example
2037 @end defun
2039 @deffn Command open-termscript filename
2040 @cindex termscript file
2041 This function is used to open a @dfn{termscript file} that will record
2042 all the characters sent by Emacs to the terminal.  It returns
2043 @code{nil}.  Termscript files are useful for investigating problems
2044 where Emacs garbles the screen, problems that are due to incorrect
2045 Termcap entries or to undesirable settings of terminal options more
2046 often than to actual Emacs bugs.  Once you are certain which characters
2047 were actually output, you can determine reliably whether they correspond
2048 to the Termcap specifications in use.
2050 You close the termscript file by calling this function with an
2051 argument of @code{nil}.
2053 See also @code{open-dribble-file} in @ref{Recording Input}.
2055 @example
2056 @group
2057 (open-termscript "../junk/termscript")
2058      @result{} nil
2059 @end group
2060 @end example
2061 @end deffn
2063 @node Sound Output
2064 @section Sound Output
2065 @cindex sound
2067   To play sound using Emacs, use the function @code{play-sound}.  Only
2068 certain systems are supported; if you call @code{play-sound} on a
2069 system which cannot really do the job, it gives an error.
2071   The sound must be stored as a file in RIFF-WAVE format (@samp{.wav})
2072 or Sun Audio format (@samp{.au}).
2074 @defun play-sound sound
2075 This function plays a specified sound.  The argument, @var{sound}, has
2076 the form @code{(sound @var{properties}...)}, where the @var{properties}
2077 consist of alternating keywords (particular symbols recognized
2078 specially) and values corresponding to them.
2080 Here is a table of the keywords that are currently meaningful in
2081 @var{sound}, and their meanings:
2083 @table @code
2084 @item :file @var{file}
2085 This specifies the file containing the sound to play.
2086 If the file name is not absolute, it is expanded against
2087 the directory @code{data-directory}.
2089 @item :data @var{data}
2090 This specifies the sound to play without need to refer to a file.  The
2091 value, @var{data}, should be a string containing the same bytes as a
2092 sound file.  We recommend using a unibyte string.
2094 @item :volume @var{volume}
2095 This specifies how loud to play the sound.  It should be a number in the
2096 range of 0 to 1.  The default is to use whatever volume has been
2097 specified before.
2099 @item :device @var{device}
2100 This specifies the system device on which to play the sound, as a
2101 string.  The default device is system-dependent.
2102 @end table
2104 Before actually playing the sound, @code{play-sound}
2105 calls the functions in the list @code{play-sound-functions}.
2106 Each function is called with one argument, @var{sound}.
2107 @end defun
2109 @deffn Command play-sound-file file &optional volume device
2110 This function is an alternative interface to playing a sound @var{file}
2111 specifying an optional @var{volume} and @var{device}.
2112 @end deffn
2114 @defvar play-sound-functions
2115 A list of functions to be called before playing a sound.  Each function
2116 is called with one argument, a property list that describes the sound.
2117 @end defvar
2119 @node X11 Keysyms
2120 @section Operating on X11 Keysyms
2121 @cindex X11 keysyms
2123 To define system-specific X11 keysyms, set the variable
2124 @code{system-key-alist}.
2126 @defvar system-key-alist
2127 This variable's value should be an alist with one element for each
2128 system-specific keysym.  Each element has the form @code{(@var{code}
2129 . @var{symbol})}, where @var{code} is the numeric keysym code (not
2130 including the ``vendor specific'' bit,
2131 @ifnottex
2132 -2**28),
2133 @end ifnottex
2134 @tex
2135 $-2^{28}$),
2136 @end tex
2137 and @var{symbol} is the name for the function key.
2139 For example @code{(168 . mute-acute)} defines a system-specific key (used
2140 by HP X servers) whose numeric code is
2141 @ifnottex
2142 -2**28
2143 @end ifnottex
2144 @tex
2145 $-2^{28}$
2146 @end tex
2147 + 168.
2149 It is not crucial to exclude from the alist the keysyms of other X
2150 servers; those do no harm, as long as they don't conflict with the ones
2151 used by the X server actually in use.
2153 The variable is always local to the current terminal, and cannot be
2154 buffer-local.  @xref{Multiple Terminals}.
2155 @end defvar
2157 You can specify which keysyms Emacs should use for the Meta, Alt, Hyper, and Super modifiers by setting these variables:
2159 @defvar x-alt-keysym
2160 @defvarx x-meta-keysym
2161 @defvarx x-hyper-keysym
2162 @defvarx x-super-keysym
2163 The name of the keysym that should stand for the Alt modifier
2164 (respectively, for Meta, Hyper, and Super).  For example, here is
2165 how to swap the Meta and Alt modifiers within Emacs:
2166 @lisp
2167 (setq x-alt-keysym 'meta)
2168 (setq x-meta-keysym 'alt)
2169 @end lisp
2170 @end defvar
2172 @node Batch Mode
2173 @section Batch Mode
2174 @cindex batch mode
2176   The command-line option @samp{-batch} causes Emacs to run
2177 noninteractively.  In this mode, Emacs does not read commands from the
2178 terminal, it does not alter the terminal modes, and it does not expect
2179 to be outputting to an erasable screen.  The idea is that you specify
2180 Lisp programs to run; when they are finished, Emacs should exit.  The
2181 way to specify the programs to run is with @samp{-l @var{file}}, which
2182 loads the library named @var{file}, or @samp{-f @var{function}}, which
2183 calls @var{function} with no arguments, or @samp{--eval @var{form}}.
2185   Any Lisp program output that would normally go to the echo area,
2186 either using @code{message}, or using @code{prin1}, etc., with @code{t}
2187 as the stream, goes instead to Emacs's standard error descriptor when
2188 in batch mode.  Similarly, input that would normally come from the
2189 minibuffer is read from the standard input descriptor.
2190 Thus, Emacs behaves much like a noninteractive
2191 application program.  (The echo area output that Emacs itself normally
2192 generates, such as command echoing, is suppressed entirely.)
2194 @defvar noninteractive
2195 This variable is non-@code{nil} when Emacs is running in batch mode.
2196 @end defvar
2198 @node Session Management
2199 @section Session Management
2200 @cindex session manager
2202 Emacs supports the X Session Management Protocol, which is used to
2203 suspend and restart applications.  In the X Window System, a program
2204 called the @dfn{session manager} is responsible for keeping track of
2205 the applications that are running.  When the X server shuts down, the
2206 session manager asks applications to save their state, and delays the
2207 actual shutdown until they respond.  An application can also cancel
2208 the shutdown.
2210 When the session manager restarts a suspended session, it directs
2211 these applications to individually reload their saved state.  It does
2212 this by specifying a special command-line argument that says what
2213 saved session to restore.  For Emacs, this argument is @samp{--smid
2214 @var{session}}.
2216 @defvar emacs-save-session-functions
2217 Emacs supports saving state via a hook called
2218 @code{emacs-save-session-functions}.  Emacs runs this hook when the
2219 session manager tells it that the window system is shutting down.  The
2220 functions are called with no arguments, and with the current buffer
2221 set to a temporary buffer.  Each function can use @code{insert} to add
2222 Lisp code to this buffer.  At the end, Emacs saves the buffer in a
2223 file, called the @dfn{session file}.
2225 @findex emacs-session-restore
2226 Subsequently, when the session manager restarts Emacs, it loads the
2227 session file automatically (@pxref{Loading}).  This is performed by a
2228 function named @code{emacs-session-restore}, which is called during
2229 startup.  @xref{Startup Summary}.
2231 If a function in @code{emacs-save-session-functions} returns
2232 non-@code{nil}, Emacs tells the session manager to cancel the
2233 shutdown.
2234 @end defvar
2236 Here is an example that just inserts some text into @file{*scratch*} when
2237 Emacs is restarted by the session manager.
2239 @example
2240 @group
2241 (add-hook 'emacs-save-session-functions 'save-yourself-test)
2242 @end group
2244 @group
2245 (defun save-yourself-test ()
2246   (insert "(save-current-buffer
2247   (switch-to-buffer \"*scratch*\")
2248   (insert \"I am restored\"))")
2249   nil)
2250 @end group
2251 @end example
2253 @node Notifications
2254 @section Desktop Notifications
2255 @cindex desktop notifications
2257 Emacs is able to send @dfn{notifications} on systems that support the
2258 freedesktop.org Desktop Notifications Specification.  In order to use
2259 this functionality, Emacs must have been compiled with D-Bus support,
2260 and the @code{notifications} library must be loaded.
2262 @defun notifications-notify &rest params
2263 This function sends a notification to the desktop via D-Bus,
2264 consisting of the parameters specified by the @var{params} arguments.
2265 These arguments should consist of alternating keyword and value pairs.
2266 The supported keywords and values are as follows:
2268 @table @code
2269 @item :title @var{title}
2270 The notification title.
2272 @item :body @var{text}
2273 The notification body text.  Depending on the implementation of the
2274 notification server, the text could contain HTML markups, like
2275 @samp{"<b>bold text</b>"}, or hyperlinks.
2277 @item :app-name @var{name}
2278 The name of the application sending the notification.  The default is
2279 @code{notifications-application-name}.
2281 @item :replaces-id @var{id}
2282 The notification @var{id} that this notification replaces.  @var{id}
2283 must be the result of a previous @code{notifications-notify} call.
2285 @item :app-icon @var{icon-file}
2286 The file name of the notification icon.  If set to @code{nil}, no icon
2287 is displayed.  The default is @code{notifications-application-icon}.
2289 @item :actions (@var{key} @var{title} @var{key} @var{title} ...)
2290 A list of actions to be applied.  @var{key} and @var{title} are both
2291 strings.  The default action (usually invoked by clicking the
2292 notification) should have a key named @samp{"default"}.  The title can
2293 be anything, though implementations are free not to display it.
2295 @item :timeout @var{timeout}
2296 The timeout time in milliseconds since the display of the notification
2297 at which the notification should automatically close.  If -1, the
2298 notification's expiration time is dependent on the notification
2299 server's settings, and may vary for the type of notification.  If 0,
2300 the notification never expires.  Default value is -1.
2302 @item :urgency @var{urgency}
2303 The urgency level.  It can be @code{low}, @code{normal}, or @code{critical}.
2305 @item :category @var{category}
2306 The type of notification this is, a string.
2308 @item :desktop-entry @var{filename}
2309 This specifies the name of the desktop filename representing the
2310 calling program, like @samp{"emacs"}.
2312 @item :image-data (@var{width} @var{height} @var{rowstride} @var{has-alpha} @var{bits} @var{channels} @var{data})
2313 This is a raw data image format that describes the width, height,
2314 rowstride, whether there is an alpha channel, bits per sample,
2315 channels and image data, respectively.
2317 @item :image-path @var{path}
2318 This is represented either as a URI (@samp{file://} is the only URI
2319 schema supported right now) or a name in a freedesktop.org-compliant
2320 icon theme from @samp{$XDG_DATA_DIRS/icons}.
2322 @item :sound-file @var{filename}
2323 The path to a sound file to play when the notification pops up.
2325 @item :sound-name @var{name}
2326 A themable named sound from the freedesktop.org sound naming
2327 specification from @samp{$XDG_DATA_DIRS/sounds}, to play when the
2328 notification pops up.  Similar to the icon name, only for sounds. An
2329 example would be @samp{"message-new-instant"}.
2331 @item :suppress-sound
2332 Causes the server to suppress playing any sounds, if it has that
2333 ability.
2335 @item :x @var{position}
2336 @itemx :y @var{position}
2337 Specifies the X, Y location on the screen that the
2338 notification should point to.  Both arguments must be used together.
2340 @item :on-action @var{function}
2341 Function to call when an action is invoked.  The notification @var{id}
2342 and the @var{key} of the action are passed as arguments to the
2343 function.
2345 @item :on-close @var{function}
2346 Function to call when the notification has been closed by timeout or
2347 by the user.  The function receive the notification @var{id} and the closing
2348 @var{reason} as arguments:
2350 @itemize
2351 @item @code{expired} if the notification has expired
2352 @item @code{dismissed} if the notification was dismissed by the user
2353 @item @code{close-notification} if the notification was closed by a call to
2354 @code{notifications-close-notification}
2355 @item @code{undefined} if the notification server hasn't provided a reason
2356 @end itemize
2357 @end table
2359 This function returns a notification id, an integer, which can be used
2360 to manipulate the notification item with
2361 @code{notifications-close-notification} or the @code{:replaces-id}
2362 argument of another @code{notifications-notify} call.  For example:
2364 @example
2365 @group
2366 (defun my-on-action-function (id key)
2367   (message "Message %d, key \"%s\" pressed" id key))
2368      @result{} my-on-action-function
2369 @end group
2371 @group
2372 (defun my-on-close-function (id reason)
2373   (message "Message %d, closed due to \"%s\"" id reason))
2374      @result{} my-on-close-function
2375 @end group
2377 @group
2378 (notifications-notify
2379  :title "Title"
2380  :body "This is <b>important</b>."
2381  :actions '("Confirm" "I agree" "Refuse" "I disagree")
2382  :on-action 'my-on-action-function
2383  :on-close 'my-on-close-function)
2384      @result{} 22
2385 @end group
2387 @group
2388 A message window opens on the desktop.  Press "I agree"
2389      @result{} Message 22, key "Confirm" pressed
2390         Message 22, closed due to "dismissed"
2391 @end group
2392 @end example
2393 @end defun
2395 @defun notifications-close-notification id
2396 This function closes a notification with identifier @var{id}.
2397 @end defun
2399 @node Dynamic Libraries
2400 @section Dynamically Loaded Libraries
2401 @cindex dynamic libraries
2403   A @dfn{dynamically loaded library} is a library that is loaded on
2404 demand, when its facilities are first needed.  Emacs supports such
2405 on-demand loading of support libraries for some of its features.
2407 @defvar dynamic-library-alist
2408 This is an alist of dynamic libraries and external library files
2409 implementing them.
2411 Each element is a list of the form
2412 @w{@code{(@var{library} @var{files}@dots{})}}, where the @code{car} is
2413 a symbol representing a supported external library, and the rest are
2414 strings giving alternate filenames for that library.
2416 Emacs tries to load the library from the files in the order they
2417 appear in the list; if none is found, the Emacs session won't have
2418 access to that library, and the features it provides will be
2419 unavailable.
2421 Image support on some platforms uses this facility.  Here's an example
2422 of setting this variable for supporting images on MS-Windows:
2424 @example
2425 (setq dynamic-library-alist
2426       '((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll")
2427         (png "libpng12d.dll" "libpng12.dll" "libpng.dll"
2428              "libpng13d.dll" "libpng13.dll")
2429         (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll"
2430               "jpeg.dll")
2431         (tiff "libtiff3.dll" "libtiff.dll")
2432         (gif "giflib4.dll" "libungif4.dll" "libungif.dll")
2433         (svg "librsvg-2-2.dll")
2434         (gdk-pixbuf "libgdk_pixbuf-2.0-0.dll")
2435         (glib "libglib-2.0-0.dll")
2436         (gobject "libgobject-2.0-0.dll")))
2437 @end example
2439 Note that image types @code{pbm} and @code{xbm} do not need entries in
2440 this variable because they do not depend on external libraries and are
2441 always available in Emacs.
2443 Also note that this variable is not meant to be a generic facility for
2444 accessing external libraries; only those already known by Emacs can
2445 be loaded through it.
2447 This variable is ignored if the given @var{library} is statically
2448 linked into Emacs.
2449 @end defvar