Add cyrillic-tuvan input method
[emacs.git] / doc / lispref / os.texi
blob3312705e167ac6f6f4973eb0fbc6070544bbbc60
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1995, 1998-1999, 2001-2016 Free Software
4 @c Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @node System Interface
7 @chapter Operating System Interface
9   This chapter is about starting and getting out of Emacs, access to
10 values in the operating system environment, and terminal input, output.
12   @xref{Building Emacs}, for related information.  @xref{Display}, for
13 additional operating system status information pertaining to the
14 terminal and the screen.
16 @menu
17 * Starting Up::         Customizing Emacs startup processing.
18 * Getting Out::         How exiting works (permanent or temporary).
19 * System Environment::  Distinguish the name and kind of system.
20 * User Identification:: Finding the name and user id of the user.
21 * Time of Day::         Getting the current time.
22 * Time Zone Rules::     Rules for time zones and daylight saving 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 * Desktop Notifications:: Desktop notifications.
39 * File Notifications::  File notifications.
40 * Dynamic Libraries::   On-demand loading of support libraries.
41 * Security Considerations:: Running Emacs in an unfriendly environment.
42 @end menu
44 @node Starting Up
45 @section Starting Up Emacs
47   This section describes what Emacs does when it is started, and how you
48 can customize these actions.
50 @menu
51 * Startup Summary::         Sequence of actions Emacs performs at startup.
52 * Init File::               Details on reading the init file.
53 * Terminal-Specific::       How the terminal-specific Lisp file is read.
54 * Command-Line Arguments::  How command-line arguments are processed,
55                               and how you can customize them.
56 @end menu
58 @node Startup Summary
59 @subsection Summary: Sequence of Actions at Startup
60 @cindex initialization of Emacs
61 @cindex startup of Emacs
62 @cindex @file{startup.el}
64   When Emacs is started up, it performs the following operations
65 (see @code{normal-top-level} in @file{startup.el}):
67 @enumerate
68 @item
69 It adds subdirectories to @code{load-path}, by running the file named
70 @file{subdirs.el} in each directory in the list.  Normally, this file
71 adds the directory's subdirectories to the list, and those are scanned
72 in their turn.  The files @file{subdirs.el} are normally generated
73 automatically when Emacs is installed.
75 @item
76 It loads any @file{leim-list.el} that it finds in the @code{load-path}
77 directories.  This file is intended for registering input methods.
78 The search is only for any personal @file{leim-list.el} files that you
79 may have created; it skips the directories containing the standard Emacs
80 libraries (these should contain only a single @file{leim-list.el} file,
81 which is compiled into the Emacs executable).
83 @vindex before-init-time
84 @item
85 It sets the variable @code{before-init-time} to the value of
86 @code{current-time} (@pxref{Time of Day}).  It also sets
87 @code{after-init-time} to @code{nil}, which signals to Lisp programs
88 that Emacs is being initialized.
90 @c set-locale-environment
91 @item
92 It sets the language environment and the terminal coding system,
93 if requested by environment variables such as @env{LANG}.
95 @item
96 It does some basic parsing of the command-line arguments.
98 @vindex initial-window-system@r{, and startup}
99 @vindex window-system-initialization-alist
100 @item
101 If not running in batch mode, it initializes the window system that
102 the variable @code{initial-window-system} specifies (@pxref{Window
103 Systems, initial-window-system}).  The initialization function for
104 each supported window system is specified by
105 @code{window-system-initialization-alist}.  If the value
106 of @code{initial-window-system} is @var{windowsystem}, then the
107 appropriate initialization function is defined in the file
108 @file{term/@var{windowsystem}-win.el}.  This file should have been
109 compiled into the Emacs executable when it was built.
111 @item
112 It runs the normal hook @code{before-init-hook}.
114 @item
115 If appropriate, it creates a graphical frame.  This is not done in
116 batch (noninteractive) or daemon mode.
118 @item
119 It initializes the initial frame's faces, and sets up the menu bar
120 and tool bar if needed.  If graphical frames are supported, it sets up
121 the tool bar even if the current frame is not a graphical one, since a
122 graphical frame may be created later on.
124 @item
125 It use @code{custom-reevaluate-setting} to re-initialize the members
126 of the list @code{custom-delayed-init-variables}.  These are any
127 pre-loaded user options whose default value depends on the run-time,
128 rather than build-time, context.
129 @xref{Building Emacs, custom-initialize-delay}.
131 @c @item
132 @c It registers the colors available for tty frames.
134 @item
135 It loads the library @file{site-start}, if it exists.  This is not
136 done if the options @samp{-Q} or @samp{--no-site-file} were specified.
137 @cindex @file{site-start.el}
139 @item
140 It loads your init file (@pxref{Init File}).  This is not done if the
141 options @samp{-q}, @samp{-Q}, or @samp{--batch} were specified.  If
142 the @samp{-u} option was specified, Emacs looks for the init file in
143 that user's home directory instead.
145 @item
146 It loads the library @file{default}, if it exists.  This is not done
147 if @code{inhibit-default-init} is non-@code{nil}, nor if the options
148 @samp{-q}, @samp{-Q}, or @samp{--batch} were specified.
149 @cindex @file{default.el}
151 @item
152 It loads your abbrevs from the file specified by
153 @code{abbrev-file-name}, if that file exists and can be read
154 (@pxref{Abbrev Files, abbrev-file-name}).  This is not done if the
155 option @samp{--batch} was specified.
157 @item
158 It calls the function @code{package-initialize} to activate any
159 optional Emacs Lisp package that has been installed.  @xref{Packaging
160 Basics}.  However, Emacs doesn't initialize packages when
161 @code{package-enable-at-startup} is @code{nil} or when it's started
162 with one of the options @samp{-q}, @samp{-Q}, or @samp{--batch}.  To
163 initialize packages in the latter case, @code{package-initialize}
164 should be called explicitly (e.g., via the @samp{--funcall} option).
166 @vindex after-init-time
167 @item
168 It sets the variable @code{after-init-time} to the value of
169 @code{current-time}.  This variable was set to @code{nil} earlier;
170 setting it to the current time signals that the initialization phase
171 is over, and, together with @code{before-init-time}, provides the
172 measurement of how long it took.
174 @item
175 It runs the normal hook @code{after-init-hook}.
177 @item
178 If the buffer @file{*scratch*} exists and is still in Fundamental mode
179 (as it should be by default), it sets its major mode according to
180 @code{initial-major-mode}.
182 @item
183 If started on a text terminal, it loads the terminal-specific
184 Lisp library (@pxref{Terminal-Specific}), and runs the hook
185 @code{tty-setup-hook}.  This is not done
186 in @code{--batch} mode, nor if @code{term-file-prefix} is @code{nil}.
188 @c Now command-line calls command-line-1.
190 @item
191 It displays the initial echo area message, unless you have suppressed
192 that with @code{inhibit-startup-echo-area-message}.
194 @item
195 It processes any command-line options that were not handled earlier.
197 @c This next one is back in command-line, but the remaining bits of
198 @c command-line-1 are not done if noninteractive.
199 @item
200 It now exits if the option @code{--batch} was specified.
202 @item
203 If the @file{*scratch*} buffer exists and is empty, it inserts
204 @code{(substitute-command-keys initial-scratch-message)} into that buffer.
206 @item
207 If @code{initial-buffer-choice} is a string, it visits the file (or
208 directory) with that name.  If it is a function, it calls the function
209 with no arguments and selects the buffer that it returns.  If one file
210 is given as a command line argument, that file is visited and its
211 buffer displayed alongside @code{initial-buffer-choice}.  If more than
212 one file is given, all of the files are visited and the @file{*Buffer
213 List*} buffer is displayed alongside @code{initial-buffer-choice}.
215 @ignore
216 @c I do not think this should be mentioned.  AFAICS it is just a dodge
217 @c around inhibit-startup-screen not being settable on a site-wide basis.
218 If it is @code{t}, it selects the @file{*scratch*} buffer.
219 @end ignore
221 @c To make things nice and confusing, the next three items can be
222 @c called from two places.  If displaying a startup screen, they are
223 @c called in command-line-1 before the startup screen is shown.
224 @c inhibit-startup-hooks is then set and window-setup-hook set to nil.
225 @c If not displaying a startup screen, they are are called in
226 @c normal-top-level.
227 @c FIXME?  So it seems they can be called before or after the
228 @c daemon/session restore step?
230 @item
231 It runs @code{emacs-startup-hook}.
233 @item
234 It calls @code{frame-notice-user-settings}, which modifies the
235 parameters of the selected frame according to whatever the init files
236 specify.
238 @item
239 It runs @code{window-setup-hook}.  The only difference between this
240 hook and @code{emacs-startup-hook} is that this one runs after the
241 previously mentioned modifications to the frame parameters.
243 @item
244 @cindex startup screen
245 It displays the @dfn{startup screen}, which is a special buffer that
246 contains information about copyleft and basic Emacs usage.  This is
247 not done if @code{inhibit-startup-screen} or @code{initial-buffer-choice}
248 are non-@code{nil}, or if the @samp{--no-splash} or @samp{-Q} command-line
249 options were specified.
251 @c End of command-line-1.
253 @c Back to command-line from command-line-1.
255 @c This is the point at which we actually exit in batch mode, but the
256 @c last few bits of command-line-1 are not done in batch mode.
258 @item
259 If a daemon was requested, it calls @code{server-start}.
260 (On Posix systems, if a background daemon was requested, it then
261 detaches from the controlling terminal.)  @xref{Emacs
262 Server,,, emacs, The GNU Emacs Manual}.
264 @item
265 If started by the X session manager, it calls
266 @code{emacs-session-restore} passing it as argument the ID of the
267 previous session.  @xref{Session Management}.
269 @c End of command-line.
271 @c Back to normal-top-level from command-line.
273 @end enumerate
275 @noindent
276 The following options affect some aspects of the startup sequence.
278 @defopt inhibit-startup-screen
279 This variable, if non-@code{nil}, inhibits the startup screen.  In
280 that case, Emacs typically displays the @file{*scratch*} buffer; but
281 see @code{initial-buffer-choice}, below.
283 Do not set this variable in the init file of a new user, or in a way
284 that affects more than one user, as that would prevent new users from
285 receiving information about copyleft and basic Emacs usage.
287 @vindex inhibit-startup-message
288 @vindex inhibit-splash-screen
289 @code{inhibit-startup-message} and @code{inhibit-splash-screen} are
290 aliases for this variable.
291 @end defopt
293 @defopt initial-buffer-choice
294 If non-@code{nil}, this variable is a string that specifies a file or
295 directory for Emacs to display after starting up, instead of the
296 startup screen.
297 If its value is a function, Emacs calls that function which must
298 return a buffer which is then displayed.
299 If its value is @code{t}, Emacs displays the @file{*scratch*} buffer.
300 @end defopt
302 @defopt inhibit-startup-echo-area-message
303 This variable controls the display of the startup echo area message.
304 You can suppress the startup echo area message by adding text with this
305 form to your init file:
307 @example
308 (setq inhibit-startup-echo-area-message
309       "@var{your-login-name}")
310 @end example
312 Emacs explicitly checks for an expression as shown above in your init
313 file; your login name must appear in the expression as a Lisp string
314 constant.  You can also use the Customize interface.  Other methods of
315 setting @code{inhibit-startup-echo-area-message} to the same value do
316 not inhibit the startup message.  This way, you can easily inhibit the
317 message for yourself if you wish, but thoughtless copying of your init
318 file will not inhibit the message for someone else.
319 @end defopt
321 @defopt initial-scratch-message
322 This variable, if non-@code{nil}, should be a string, which is
323 treated as documentation to be
324 inserted into the @file{*scratch*} buffer when Emacs starts up.  If it
325 is @code{nil}, the @file{*scratch*} buffer is empty.
326 @end defopt
328 @noindent
329 The following command-line options affect some aspects of the startup
330 sequence.  @xref{Initial Options,,, emacs, The GNU Emacs Manual}.
332 @table @code
333 @item --no-splash
334 Do not display a splash screen.
336 @item --batch
337 Run without an interactive terminal.  @xref{Batch Mode}.
339 @item --daemon
340 @itemx --old-daemon
341 @itemx --new-daemon
342 Do not initialize any display; just start a server.
343 (An ``old-style'' daemon automatically runs in the background.)
345 @item --no-init-file
346 @itemx -q
347 Do not load either the init file, or the @file{default} library.
349 @item --no-site-file
350 Do not load the @file{site-start} library.
352 @item --quick
353 @itemx -Q
354 Equivalent to @samp{-q --no-site-file --no-splash}.
355 @c and --no-site-lisp, but let's not mention that here.
356 @end table
359 @node Init File
360 @subsection The Init File
361 @cindex init file
362 @cindex @file{.emacs}
363 @cindex @file{init.el}
365   When you start Emacs, it normally attempts to load your @dfn{init
366 file}.  This is either a file named @file{.emacs} or @file{.emacs.el}
367 in your home directory, or a file named @file{init.el} in a
368 subdirectory named @file{.emacs.d} in your home directory.
369 @ignore
370 Whichever place you use, you can also compile the file (@pxref{Byte
371 Compilation}); then the actual file loaded will be @file{.emacs.elc}
372 or @file{init.elc}.
373 @end ignore
375   The command-line switches @samp{-q}, @samp{-Q}, and @samp{-u}
376 control whether and where to find the init file; @samp{-q} (and the
377 stronger @samp{-Q}) says not to load an init file, while @samp{-u
378 @var{user}} says to load @var{user}'s init file instead of yours.
379 @xref{Entering Emacs,,, emacs, The GNU Emacs Manual}.  If neither
380 option is specified, Emacs uses the @env{LOGNAME} environment
381 variable, or the @env{USER} (most systems) or @env{USERNAME} (MS
382 systems) variable, to find your home directory and thus your init
383 file; this way, even if you have su'd, Emacs still loads your own init
384 file.  If those environment variables are absent, though, Emacs uses
385 your user-id to find your home directory.
387 @cindex default init file
388   An Emacs installation may have a @dfn{default init file}, which is a
389 Lisp library named @file{default.el}.  Emacs finds this file through
390 the standard search path for libraries (@pxref{How Programs Do
391 Loading}).  The Emacs distribution does not come with this file; it is
392 intended for local customizations.  If the default init file exists,
393 it is loaded whenever you start Emacs.  But your own personal init
394 file, if any, is loaded first; if it sets @code{inhibit-default-init}
395 to a non-@code{nil} value, then Emacs does not subsequently load the
396 @file{default.el} file.  In batch mode, or if you specify @samp{-q}
397 (or @samp{-Q}), Emacs loads neither your personal init file nor
398 the default init file.
400   Another file for site-customization is @file{site-start.el}.  Emacs
401 loads this @emph{before} the user's init file.  You can inhibit the
402 loading of this file with the option @samp{--no-site-file}.
404 @defopt site-run-file
405 This variable specifies the site-customization file to load before the
406 user's init file.  Its normal value is @code{"site-start"}.  The only
407 way you can change it with real effect is to do so before dumping
408 Emacs.
409 @c So why even mention it here.  I imagine it is almost never changed.
410 @end defopt
412   @xref{Init Examples,, Init File Examples, emacs, The GNU Emacs Manual}, for
413 examples of how to make various commonly desired customizations in your
414 @file{.emacs} file.
416 @defopt inhibit-default-init
417 If this variable is non-@code{nil}, it prevents Emacs from loading the
418 default initialization library file.  The default value is @code{nil}.
419 @end defopt
421 @defvar before-init-hook
422 This normal hook is run, once, just before loading all the init files
423 (@file{site-start.el}, your init file, and @file{default.el}).
424 (The only way to change it with real effect is before dumping Emacs.)
425 @end defvar
427 @defvar after-init-hook
428 This normal hook is run, once, just after loading all the init files
429 (@file{site-start.el}, your init file, and @file{default.el}),
430 before loading the terminal-specific library (if started on a text
431 terminal) and processing the command-line action arguments.
432 @end defvar
434 @defvar emacs-startup-hook
435 This normal hook is run, once, just after handling the command line
436 arguments.  In batch mode, Emacs does not run this hook.
437 @end defvar
439 @defvar window-setup-hook
440 This normal hook is very similar to @code{emacs-startup-hook}.
441 The only difference is that it runs slightly later, after setting
442 of the frame parameters.  @xref{Startup Summary, window-setup-hook}.
443 @end defvar
445 @defvar user-init-file
446 This variable holds the absolute file name of the user's init file.  If the
447 actual init file loaded is a compiled file, such as @file{.emacs.elc},
448 the value refers to the corresponding source file.
449 @end defvar
451 @defvar user-emacs-directory
452 This variable holds the name of the @file{.emacs.d} directory.  It is
453 @file{~/.emacs.d} on all platforms but MS-DOS.
454 @end defvar
456 @node Terminal-Specific
457 @subsection Terminal-Specific Initialization
458 @cindex terminal-specific initialization
460   Each terminal type can have its own Lisp library that Emacs loads when
461 run on that type of terminal.  The library's name is constructed by
462 concatenating the value of the variable @code{term-file-prefix} and the
463 terminal type (specified by the environment variable @env{TERM}).
464 Normally, @code{term-file-prefix} has the value @code{"term/"};
465 changing this is not recommended.  If there is an entry matching
466 @env{TERM} in the @code{term-file-aliases} association list,
467 Emacs uses the associated value in place of @env{TERM}.
468 Emacs finds the file in the normal manner, by searching the
469 @code{load-path} directories, and trying the @samp{.elc} and
470 @samp{.el} suffixes.
472 @cindex Termcap
473   The usual role of a terminal-specific library is to enable special
474 keys to send sequences that Emacs can recognize.  It may also need to
475 set or add to @code{input-decode-map} if the Termcap or Terminfo entry
476 does not specify all the terminal's function keys.  @xref{Terminal Input}.
478   When the name of the terminal type contains a hyphen or underscore,
479 and no library is found whose name is identical to the terminal's
480 name, Emacs strips from the terminal's name the last hyphen or
481 underscore and everything that follows
482 it, and tries again.  This process is repeated until Emacs finds a
483 matching library, or until there are no more hyphens or underscores in the name
484 (i.e., there is no terminal-specific library).  For example, if the
485 terminal name is @samp{xterm-256color} and there is no
486 @file{term/xterm-256color.el} library, Emacs tries to load
487 @file{term/xterm.el}.  If necessary, the terminal library can evaluate
488 @code{(getenv "TERM")} to find the full name of the terminal type.
490   Your init file can prevent the loading of the terminal-specific
491 library by setting the variable @code{term-file-prefix} to @code{nil}.
493   You can also arrange to override some of the actions of the
494 terminal-specific library by using @code{tty-setup-hook}.  This is
495 a normal hook that Emacs runs after initializing a new text terminal.
496 You could use this hook to define initializations for terminals that do not
497 have their own libraries.  @xref{Hooks}.
499 @defopt term-file-prefix
500 @cindex @env{TERM} environment variable
501 If the value of this variable is non-@code{nil}, Emacs loads a
502 terminal-specific initialization file as follows:
504 @example
505 (load (concat term-file-prefix (getenv "TERM")))
506 @end example
508 @noindent
509 You may set the @code{term-file-prefix} variable to @code{nil} in your
510 init file if you do not wish to load the
511 terminal-initialization file.
513 On MS-DOS, Emacs sets the @env{TERM} environment variable to @samp{internal}.
514 @end defopt
516 @defopt term-file-aliases
517 This variable is an an association list mapping terminal types to
518 their aliases.  For example, an element of the form @code{("vt102"
519 . "vt100")} means to treat a terminal of type @samp{vt102} like one of
520 type @samp{vt100}.
521 @end defopt
523 @defvar tty-setup-hook
524 This variable is a normal hook that Emacs runs after initializing a
525 new text terminal.  (This applies when Emacs starts up in non-windowed
526 mode, and when making a tty @command{emacsclient} connection.)  The
527 hook runs after loading your init file (if applicable) and the
528 terminal-specific Lisp file, so you can use it to adjust the
529 definitions made by that file.
531 For a related feature, @pxref{Init File, window-setup-hook}.
532 @end defvar
534 @node Command-Line Arguments
535 @subsection Command-Line Arguments
536 @cindex command-line arguments
538   You can use command-line arguments to request various actions when
539 you start Emacs.  Note that the recommended way of using Emacs is to
540 start it just once, after logging in, and then do all editing in the same
541 Emacs session (@pxref{Entering Emacs,,, emacs, The GNU Emacs Manual}).
542 For this reason, you might not use command-line arguments very often;
543 nonetheless, they can be useful when invoking Emacs from session
544 scripts or debugging Emacs.  This section describes how Emacs
545 processes command-line arguments.
547 @defun command-line
548 This function parses the command line that Emacs was called with,
549 processes it, and (amongst other things) loads the user's init file and
550 displays the startup messages.
551 @end defun
553 @defvar command-line-processed
554 The value of this variable is @code{t} once the command line has been
555 processed.
557 If you redump Emacs by calling @code{dump-emacs} (@pxref{Building
558 Emacs}), you may wish to set this variable to @code{nil} first in
559 order to cause the new dumped Emacs to process its new command-line
560 arguments.
561 @end defvar
563 @defvar command-switch-alist
564 @cindex switches on command line
565 @cindex options on command line
566 @cindex command-line options
567 This variable is an alist of user-defined command-line options and
568 associated handler functions.  By default it is empty, but you can
569 add elements if you wish.
571 A @dfn{command-line option} is an argument on the command line, which
572 has the form:
574 @example
575 -@var{option}
576 @end example
578 The elements of the @code{command-switch-alist} look like this:
580 @example
581 (@var{option} . @var{handler-function})
582 @end example
584 The @sc{car}, @var{option}, is a string, the name of a command-line
585 option (not including the initial hyphen).  The @var{handler-function}
586 is called to handle @var{option}, and receives the option name as its
587 sole argument.
589 In some cases, the option is followed in the command line by an
590 argument.  In these cases, the @var{handler-function} can find all the
591 remaining command-line arguments in the variable
592 @code{command-line-args-left} (see below).  (The entire list of
593 command-line arguments is in @code{command-line-args}.)
595 The command-line arguments are parsed by the @code{command-line-1}
596 function in the @file{startup.el} file.  See also @ref{Emacs
597 Invocation, , Command Line Arguments for Emacs Invocation, emacs, The
598 GNU Emacs Manual}.
599 @end defvar
601 @defvar command-line-args
602 The value of this variable is the list of command-line arguments passed
603 to Emacs.
604 @end defvar
606 @defvar command-line-args-left
607 @vindex argv
608 The value of this variable is the list of command-line arguments that
609 have not yet been processed.
610 @c Don't mention this, since it is a "bad name for a dynamically bound variable"
611 @c @code{argv} is an alias for this.
612 @end defvar
614 @defvar command-line-functions
615 This variable's value is a list of functions for handling an
616 unrecognized command-line argument.  Each time the next argument to be
617 processed has no special meaning, the functions in this list are called,
618 in order of appearance, until one of them returns a non-@code{nil}
619 value.
621 These functions are called with no arguments.  They can access the
622 command-line argument under consideration through the variable
623 @code{argi}, which is bound temporarily at this point.  The remaining
624 arguments (not including the current one) are in the variable
625 @code{command-line-args-left}.
627 When a function recognizes and processes the argument in @code{argi}, it
628 should return a non-@code{nil} value to say it has dealt with that
629 argument.  If it has also dealt with some of the following arguments, it
630 can indicate that by deleting them from @code{command-line-args-left}.
632 If all of these functions return @code{nil}, then the argument is treated
633 as a file name to visit.
634 @end defvar
636 @node Getting Out
637 @section Getting Out of Emacs
638 @cindex exiting Emacs
640   There are two ways to get out of Emacs: you can kill the Emacs job,
641 which exits permanently, or you can suspend it, which permits you to
642 reenter the Emacs process later.  (In a graphical environment, you can
643 of course simply switch to another application without doing anything
644 special to Emacs, then switch back to Emacs when you want.)
646 @menu
647 * Killing Emacs::        Exiting Emacs irreversibly.
648 * Suspending Emacs::     Exiting Emacs reversibly.
649 @end menu
651 @node Killing Emacs
652 @subsection Killing Emacs
653 @cindex killing Emacs
655   Killing Emacs means ending the execution of the Emacs process.
656 If you started Emacs from a terminal, the parent process normally
657 resumes control.  The low-level primitive for killing Emacs is
658 @code{kill-emacs}.
660 @deffn Command kill-emacs &optional exit-data
661 This command calls the hook @code{kill-emacs-hook}, then exits the
662 Emacs process and kills it.
664 If @var{exit-data} is an integer, that is used as the exit status of
665 the Emacs process.  (This is useful primarily in batch operation; see
666 @ref{Batch Mode}.)
668 If @var{exit-data} is a string, its contents are stuffed into the
669 terminal input buffer so that the shell (or whatever program next reads
670 input) can read them.
671 @end deffn
673 @cindex SIGTERM
674 @cindex SIGHUP
675 @cindex SIGINT
676 @cindex operating system signal
677   The @code{kill-emacs} function is normally called via the
678 higher-level command @kbd{C-x C-c}
679 (@code{save-buffers-kill-terminal}).  @xref{Exiting,,, emacs, The GNU
680 Emacs Manual}.  It is also called automatically if Emacs receives a
681 @code{SIGTERM} or @code{SIGHUP} operating system signal (e.g., when the
682 controlling terminal is disconnected), or if it receives a
683 @code{SIGINT} signal while running in batch mode (@pxref{Batch Mode}).
685 @defvar kill-emacs-hook
686 This normal hook is run by @code{kill-emacs}, before it kills Emacs.
688 Because @code{kill-emacs} can be called in situations where user
689 interaction is impossible (e.g., when the terminal is disconnected),
690 functions on this hook should not attempt to interact with the user.
691 If you want to interact with the user when Emacs is shutting down, use
692 @code{kill-emacs-query-functions}, described below.
693 @end defvar
695   When Emacs is killed, all the information in the Emacs process,
696 aside from files that have been saved, is lost.  Because killing Emacs
697 inadvertently can lose a lot of work, the
698 @code{save-buffers-kill-terminal} command queries for confirmation if
699 you have buffers that need saving or subprocesses that are running.
700 It also runs the abnormal hook @code{kill-emacs-query-functions}:
702 @defvar kill-emacs-query-functions
703 When @code{save-buffers-kill-terminal} is killing Emacs, it calls the
704 functions in this hook, after asking the standard questions and before
705 calling @code{kill-emacs}.  The functions are called in order of
706 appearance, with no arguments.  Each function can ask for additional
707 confirmation from the user.  If any of them returns @code{nil},
708 @code{save-buffers-kill-emacs} does not kill Emacs, and does not run
709 the remaining functions in this hook.  Calling @code{kill-emacs}
710 directly does not run this hook.
711 @end defvar
713 @node Suspending Emacs
714 @subsection Suspending Emacs
715 @cindex suspending Emacs
717   On text terminals, it is possible to @dfn{suspend Emacs}, which
718 means stopping Emacs temporarily and returning control to its superior
719 process, which is usually the shell.  This allows you to resume
720 editing later in the same Emacs process, with the same buffers, the
721 same kill ring, the same undo history, and so on.  To resume Emacs,
722 use the appropriate command in the parent shell---most likely
723 @code{fg}.
725 @cindex controlling terminal
726   Suspending works only on a terminal device from which the Emacs
727 session was started.  We call that device the @dfn{controlling
728 terminal} of the session.  Suspending is not allowed if the
729 controlling terminal is a graphical terminal.  Suspending is usually
730 not relevant in graphical environments, since you can simply switch to
731 another application without doing anything special to Emacs.
733 @c FIXME?  Are there any systems Emacs still supports that do not
734 @c have SIGTSTP?
735 @cindex SIGTSTP
736   Some operating systems (those without @code{SIGTSTP}, or MS-DOS) do
737 not support suspension of jobs; on these systems, suspension
738 actually creates a new shell temporarily as a subprocess of Emacs.
739 Then you would exit the shell to return to Emacs.
741 @deffn Command suspend-emacs &optional string
742 This function stops Emacs and returns control to the superior process.
743 If and when the superior process resumes Emacs, @code{suspend-emacs}
744 returns @code{nil} to its caller in Lisp.
746 This function works only on the controlling terminal of the Emacs
747 session; to relinquish control of other tty devices, use
748 @code{suspend-tty} (see below).  If the Emacs session uses more than
749 one terminal, you must delete the frames on all the other terminals
750 before suspending Emacs, or this function signals an error.
751 @xref{Multiple Terminals}.
753 If @var{string} is non-@code{nil}, its characters are sent to Emacs's
754 superior shell, to be read as terminal input.
755 @c FIXME?  It seems to me that shell does echo STRING.
756 The characters in @var{string} are not echoed by the superior shell;
757 only the results appear.
759 Before suspending, @code{suspend-emacs} runs the normal hook
760 @code{suspend-hook}.  After the user resumes Emacs,
761 @code{suspend-emacs} runs the normal hook @code{suspend-resume-hook}.
762 @xref{Hooks}.
764 The next redisplay after resumption will redraw the entire screen,
765 unless the variable @code{no-redraw-on-reenter} is non-@code{nil}.
766 @xref{Refresh Screen}.
768 Here is an example of how you could use these hooks:
770 @smallexample
771 @group
772 (add-hook 'suspend-hook
773           (lambda () (or (y-or-n-p "Really suspend? ")
774                          (error "Suspend canceled"))))
775 @end group
776 (add-hook 'suspend-resume-hook (lambda () (message "Resumed!")
777                                  (sit-for 2)))
778 @end smallexample
779 @c The sit-for prevents the @code{nil} that suspend-emacs returns
780 @c hiding the message.
782 Here is what you would see upon evaluating @code{(suspend-emacs "pwd")}:
784 @smallexample
785 @group
786 ---------- Buffer: Minibuffer ----------
787 Really suspend? @kbd{y}
788 ---------- Buffer: Minibuffer ----------
789 @end group
791 @group
792 ---------- Parent Shell ----------
793 bash$ /home/username
794 bash$ fg
795 @end group
797 @group
798 ---------- Echo Area ----------
799 Resumed!
800 @end group
801 @end smallexample
803 @c FIXME?  AFAICS, it is echoed.
804 Note that @samp{pwd} is not echoed after Emacs is suspended.  But it
805 is read and executed by the shell.
806 @end deffn
808 @defvar suspend-hook
809 This variable is a normal hook that Emacs runs before suspending.
810 @end defvar
812 @defvar suspend-resume-hook
813 This variable is a normal hook that Emacs runs on resuming
814 after a suspension.
815 @end defvar
817 @defun suspend-tty &optional tty
818 If @var{tty} specifies a terminal device used by Emacs, this function
819 relinquishes the device and restores it to its prior state.  Frames
820 that used the device continue to exist, but are not updated and Emacs
821 doesn't read input from them.  @var{tty} can be a terminal object, a
822 frame (meaning the terminal for that frame), or @code{nil} (meaning
823 the terminal for the selected frame).  @xref{Multiple Terminals}.
825 If @var{tty} is already suspended, this function does nothing.
827 @vindex suspend-tty-functions
828 This function runs the hook @code{suspend-tty-functions}, passing the
829 terminal object as an argument to each function.
830 @end defun
832 @defun resume-tty &optional tty
833 This function resumes the previously suspended terminal device
834 @var{tty}; where @var{tty} has the same possible values as it does
835 for @code{suspend-tty}.
837 @vindex resume-tty-functions
838 This function reopens the terminal device, re-initializes it, and
839 redraws it with that terminal's selected frame.  It then runs the
840 hook @code{resume-tty-functions}, passing the terminal object as an
841 argument to each function.
843 If the same device is already used by another Emacs terminal, this
844 function signals an error.  If @var{tty} is not suspended, this
845 function does nothing.
846 @end defun
848 @defun controlling-tty-p &optional tty
849 This function returns non-@code{nil} if @var{tty} is the
850 controlling terminal of the Emacs session; @var{tty} can be a
851 terminal object, a frame (meaning the terminal for that frame), or
852 @code{nil} (meaning the terminal for the selected frame).
853 @end defun
855 @deffn Command suspend-frame
856 This command @dfn{suspends} a frame.  For GUI frames, it calls
857 @code{iconify-frame} (@pxref{Visibility of Frames}); for frames on
858 text terminals, it calls either @code{suspend-emacs} or
859 @code{suspend-tty}, depending on whether the frame is displayed on the
860 controlling terminal device or not.
861 @end deffn
863 @node System Environment
864 @section Operating System Environment
865 @cindex operating system environment
867   Emacs provides access to variables in the operating system environment
868 through various functions.  These variables include the name of the
869 system, the user's @acronym{UID}, and so on.
871 @defvar system-configuration
872 This variable holds the standard GNU configuration name for the
873 hardware/software configuration of your system, as a string.  For
874 example, a typical value for a 64-bit GNU/Linux system is
875 @samp{"x86_64-unknown-linux-gnu"}.
876 @end defvar
878 @cindex system type and name
879 @defvar system-type
880 The value of this variable is a symbol indicating the type of operating
881 system Emacs is running on.  The possible values are:
883 @table @code
884 @item aix
885 IBM's AIX.
887 @item berkeley-unix
888 Berkeley BSD and its variants.
890 @item cygwin
891 Cygwin, a Posix layer on top of MS-Windows.
893 @item darwin
894 Darwin (Mac OS X).
896 @item gnu
897 The GNU system (using the GNU kernel, which consists of the HURD and Mach).
899 @item gnu/linux
900 A GNU/Linux system---that is, a variant GNU system, using the Linux
901 kernel.  (These systems are the ones people often call ``Linux'', but
902 actually Linux is just the kernel, not the whole system.)
904 @item gnu/kfreebsd
905 A GNU (glibc-based) system with a FreeBSD kernel.
907 @item hpux
908 Hewlett-Packard HPUX operating system.
910 @item nacl
911 Google Native Client (@acronym{NaCl}) sandboxing system.
913 @item ms-dos
914 Microsoft's DOS@.  Emacs compiled with DJGPP for MS-DOS binds
915 @code{system-type} to @code{ms-dos} even when you run it on MS-Windows.
917 @item usg-unix-v
918 AT&T Unix System V.
920 @item windows-nt
921 Microsoft Windows NT, 9X and later.  The value of @code{system-type}
922 is always @code{windows-nt}, e.g., even on Windows 10.
924 @end table
926 We do not wish to add new symbols to make finer distinctions unless it
927 is absolutely necessary!  In fact, we hope to eliminate some of these
928 alternatives in the future.  If you need to make a finer distinction
929 than @code{system-type} allows for, you can test
930 @code{system-configuration}, e.g., against a regexp.
931 @end defvar
933 @defun system-name
934 This function returns the name of the machine you are running on, as a
935 string.
936 @end defun
938 @c FIXME seems like this section is not the best place for this option?
939 @defopt mail-host-address
940 If this variable is non-@code{nil}, it is used instead of
941 @code{system-name} for purposes of generating email addresses.  For
942 example, it is used when constructing the default value of
943 @code{user-mail-address}.  @xref{User Identification}.  (Since this is
944 done when Emacs starts up, the value actually used is the one saved when
945 Emacs was dumped.  @xref{Building Emacs}.)
946 @c FIXME sounds like should probably give this a :set-after and some
947 @c custom-initialize-delay voodoo.
948 @end defopt
950 @deffn Command getenv var &optional frame
951 @cindex environment variable access
952 This function returns the value of the environment variable @var{var},
953 as a string.  @var{var} should be a string.  If @var{var} is undefined
954 in the environment, @code{getenv} returns @code{nil}.  It returns
955 @samp{""} if @var{var} is set but null.  Within Emacs, a list of environment
956 variables and their values is kept in the variable @code{process-environment}.
958 @example
959 @group
960 (getenv "USER")
961      @result{} "lewis"
962 @end group
963 @end example
965 The shell command @code{printenv} prints all or part of the environment:
967 @example
968 @group
969 bash$ printenv
970 PATH=/usr/local/bin:/usr/bin:/bin
971 USER=lewis
972 @end group
973 @group
974 TERM=xterm
975 SHELL=/bin/bash
976 HOME=/home/lewis
977 @end group
978 @dots{}
979 @end example
980 @end deffn
982 @deffn Command setenv variable &optional value substitute
983 This command sets the value of the environment variable named
984 @var{variable} to @var{value}.  @var{variable} should be a string.
985 Internally, Emacs Lisp can handle any string.  However, normally
986 @var{variable} should be a valid shell identifier, that is, a sequence
987 of letters, digits and underscores, starting with a letter or
988 underscore.  Otherwise, errors may occur if subprocesses of Emacs try
989 to access the value of @var{variable}.  If @var{value} is omitted or
990 @code{nil} (or, interactively, with a prefix argument), @code{setenv}
991 removes @var{variable} from the environment.  Otherwise, @var{value}
992 should be a string.
994 @c FIXME: Document 'substitute-env-vars'?  --xfq
995 If the optional argument @var{substitute} is non-@code{nil}, Emacs
996 calls the function @code{substitute-env-vars} to expand any
997 environment variables in @var{value}.
999 @code{setenv} works by modifying @code{process-environment}; binding
1000 that variable with @code{let} is also reasonable practice.
1002 @code{setenv} returns the new value of @var{variable}, or @code{nil}
1003 if it removed @var{variable} from the environment.
1004 @end deffn
1006 @defvar process-environment
1007 This variable is a list of strings, each describing one environment
1008 variable.  The functions @code{getenv} and @code{setenv} work by means
1009 of this variable.
1011 @smallexample
1012 @group
1013 process-environment
1014 @result{} ("PATH=/usr/local/bin:/usr/bin:/bin"
1015     "USER=lewis"
1016 @end group
1017 @group
1018     "TERM=xterm"
1019     "SHELL=/bin/bash"
1020     "HOME=/home/lewis"
1021     @dots{})
1022 @end group
1023 @end smallexample
1025 If @code{process-environment} contains multiple elements that
1026 specify the same environment variable, the first of these elements
1027 specifies the variable, and the others are ignored.
1028 @end defvar
1030 @defvar initial-environment
1031 This variable holds the list of environment variables Emacs inherited
1032 from its parent process when Emacs started.
1033 @end defvar
1035 @defvar path-separator
1036 This variable holds a string that says which character separates
1037 directories in a search path (as found in an environment variable).  Its
1038 value is @code{":"} for Unix and GNU systems, and @code{";"} for MS systems.
1039 @end defvar
1041 @defun parse-colon-path path
1042 This function takes a search path string such as the value of
1043 the @env{PATH} environment variable, and splits it at the separators,
1044 returning a list of directory names.  @code{nil} in this list means
1045 the current directory.  Although the function's name says
1046 ``colon'', it actually uses the value of @code{path-separator}.
1048 @example
1049 (parse-colon-path ":/foo:/bar")
1050      @result{} (nil "/foo/" "/bar/")
1051 @end example
1052 @end defun
1054 @defvar invocation-name
1055 This variable holds the program name under which Emacs was invoked.  The
1056 value is a string, and does not include a directory name.
1057 @end defvar
1059 @defvar invocation-directory
1060 This variable holds the directory from which the Emacs executable was
1061 invoked, or @code{nil} if that directory cannot be determined.
1062 @end defvar
1064 @defvar installation-directory
1065 If non-@code{nil}, this is a directory within which to look for the
1066 @file{lib-src} and @file{etc} subdirectories.  In an installed Emacs,
1067 it is normally @code{nil}.  It is non-@code{nil}
1068 when Emacs can't find those directories in their standard installed
1069 locations, but can find them in a directory related somehow to the one
1070 containing the Emacs executable (i.e., @code{invocation-directory}).
1071 @end defvar
1073 @defun load-average &optional use-float
1074 This function returns the current 1-minute, 5-minute, and 15-minute
1075 system load averages, in a list.  The load average indicates the
1076 number of processes trying to run on the system.
1078 By default, the values are integers that are 100 times the system load
1079 averages, but if @var{use-float} is non-@code{nil}, then they are
1080 returned as floating-point numbers without multiplying by 100.
1082 If it is impossible to obtain the load average, this function signals
1083 an error.  On some platforms, access to load averages requires
1084 installing Emacs as setuid or setgid so that it can read kernel
1085 information, and that usually isn't advisable.
1086 @c FIXME which platforms are these?  Are they still relevant?
1088 If the 1-minute load average is available, but the 5- or 15-minute
1089 averages are not, this function returns a shortened list containing
1090 the available averages.
1092 @example
1093 @group
1094 (load-average)
1095      @result{} (169 48 36)
1096 @end group
1097 @group
1098 (load-average t)
1099      @result{} (1.69 0.48 0.36)
1100 @end group
1101 @end example
1103 The shell command @code{uptime} returns similar information.
1104 @end defun
1106 @defun emacs-pid
1107 This function returns the process @acronym{ID} of the Emacs process,
1108 as an integer.
1109 @end defun
1111 @defvar tty-erase-char
1112 This variable holds the erase character that was selected
1113 in the system's terminal driver, before Emacs was started.
1114 @c FIXME?  Seems untrue since 23.1.  For me, it is 0.
1115 @c The value is @code{nil} if Emacs is running under a window system.
1116 @end defvar
1118 @node User Identification
1119 @section User Identification
1120 @cindex user identification
1122 @defvar init-file-user
1123 This variable says which user's init files should be used by
1124 Emacs---or @code{nil} if none.  @code{""} stands for the user who
1125 originally logged in.  The value reflects command-line options such as
1126 @samp{-q} or @samp{-u @var{user}}.
1128 Lisp packages that load files of customizations, or any other sort of
1129 user profile, should obey this variable in deciding where to find it.
1130 They should load the profile of the user name found in this variable.
1131 If @code{init-file-user} is @code{nil}, meaning that the @samp{-q},
1132 @samp{-Q}, or @samp{-batch} option was used, then Lisp packages should
1133 not load any customization files or user profile.
1134 @end defvar
1136 @defopt user-mail-address
1137 This holds the nominal email address of the user who is using Emacs.
1138 Emacs normally sets this variable to a default value after reading your
1139 init files, but not if you have already set it.  So you can set the
1140 variable to some other value in your init file if you do not
1141 want to use the default value.
1142 @end defopt
1144 @defun user-login-name &optional uid
1145 This function returns the name under which the user is logged in.
1146 It uses the environment variables @env{LOGNAME} or @env{USER} if
1147 either is set.  Otherwise, the value is based on the effective
1148 @acronym{UID}, not the real @acronym{UID}.
1150 If you specify @var{uid} (a number), the result is the user name that
1151 corresponds to @var{uid}, or @code{nil} if there is no such user.
1152 @end defun
1154 @defun user-real-login-name
1155 This function returns the user name corresponding to Emacs's real
1156 @acronym{UID}.  This ignores the effective @acronym{UID}, and the
1157 environment variables @env{LOGNAME} and @env{USER}.
1158 @end defun
1160 @defun user-full-name &optional uid
1161 This function returns the full name of the logged-in user---or the value
1162 of the environment variable @env{NAME}, if that is set.
1164 If the Emacs process's user-id does not correspond to any known user (and
1165 provided @code{NAME} is not set), the result is @code{"unknown"}.
1167 If @var{uid} is non-@code{nil}, then it should be a number (a user-id)
1168 or a string (a login name).  Then @code{user-full-name} returns the full
1169 name corresponding to that user-id or login name.  If you specify a
1170 user-id or login name that isn't defined, it returns @code{nil}.
1171 @end defun
1173 @vindex user-full-name
1174 @vindex user-real-login-name
1175 @vindex user-login-name
1176   The symbols @code{user-login-name}, @code{user-real-login-name} and
1177 @code{user-full-name} are variables as well as functions.  The functions
1178 return the same values that the variables hold.  These variables allow
1179 you to fake out Emacs by telling the functions what to return.  The
1180 variables are also useful for constructing frame titles (@pxref{Frame
1181 Titles}).
1183 @cindex UID
1184 @defun user-real-uid
1185 This function returns the real @acronym{UID} of the user.
1186 The value may be floating point, in the (unlikely) event that
1187 the UID is too large to fit in a Lisp integer.
1188 @end defun
1190 @defun user-uid
1191 This function returns the effective @acronym{UID} of the user.
1192 The value may be floating point.
1193 @end defun
1195 @cindex GID
1196 @defun group-gid
1197 This function returns the effective @acronym{GID} of the Emacs process.
1198 The value may be floating point.
1199 @end defun
1201 @defun group-real-gid
1202 This function returns the real @acronym{GID} of the Emacs process.
1203 The value may be floating point.
1204 @end defun
1206 @defun system-users
1207 This function returns a list of strings, listing the user names on the
1208 system.  If Emacs cannot retrieve this information, the return value
1209 is a list containing just the value of @code{user-real-login-name}.
1210 @end defun
1212 @cindex user groups
1213 @defun system-groups
1214 This function returns a list of strings, listing the names of user
1215 groups on the system.  If Emacs cannot retrieve this information, the
1216 return value is @code{nil}.
1217 @end defun
1220 @node Time of Day
1221 @section Time of Day
1222 @cindex time of day
1224   This section explains how to determine the current time and time
1225 zone.
1227 @cindex epoch
1228   Most of these functions represent time as a list of four integers
1229 @code{(@var{sec-high} @var{sec-low} @var{microsec} @var{picosec})}.
1230 This represents the number of seconds from the @dfn{epoch} (January
1231 1, 1970 at 00:00 UTC), using the formula:
1232 @ifnottex
1233 @var{high} * 2**16 + @var{low} + @var{micro} * 10**@minus{}6 +
1234 @var{pico} * 10**@minus{}12.
1235 @end ifnottex
1236 @tex
1237 $high*2^{16} + low + micro*10^{-6} + pico*10^{-12}$.
1238 @end tex
1239 The return value of @code{current-time} represents time using this
1240 form, as do the timestamps in the return values of other functions
1241 such as @code{file-attributes} (@pxref{Definition of
1242 file-attributes}).  In some cases, functions may return two- or
1243 three-element lists, with omitted @var{microsec} and @var{picosec}
1244 components defaulting to zero.
1246 @cindex time value
1247   Function arguments, e.g., the @var{time} argument to
1248 @code{current-time-string}, accept a more-general @dfn{time value}
1249 format, which can be a list of integers as above, or a single number
1250 for seconds since the epoch, or @code{nil} for the current time.  You
1251 can convert a time value into a human-readable string using
1252 @code{current-time-string} and @code{format-time-string}, into a list
1253 of integers using @code{seconds-to-time}, and into other forms using
1254 @code{decode-time} and @code{float-time}.  These functions are
1255 described in the following sections.
1257 @defun current-time-string &optional time zone
1258 This function returns the current time and date as a human-readable
1259 string.  The format does not vary for the initial part of the string,
1260 which contains the day of week, month, day of month, and time of day
1261 in that order: the number of characters used for these fields is
1262 always the same, so you can reliably
1263 use @code{substring} to extract them.  You should count
1264 characters from the beginning of the string rather than from the end,
1265 as the year might not have exactly four digits, and additional
1266 information may some day be added at the end.
1268 The argument @var{time}, if given, specifies a time to format,
1269 instead of the current time.  The optional argument @var{zone}
1270 defaults to the current time zone rule.  @xref{Time Zone Rules}.
1272 @example
1273 @group
1274 (current-time-string)
1275      @result{} "Wed Oct 14 22:21:05 1987"
1276 @end group
1277 @end example
1278 @end defun
1280 @defun current-time
1281 This function returns the current time, represented as a list of four
1282 integers @code{(@var{sec-high} @var{sec-low} @var{microsec} @var{picosec})}.
1283 These integers have trailing zeros on systems that return time with
1284 lower resolutions.  On all current machines @var{picosec} is a
1285 multiple of 1000, but this may change as higher-resolution clocks
1286 become available.
1287 @end defun
1289 @defun float-time &optional time
1290 This function returns the current time as a floating-point number of
1291 seconds since the epoch.  The optional argument @var{time}, if
1292 given, specifies a time to convert instead of the current time.
1294 @emph{Warning}: Since the result is floating point, it may not be
1295 exact.  Do not use this function if precise time stamps are required.
1297 @code{time-to-seconds} is an alias for this function.
1298 @end defun
1300 @defun seconds-to-time time
1301 This function converts a time value to list-of-integer form.
1302 For example, if @var{time} is a number, @code{(time-to-seconds
1303 (seconds-to-time @var{time}))} equals the number unless overflow
1304 or rounding errors occur.
1305 @end defun
1307 @node Time Zone Rules
1308 @section Time Zone Rules
1309 @cindex time zone rules
1311 @vindex TZ, environment variable
1312 The default time zone is determined by the @env{TZ} environment
1313 variable.  @xref{System Environment}.  For example, you can tell Emacs
1314 to default to Universal Time with @code{(setenv "TZ" "UTC0")}.  If
1315 @env{TZ} is not in the environment, Emacs uses system wall clock time,
1316 which is a platform-dependent default time zone.
1318 The set of supported @env{TZ} strings is system-dependent.  GNU and
1319 many other systems support the tzdata database, e.g.,
1320 @samp{"America/New_York"} specifies the time zone and daylight saving
1321 time history for locations near New York City.  GNU and most other
1322 systems support POSIX-style @env{TZ} strings, e.g.,
1323 @samp{"EST+5EDT,M4.1.0/2,M10.5.0/2"} specifies the rules used in New
1324 York from 1987 through 2006.  All systems support the string
1325 @samp{"UTC0"} meaning Universal Time.
1327 @cindex time zone rule
1328 Functions that convert to and from local time accept an optional
1329 @dfn{time zone rule} argument, which specifies the conversion's time
1330 zone and daylight saving time history.  If the time zone rule is
1331 omitted or @code{nil}, the conversion uses Emacs's default time zone.
1332 If it is @code{t}, the conversion uses Universal Time.  If it is
1333 @code{wall}, the conversion uses the system wall clock time.  If it is
1334 a string, the conversion uses the time zone rule equivalent to setting
1335 @env{TZ} to that string.  If it is an integer @var{offset}, the
1336 conversion uses a fixed time zone with the given offset and a numeric
1337 abbreviation on POSIX-compatible platforms and an unspecified abbreviation
1338 on MS-Windows.  If it is a list (@var{offset} @var{abbr}), where
1339 @var{offset} is an integer number of seconds east of Universal Time
1340 and @var{abbr} is a string, the conversion uses a fixed time zone with
1341 the given offset and abbreviation.
1343 @defun current-time-zone &optional time zone
1344 @cindex time zone, current
1345 This function returns a list describing the time zone that the user is
1348 The value has the form @code{(@var{offset} @var{abbr})}.  Here
1349 @var{offset} is an integer giving the number of seconds ahead of Universal Time
1350 (east of Greenwich).  A negative value means west of Greenwich.  The
1351 second element, @var{abbr}, is a string giving an abbreviation for the
1352 time zone, e.g., @samp{"CST"} for China Standard Time or for
1353 U.S. Central Standard Time.  Both elements can change when daylight
1354 saving time begins or ends; if the user has specified a time zone that
1355 does not use a seasonal time adjustment, then the value is constant
1356 through time.
1358 If the operating system doesn't supply all the information necessary to
1359 compute the value, the unknown elements of the list are @code{nil}.
1361 The argument @var{time}, if given, specifies a time value to
1362 analyze instead of the current time.  The optional argument @var{zone}
1363 defaults to the current time zone rule.
1364 @end defun
1366 @node Time Conversion
1367 @section Time Conversion
1368 @cindex calendrical information
1369 @cindex time conversion
1371   These functions convert time values (@pxref{Time of Day}) into
1372 calendrical information and vice versa.
1374   Many 32-bit operating systems are limited to system times containing
1375 32 bits of information in their seconds component; these systems
1376 typically handle only the times from 1901-12-13 20:45:52 through
1377 2038-01-19 03:14:07 Universal Time.  However, 64-bit and some 32-bit operating
1378 systems have larger seconds components, and can represent times far in
1379 the past or future.
1381   Time conversion functions always use the Gregorian calendar, even
1382 for dates before the Gregorian calendar was introduced.  Year numbers
1383 count the number of years since the year 1 B.C., and do not skip zero
1384 as traditional Gregorian years do; for example, the year number
1385 @minus{}37 represents the Gregorian year 38 B.C@.
1387 @defun decode-time &optional time zone
1388 This function converts a time value into calendrical information.  If
1389 you don't specify @var{time}, it decodes the current time, and similarly
1390 @var{zone} defaults to the current time zone rule.  @xref{Time Zone Rules}.
1391 The return value is a list of nine elements, as follows:
1393 @example
1394 (@var{seconds} @var{minutes} @var{hour} @var{day} @var{month} @var{year} @var{dow} @var{dst} @var{utcoff})
1395 @end example
1397 Here is what the elements mean:
1399 @table @var
1400 @item seconds
1401 The number of seconds past the minute, as an integer between 0 and 59.
1402 On some operating systems, this is 60 for leap seconds.
1403 @item minutes
1404 The number of minutes past the hour, as an integer between 0 and 59.
1405 @item hour
1406 The hour of the day, as an integer between 0 and 23.
1407 @item day
1408 The day of the month, as an integer between 1 and 31.
1409 @item month
1410 The month of the year, as an integer between 1 and 12.
1411 @item year
1412 The year, an integer typically greater than 1900.
1413 @item dow
1414 The day of week, as an integer between 0 and 6, where 0 stands for
1415 Sunday.
1416 @item dst
1417 @code{t} if daylight saving time is effect, otherwise @code{nil}.
1418 @item utcoff
1419 An integer indicating the Universal Time offset in seconds, i.e., the number of
1420 seconds east of Greenwich.
1421 @end table
1423 @strong{Common Lisp Note:} Common Lisp has different meanings for
1424 @var{dow} and @var{utcoff}.
1425 @end defun
1427 @defun encode-time seconds minutes hour day month year &optional zone
1428 This function is the inverse of @code{decode-time}.  It converts seven
1429 items of calendrical data into a list-of-integer time value.  For the
1430 meanings of the arguments, see the table above under
1431 @code{decode-time}.
1433 Year numbers less than 100 are not treated specially.  If you want them
1434 to stand for years above 1900, or years above 2000, you must alter them
1435 yourself before you call @code{encode-time}.
1437 The optional argument @var{zone} defaults to the current time zone rule.
1438 @xref{Time Zone Rules}.
1440 If you pass more than seven arguments to @code{encode-time}, the first
1441 six are used as @var{seconds} through @var{year}, the last argument is
1442 used as @var{zone}, and the arguments in between are ignored.  This
1443 feature makes it possible to use the elements of a list returned by
1444 @code{decode-time} as the arguments to @code{encode-time}, like this:
1446 @example
1447 (apply 'encode-time (decode-time @dots{}))
1448 @end example
1450 You can perform simple date arithmetic by using out-of-range values for
1451 the @var{seconds}, @var{minutes}, @var{hour}, @var{day}, and @var{month}
1452 arguments; for example, day 0 means the day preceding the given month.
1454 The operating system puts limits on the range of possible time values;
1455 if you try to encode a time that is out of range, an error results.
1456 For instance, years before 1970 do not work on some systems;
1457 on others, years as early as 1901 do work.
1458 @end defun
1460 @node Time Parsing
1461 @section Parsing and Formatting Times
1462 @cindex time parsing
1463 @cindex time formatting
1464 @cindex formatting time values
1466   These functions convert time values to text in a string, and vice versa.
1467 Time values are lists of two to four integers (@pxref{Time of Day}).
1469 @defun date-to-time string
1470 This function parses the time-string @var{string} and returns the
1471 corresponding time value.
1472 @end defun
1474 @defun format-time-string format-string &optional time zone
1476 This function converts @var{time} (or the current time, if
1477 @var{time} is omitted) to a string according to
1478 @var{format-string}.  The conversion uses the time zone rule @var{zone}, which
1479 defaults to the current time zone rule.  @xref{Time Zone Rules}.  The argument
1480 @var{format-string} may contain @samp{%}-sequences which say to
1481 substitute parts of the time.  Here is a table of what the
1482 @samp{%}-sequences mean:
1484 @table @samp
1485 @item %a
1486 This stands for the abbreviated name of the day of week.
1487 @item %A
1488 This stands for the full name of the day of week.
1489 @item %b
1490 This stands for the abbreviated name of the month.
1491 @item %B
1492 This stands for the full name of the month.
1493 @item %c
1494 This is a synonym for @samp{%x %X}.
1495 @item %C
1496 This has a locale-specific meaning.  In the default locale (named C), it
1497 is equivalent to @samp{%A, %B %e, %Y}.
1498 @item %d
1499 This stands for the day of month, zero-padded.
1500 @item %D
1501 This is a synonym for @samp{%m/%d/%y}.
1502 @item %e
1503 This stands for the day of month, blank-padded.
1504 @item %h
1505 This is a synonym for @samp{%b}.
1506 @item %H
1507 This stands for the hour (00--23).
1508 @item %I
1509 This stands for the hour (01--12).
1510 @item %j
1511 This stands for the day of the year (001--366).
1512 @item %k
1513 This stands for the hour (0--23), blank padded.
1514 @item %l
1515 This stands for the hour (1--12), blank padded.
1516 @item %m
1517 This stands for the month (01--12).
1518 @item %M
1519 This stands for the minute (00--59).
1520 @item %n
1521 This stands for a newline.
1522 @item %N
1523 This stands for the nanoseconds (000000000--999999999).  To ask for
1524 fewer digits, use @samp{%3N} for milliseconds, @samp{%6N} for
1525 microseconds, etc.  Any excess digits are discarded, without rounding.
1526 @item %p
1527 This stands for @samp{AM} or @samp{PM}, as appropriate.
1528 @item %r
1529 This is a synonym for @samp{%I:%M:%S %p}.
1530 @item %R
1531 This is a synonym for @samp{%H:%M}.
1532 @item %S
1533 This stands for the seconds (00--59).
1534 @item %t
1535 This stands for a tab character.
1536 @item %T
1537 This is a synonym for @samp{%H:%M:%S}.
1538 @item %U
1539 This stands for the week of the year (01--52), assuming that weeks
1540 start on Sunday.
1541 @item %w
1542 This stands for the numeric day of week (0--6).  Sunday is day 0.
1543 @item %W
1544 This stands for the week of the year (01--52), assuming that weeks
1545 start on Monday.
1546 @item %x
1547 This has a locale-specific meaning.  In the default locale (named
1548 @samp{C}), it is equivalent to @samp{%D}.
1549 @item %X
1550 This has a locale-specific meaning.  In the default locale (named
1551 @samp{C}), it is equivalent to @samp{%T}.
1552 @item %y
1553 This stands for the year without century (00--99).
1554 @item %Y
1555 This stands for the year with century.
1556 @item %Z
1557 This stands for the time zone abbreviation (e.g., @samp{EST}).
1558 @item %z
1559 This stands for the time zone numerical offset (e.g., @samp{-0500}).
1560 @end table
1562 You can also specify the field width and type of padding for any of
1563 these @samp{%}-sequences.  This works as in @code{printf}: you write
1564 the field width as digits in the middle of a @samp{%}-sequences.  If you
1565 start the field width with @samp{0}, it means to pad with zeros.  If you
1566 start the field width with @samp{_}, it means to pad with spaces.
1568 For example, @samp{%S} specifies the number of seconds since the minute;
1569 @samp{%03S} means to pad this with zeros to 3 positions, @samp{%_3S} to
1570 pad with spaces to 3 positions.  Plain @samp{%3S} pads with zeros,
1571 because that is how @samp{%S} normally pads to two positions.
1573 The characters @samp{E} and @samp{O} act as modifiers when used between
1574 @samp{%} and one of the letters in the table above.  @samp{E} specifies
1575 using the current locale's alternative version of the date and time.
1576 In a Japanese locale, for example, @code{%Ex} might yield a date format
1577 based on the Japanese Emperors' reigns.  @samp{E} is allowed in
1578 @samp{%Ec}, @samp{%EC}, @samp{%Ex}, @samp{%EX}, @samp{%Ey}, and
1579 @samp{%EY}.
1581 @samp{O} means to use the current locale's alternative
1582 representation of numbers, instead of the ordinary decimal digits.  This
1583 is allowed with most letters, all the ones that output numbers.
1585 This function uses the C library function @code{strftime}
1586 (@pxref{Formatting Calendar Time,,, libc, The GNU C Library Reference
1587 Manual}) to do most of the work.  In order to communicate with that
1588 function, it first encodes its argument using the coding system
1589 specified by @code{locale-coding-system} (@pxref{Locales}); after
1590 @code{strftime} returns the resulting string,
1591 @code{format-time-string} decodes the string using that same coding
1592 system.
1593 @end defun
1595 @defun format-seconds format-string seconds
1596 This function converts its argument @var{seconds} into a string of
1597 years, days, hours, etc., according to @var{format-string}.  The
1598 argument @var{format-string} may contain @samp{%}-sequences which
1599 control the conversion.  Here is a table of what the
1600 @samp{%}-sequences mean:
1602 @table @samp
1603 @item %y
1604 @itemx %Y
1605 The integer number of 365-day years.
1606 @item %d
1607 @itemx %D
1608 The integer number of days.
1609 @item %h
1610 @itemx %H
1611 The integer number of hours.
1612 @item %m
1613 @itemx %M
1614 The integer number of minutes.
1615 @item %s
1616 @itemx %S
1617 The integer number of seconds.
1618 @item %z
1619 Non-printing control flag.  When it is used, other specifiers must be
1620 given in the order of decreasing size, i.e., years before days, hours
1621 before minutes, etc.  Nothing will be produced in the result string to
1622 the left of @samp{%z} until the first non-zero conversion is
1623 encountered.  For example, the default format used by
1624 @code{emacs-uptime} (@pxref{Processor Run Time, emacs-uptime})
1625 @w{@code{"%Y, %D, %H, %M, %z%S"}} means that the number of seconds
1626 will always be produced, but years, days, hours, and minutes will only
1627 be shown if they are non-zero.
1628 @item %%
1629 Produces a literal @samp{%}.
1630 @end table
1632 Upper-case format sequences produce the units in addition to the
1633 numbers, lower-case formats produce only the numbers.
1635 You can also specify the field width by following the @samp{%} with a
1636 number; shorter numbers will be padded with blanks.  An optional
1637 period before the width requests zero-padding instead.  For example,
1638 @code{"%.3Y"} might produce @code{"004 years"}.
1640 @emph{Warning:} This function works only with values of @var{seconds}
1641 that don't exceed @code{most-positive-fixnum} (@pxref{Integer Basics,
1642 most-positive-fixnum}).
1643 @end defun
1645 @node Processor Run Time
1646 @section Processor Run time
1647 @cindex processor run time
1648 @cindex Emacs process run time
1650   Emacs provides several functions and primitives that return time,
1651 both elapsed and processor time, used by the Emacs process.
1653 @deffn Command emacs-uptime &optional format
1654 @cindex uptime of Emacs
1655 This function returns a string representing the Emacs
1656 @dfn{uptime}---the elapsed wall-clock time this instance of Emacs is
1657 running.  The string is formatted by @code{format-seconds} according
1658 to the optional argument @var{format}.  For the available format
1659 descriptors, see @ref{Time Parsing, format-seconds}.  If @var{format}
1660 is @code{nil} or omitted, it defaults to @code{"%Y, %D, %H, %M,
1661 %z%S"}.
1663 When called interactively, it prints the uptime in the echo area.
1664 @end deffn
1666 @defun get-internal-run-time
1667 This function returns the processor run time used by Emacs as a list
1668 of four integers: @code{(@var{sec-high} @var{sec-low} @var{microsec}
1669 @var{picosec})}, using the same format as @code{current-time}
1670 (@pxref{Time of Day}).
1672 Note that the time returned by this function excludes the time Emacs
1673 was not using the processor, and if the Emacs process has several
1674 threads, the returned value is the sum of the processor times used up
1675 by all Emacs threads.
1677 If the system doesn't provide a way to determine the processor run
1678 time, @code{get-internal-run-time} returns the same time as
1679 @code{current-time}.
1680 @end defun
1682 @deffn Command emacs-init-time
1683 This function returns the duration of the Emacs initialization
1684 (@pxref{Startup Summary}) in seconds, as a string.  When called
1685 interactively, it prints the duration in the echo area.
1686 @end deffn
1688 @node Time Calculations
1689 @section Time Calculations
1690 @cindex time calculations
1691 @cindex comparing time values
1692 @cindex calendrical computations
1694   These functions perform calendrical computations using time values
1695 (@pxref{Time of Day}).
1697 @defun time-less-p t1 t2
1698 This returns @code{t} if time value @var{t1} is less than time value
1699 @var{t2}.
1700 @end defun
1702 @defun time-subtract t1 t2
1703 This returns the time difference @var{t1} @minus{} @var{t2} between
1704 two time values, as a time value.
1705 @end defun
1707 @defun time-add t1 t2
1708 This returns the sum of two time values, as a time value.
1709 One argument should represent a time difference rather than a point in time.
1710 Here is how to add a number of seconds to a time value:
1712 @example
1713 (time-add @var{time} @var{seconds})
1714 @end example
1715 @end defun
1717 @defun time-to-days time-value
1718 This function returns the number of days between the beginning of year
1719 1 and @var{time-value}.
1720 @end defun
1722 @defun time-to-day-in-year time-value
1723 This returns the day number within the year corresponding to @var{time-value}.
1724 @end defun
1726 @defun date-leap-year-p year
1727 This function returns @code{t} if @var{year} is a leap year.
1728 @end defun
1730 @node Timers
1731 @section Timers for Delayed Execution
1732 @cindex timers
1734   You can set up a @dfn{timer} to call a function at a specified
1735 future time or after a certain length of idleness.  A timer is a
1736 special object that stores the information about the next invocation
1737 times and the function to invoke.
1739 @defun timerp object
1740 This predicate function returns non-@code{nil} of @code{object} is a
1741 timer.
1742 @end defun
1744   Emacs cannot run timers at any arbitrary point in a Lisp program; it
1745 can run them only when Emacs could accept output from a subprocess:
1746 namely, while waiting or inside certain primitive functions such as
1747 @code{sit-for} or @code{read-event} which @emph{can} wait.  Therefore, a
1748 timer's execution may be delayed if Emacs is busy.  However, the time of
1749 execution is very precise if Emacs is idle.
1751   Emacs binds @code{inhibit-quit} to @code{t} before calling the timer
1752 function, because quitting out of many timer functions can leave
1753 things in an inconsistent state.  This is normally unproblematical
1754 because most timer functions don't do a lot of work.  Indeed, for a
1755 timer to call a function that takes substantial time to run is likely
1756 to be annoying.  If a timer function needs to allow quitting, it
1757 should use @code{with-local-quit} (@pxref{Quitting}).  For example, if
1758 a timer function calls @code{accept-process-output} to receive output
1759 from an external process, that call should be wrapped inside
1760 @code{with-local-quit}, to ensure that @kbd{C-g} works if the external
1761 process hangs.
1763   It is usually a bad idea for timer functions to alter buffer
1764 contents.  When they do, they usually should call @code{undo-boundary}
1765 both before and after changing the buffer, to separate the timer's
1766 changes from user commands' changes and prevent a single undo entry
1767 from growing to be quite large.
1769   Timer functions should also avoid calling functions that cause Emacs
1770 to wait, such as @code{sit-for} (@pxref{Waiting}).  This can lead to
1771 unpredictable effects, since other timers (or even the same timer) can
1772 run while waiting.  If a timer function needs to perform an action
1773 after a certain time has elapsed, it can do this by scheduling a new
1774 timer.
1776   If a timer function calls functions that can change the match data,
1777 it should save and restore the match data.  @xref{Saving Match Data}.
1779 @deffn Command run-at-time time repeat function &rest args
1780 This sets up a timer that calls the function @var{function} with
1781 arguments @var{args} at time @var{time}.  If @var{repeat} is a number
1782 (integer or floating point), the timer is scheduled to run again every
1783 @var{repeat} seconds after @var{time}.  If @var{repeat} is @code{nil},
1784 the timer runs only once.
1786 @var{time} may specify an absolute or a relative time.
1788 Absolute times may be specified using a string with a limited variety
1789 of formats, and are taken to be times @emph{today}, even if already in
1790 the past.  The recognized forms are @samp{@var{xxxx}},
1791 @samp{@var{x}:@var{xx}}, or @samp{@var{xx}:@var{xx}} (military time),
1792 and @samp{@var{xx}am}, @samp{@var{xx}AM}, @samp{@var{xx}pm},
1793 @samp{@var{xx}PM}, @samp{@var{xx}:@var{xx}am},
1794 @samp{@var{xx}:@var{xx}AM}, @samp{@var{xx}:@var{xx}pm}, or
1795 @samp{@var{xx}:@var{xx}PM}.  A period can be used instead of a colon
1796 to separate the hour and minute parts.
1798 To specify a relative time as a string, use numbers followed by units.
1799 For example:
1801 @table @samp
1802 @item 1 min
1803 denotes 1 minute from now.
1804 @item 1 min 5 sec
1805 denotes 65 seconds from now.
1806 @item 1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year
1807 denotes exactly 103 months, 123 days, and 10862 seconds from now.
1808 @end table
1810 For relative time values, Emacs considers a month to be exactly thirty
1811 days, and a year to be exactly 365.25 days.
1813 Not all convenient formats are strings.  If @var{time} is a number
1814 (integer or floating point), that specifies a relative time measured in
1815 seconds.  The result of @code{encode-time} can also be used to specify
1816 an absolute value for @var{time}.
1818 In most cases, @var{repeat} has no effect on when @emph{first} call
1819 takes place---@var{time} alone specifies that.  There is one exception:
1820 if @var{time} is @code{t}, then the timer runs whenever the time is a
1821 multiple of @var{repeat} seconds after the epoch.  This is useful for
1822 functions like @code{display-time}.
1824 The function @code{run-at-time} returns a timer value that identifies
1825 the particular scheduled future action.  You can use this value to call
1826 @code{cancel-timer} (see below).
1827 @end deffn
1829   A repeating timer nominally ought to run every @var{repeat} seconds,
1830 but remember that any invocation of a timer can be late.  Lateness of
1831 one repetition has no effect on the scheduled time of the next
1832 repetition.  For instance, if Emacs is busy computing for long enough
1833 to cover three scheduled repetitions of the timer, and then starts to
1834 wait, it will immediately call the timer function three times in
1835 immediate succession (presuming no other timers trigger before or
1836 between them).  If you want a timer to run again no less than @var{n}
1837 seconds after the last invocation, don't use the @var{repeat} argument.
1838 Instead, the timer function should explicitly reschedule the timer.
1840 @defopt timer-max-repeats
1841 This variable's value specifies the maximum number of times to repeat
1842 calling a timer function in a row, when many previously scheduled
1843 calls were unavoidably delayed.
1844 @end defopt
1846 @defmac with-timeout (seconds timeout-forms@dots{}) body@dots{}
1847 Execute @var{body}, but give up after @var{seconds} seconds.  If
1848 @var{body} finishes before the time is up, @code{with-timeout} returns
1849 the value of the last form in @var{body}.  If, however, the execution of
1850 @var{body} is cut short by the timeout, then @code{with-timeout}
1851 executes all the @var{timeout-forms} and returns the value of the last
1852 of them.
1854 This macro works by setting a timer to run after @var{seconds} seconds.  If
1855 @var{body} finishes before that time, it cancels the timer.  If the
1856 timer actually runs, it terminates execution of @var{body}, then
1857 executes @var{timeout-forms}.
1859 Since timers can run within a Lisp program only when the program calls a
1860 primitive that can wait, @code{with-timeout} cannot stop executing
1861 @var{body} while it is in the midst of a computation---only when it
1862 calls one of those primitives.  So use @code{with-timeout} only with a
1863 @var{body} that waits for input, not one that does a long computation.
1864 @end defmac
1866   The function @code{y-or-n-p-with-timeout} provides a simple way to use
1867 a timer to avoid waiting too long for an answer.  @xref{Yes-or-No
1868 Queries}.
1870 @defun cancel-timer timer
1871 This cancels the requested action for @var{timer}, which should be a
1872 timer---usually, one previously returned by @code{run-at-time} or
1873 @code{run-with-idle-timer}.  This cancels the effect of that call to
1874 one of these functions; the arrival of the specified time will not
1875 cause anything special to happen.
1876 @end defun
1878 @findex timer-list
1879 The @code{timer-list} command lists all the currently active timers.
1880 There's only one command available in the buffer displayed: @kbd{c}
1881 (@code{timer-list-cancel}) that will cancel the timer on the line
1882 under point.
1884 @node Idle Timers
1885 @section Idle Timers
1886 @cindex idle timers
1888   Here is how to set up a timer that runs when Emacs is idle for a
1889 certain length of time.  Aside from how to set them up, idle timers
1890 work just like ordinary timers.
1892 @deffn Command run-with-idle-timer secs repeat function &rest args
1893 Set up a timer which runs the next time Emacs is idle for @var{secs}
1894 seconds.  The value of @var{secs} may be a number or a value of the type
1895 returned by @code{current-idle-time}.
1897 If @var{repeat} is @code{nil}, the timer runs just once, the first time
1898 Emacs remains idle for a long enough time.  More often @var{repeat} is
1899 non-@code{nil}, which means to run the timer @emph{each time} Emacs
1900 remains idle for @var{secs} seconds.
1902 The function @code{run-with-idle-timer} returns a timer value which you
1903 can use in calling @code{cancel-timer} (@pxref{Timers}).
1904 @end deffn
1906 @cindex idleness
1907   Emacs becomes @dfn{idle} when it starts waiting for user input, and
1908 it remains idle until the user provides some input.  If a timer is set
1909 for five seconds of idleness, it runs approximately five seconds after
1910 Emacs first becomes idle.  Even if @var{repeat} is non-@code{nil},
1911 this timer will not run again as long as Emacs remains idle, because
1912 the duration of idleness will continue to increase and will not go
1913 down to five seconds again.
1915   Emacs can do various things while idle: garbage collect, autosave or
1916 handle data from a subprocess.  But these interludes during idleness do
1917 not interfere with idle timers, because they do not reset the clock of
1918 idleness to zero.  An idle timer set for 600 seconds will run when ten
1919 minutes have elapsed since the last user command was finished, even if
1920 subprocess output has been accepted thousands of times within those ten
1921 minutes, and even if there have been garbage collections and autosaves.
1923   When the user supplies input, Emacs becomes non-idle while executing the
1924 input.  Then it becomes idle again, and all the idle timers that are
1925 set up to repeat will subsequently run another time, one by one.
1927   Do not write an idle timer function containing a loop which does a
1928 certain amount of processing each time around, and exits when
1929 @code{(input-pending-p)} is non-@code{nil}.  This approach seems very
1930 natural but has two problems:
1932 @itemize
1933 @item
1934 It blocks out all process output (since Emacs accepts process output
1935 only while waiting).
1937 @item
1938 It blocks out any idle timers that ought to run during that time.
1939 @end itemize
1941 @noindent
1942 Similarly, do not write an idle timer function that sets up another
1943 idle timer (including the same idle timer) with @var{secs} argument
1944 less than or equal to the current idleness time.  Such a timer will
1945 run almost immediately, and continue running again and again, instead
1946 of waiting for the next time Emacs becomes idle.  The correct approach
1947 is to reschedule with an appropriate increment of the current value of
1948 the idleness time, as described below.
1950 @defun current-idle-time
1951 If Emacs is idle, this function returns the length of time Emacs has
1952 been idle, as a list of four integers: @code{(@var{sec-high}
1953 @var{sec-low} @var{microsec} @var{picosec})}, using the same format as
1954 @code{current-time} (@pxref{Time of Day}).
1956 When Emacs is not idle, @code{current-idle-time} returns @code{nil}.
1957 This is a convenient way to test whether Emacs is idle.
1958 @end defun
1960   The main use of @code{current-idle-time} is when an idle timer
1961 function wants to ``take a break'' for a while.  It can set up another
1962 idle timer to call the same function again, after a few seconds more
1963 idleness.  Here's an example:
1965 @example
1966 (defvar my-resume-timer nil
1967   "Timer for `my-timer-function' to reschedule itself, or nil.")
1969 (defun my-timer-function ()
1970   ;; @r{If the user types a command while @code{my-resume-timer}}
1971   ;; @r{is active, the next time this function is called from}
1972   ;; @r{its main idle timer, deactivate @code{my-resume-timer}.}
1973   (when my-resume-timer
1974     (cancel-timer my-resume-timer))
1975   ...@var{do the work for a while}...
1976   (when @var{taking-a-break}
1977     (setq my-resume-timer
1978           (run-with-idle-timer
1979             ;; Compute an idle time @var{break-length}
1980             ;; more than the current value.
1981             (time-add (current-idle-time) @var{break-length})
1982             nil
1983             'my-timer-function))))
1984 @end example
1986 @node Terminal Input
1987 @section Terminal Input
1988 @cindex terminal input
1990   This section describes functions and variables for recording or
1991 manipulating terminal input.  See @ref{Display}, for related
1992 functions.
1994 @menu
1995 * Input Modes::         Options for how input is processed.
1996 * Recording Input::     Saving histories of recent or all input events.
1997 @end menu
1999 @node Input Modes
2000 @subsection Input Modes
2001 @cindex input modes
2002 @cindex terminal input modes
2004 @defun set-input-mode interrupt flow meta &optional quit-char
2005 This function sets the mode for reading keyboard input.  If
2006 @var{interrupt} is non-@code{nil}, then Emacs uses input interrupts.
2007 If it is @code{nil}, then it uses @sc{cbreak} mode.  The default
2008 setting is system-dependent.  Some systems always use @sc{cbreak} mode
2009 regardless of what is specified.
2011 When Emacs communicates directly with X, it ignores this argument and
2012 uses interrupts if that is the way it knows how to communicate.
2014 If @var{flow} is non-@code{nil}, then Emacs uses @sc{xon/xoff}
2015 (@kbd{C-q}, @kbd{C-s}) flow control for output to the terminal.  This
2016 has no effect except in @sc{cbreak} mode.
2018 The argument @var{meta} controls support for input character codes
2019 above 127.  If @var{meta} is @code{t}, Emacs converts characters with
2020 the 8th bit set into Meta characters.  If @var{meta} is @code{nil},
2021 Emacs disregards the 8th bit; this is necessary when the terminal uses
2022 it as a parity bit.  If @var{meta} is neither @code{t} nor @code{nil},
2023 Emacs uses all 8 bits of input unchanged.  This is good for terminals
2024 that use 8-bit character sets.
2026 If @var{quit-char} is non-@code{nil}, it specifies the character to
2027 use for quitting.  Normally this character is @kbd{C-g}.
2028 @xref{Quitting}.
2029 @end defun
2031 The @code{current-input-mode} function returns the input mode settings
2032 Emacs is currently using.
2034 @defun current-input-mode
2035 This function returns the current mode for reading keyboard input.  It
2036 returns a list, corresponding to the arguments of @code{set-input-mode},
2037 of the form @code{(@var{interrupt} @var{flow} @var{meta} @var{quit})} in
2038 which:
2039 @table @var
2040 @item interrupt
2041 is non-@code{nil} when Emacs is using interrupt-driven input.  If
2042 @code{nil}, Emacs is using @sc{cbreak} mode.
2043 @item flow
2044 is non-@code{nil} if Emacs uses @sc{xon/xoff} (@kbd{C-q}, @kbd{C-s})
2045 flow control for output to the terminal.  This value is meaningful only
2046 when @var{interrupt} is @code{nil}.
2047 @item meta
2048 is @code{t} if Emacs treats the eighth bit of input characters as
2049 the meta bit; @code{nil} means Emacs clears the eighth bit of every
2050 input character; any other value means Emacs uses all eight bits as the
2051 basic character code.
2052 @item quit
2053 is the character Emacs currently uses for quitting, usually @kbd{C-g}.
2054 @end table
2055 @end defun
2057 @node Recording Input
2058 @subsection Recording Input
2059 @cindex recording input
2061 @defun recent-keys
2062 This function returns a vector containing the last 300 input events from
2063 the keyboard or mouse.  All input events are included, whether or not
2064 they were used as parts of key sequences.  Thus, you always get the last
2065 300 input events, not counting events generated by keyboard macros.
2066 (These are excluded because they are less interesting for debugging; it
2067 should be enough to see the events that invoked the macros.)
2069 A call to @code{clear-this-command-keys} (@pxref{Command Loop Info})
2070 causes this function to return an empty vector immediately afterward.
2071 @end defun
2073 @deffn Command open-dribble-file filename
2074 @cindex dribble file
2075 This function opens a @dfn{dribble file} named @var{filename}.  When a
2076 dribble file is open, each input event from the keyboard or mouse (but
2077 not those from keyboard macros) is written in that file.  A
2078 non-character event is expressed using its printed representation
2079 surrounded by @samp{<@dots{}>}.  Be aware that sensitive information
2080 (such as passwords) may end up recorded in the dribble file.
2082 You close the dribble file by calling this function with an argument
2083 of @code{nil}.
2084 @end deffn
2086   See also the @code{open-termscript} function (@pxref{Terminal Output}).
2088 @node Terminal Output
2089 @section Terminal Output
2090 @cindex terminal output
2092   The terminal output functions send output to a text terminal, or keep
2093 track of output sent to the terminal.  The variable @code{baud-rate}
2094 tells you what Emacs thinks is the output speed of the terminal.
2096 @defopt baud-rate
2097 This variable's value is the output speed of the terminal, as far as
2098 Emacs knows.  Setting this variable does not change the speed of actual
2099 data transmission, but the value is used for calculations such as
2100 padding.
2102   It also affects decisions about whether to scroll part of the
2103 screen or repaint on text terminals.  @xref{Forcing Redisplay},
2104 for the corresponding functionality on graphical terminals.
2106 The value is measured in baud.
2107 @end defopt
2109   If you are running across a network, and different parts of the
2110 network work at different baud rates, the value returned by Emacs may be
2111 different from the value used by your local terminal.  Some network
2112 protocols communicate the local terminal speed to the remote machine, so
2113 that Emacs and other programs can get the proper value, but others do
2114 not.  If Emacs has the wrong value, it makes decisions that are less
2115 than optimal.  To fix the problem, set @code{baud-rate}.
2117 @defun send-string-to-terminal string &optional terminal
2118 This function sends @var{string} to @var{terminal} without alteration.
2119 Control characters in @var{string} have terminal-dependent effects.
2120 (If you need to display non-ASCII text on the terminal, encode it
2121 using one of the functions described in @ref{Explicit Encoding}.)
2122 This function operates only on text terminals.  @var{terminal} may be
2123 a terminal object, a frame, or @code{nil} for the selected frame's
2124 terminal.  In batch mode, @var{string} is sent to @code{stdout} when
2125 @var{terminal} is @code{nil}.
2127 One use of this function is to define function keys on terminals that
2128 have downloadable function key definitions.  For example, this is how (on
2129 certain terminals) to define function key 4 to move forward four
2130 characters (by transmitting the characters @kbd{C-u C-f} to the
2131 computer):
2133 @example
2134 @group
2135 (send-string-to-terminal "\eF4\^U\^F")
2136      @result{} nil
2137 @end group
2138 @end example
2139 @end defun
2141 @deffn Command open-termscript filename
2142 @cindex termscript file
2143 This function is used to open a @dfn{termscript file} that will record
2144 all the characters sent by Emacs to the terminal.  It returns
2145 @code{nil}.  Termscript files are useful for investigating problems
2146 where Emacs garbles the screen, problems that are due to incorrect
2147 Termcap entries or to undesirable settings of terminal options more
2148 often than to actual Emacs bugs.  Once you are certain which characters
2149 were actually output, you can determine reliably whether they correspond
2150 to the Termcap specifications in use.
2152 @example
2153 @group
2154 (open-termscript "../junk/termscript")
2155      @result{} nil
2156 @end group
2157 @end example
2159 You close the termscript file by calling this function with an
2160 argument of @code{nil}.
2162 See also @code{open-dribble-file} in @ref{Recording Input}.
2163 @end deffn
2165 @node Sound Output
2166 @section Sound Output
2167 @cindex sound
2169   To play sound using Emacs, use the function @code{play-sound}.  Only
2170 certain systems are supported; if you call @code{play-sound} on a
2171 system which cannot really do the job, it gives an error.
2173 @c FIXME: Add indexes for Au and WAV?  --xfq
2174   The sound must be stored as a file in RIFF-WAVE format (@samp{.wav})
2175 or Sun Audio format (@samp{.au}).
2177 @defun play-sound sound
2178 This function plays a specified sound.  The argument, @var{sound}, has
2179 the form @code{(sound @var{properties}...)}, where the @var{properties}
2180 consist of alternating keywords (particular symbols recognized
2181 specially) and values corresponding to them.
2183 Here is a table of the keywords that are currently meaningful in
2184 @var{sound}, and their meanings:
2186 @table @code
2187 @item :file @var{file}
2188 This specifies the file containing the sound to play.
2189 If the file name is not absolute, it is expanded against
2190 the directory @code{data-directory}.
2192 @item :data @var{data}
2193 This specifies the sound to play without need to refer to a file.  The
2194 value, @var{data}, should be a string containing the same bytes as a
2195 sound file.  We recommend using a unibyte string.
2197 @item :volume @var{volume}
2198 This specifies how loud to play the sound.  It should be a number in the
2199 range of 0 to 1.  The default is to use whatever volume has been
2200 specified before.
2202 @item :device @var{device}
2203 This specifies the system device on which to play the sound, as a
2204 string.  The default device is system-dependent.
2205 @end table
2207 Before actually playing the sound, @code{play-sound}
2208 calls the functions in the list @code{play-sound-functions}.
2209 Each function is called with one argument, @var{sound}.
2210 @end defun
2212 @deffn Command play-sound-file file &optional volume device
2213 This function is an alternative interface to playing a sound @var{file}
2214 specifying an optional @var{volume} and @var{device}.
2215 @end deffn
2217 @defvar play-sound-functions
2218 A list of functions to be called before playing a sound.  Each function
2219 is called with one argument, a property list that describes the sound.
2220 @end defvar
2222 @node X11 Keysyms
2223 @section Operating on X11 Keysyms
2224 @cindex X11 keysyms
2226 To define system-specific X11 keysyms, set the variable
2227 @code{system-key-alist}.
2229 @defvar system-key-alist
2230 This variable's value should be an alist with one element for each
2231 system-specific keysym.  Each element has the form @code{(@var{code}
2232 . @var{symbol})}, where @var{code} is the numeric keysym code (not
2233 including the vendor-specific bit,
2234 @ifnottex
2235 @minus{}2**28),
2236 @end ifnottex
2237 @tex
2238 $-2^{28}$),
2239 @end tex
2240 and @var{symbol} is the name for the function key.
2242 For example @code{(168 . mute-acute)} defines a system-specific key (used
2243 by HP X servers) whose numeric code is
2244 @ifnottex
2245 @minus{}2**28
2246 @end ifnottex
2247 @tex
2248 $-2^{28}$
2249 @end tex
2250 + 168.
2252 It is not crucial to exclude from the alist the keysyms of other X
2253 servers; those do no harm, as long as they don't conflict with the ones
2254 used by the X server actually in use.
2256 The variable is always local to the current terminal, and cannot be
2257 buffer-local.  @xref{Multiple Terminals}.
2258 @end defvar
2260 You can specify which keysyms Emacs should use for the Control, Meta,
2261 Alt, Hyper, and Super modifiers by setting these variables:
2263 @defvar x-ctrl-keysym
2264 @defvarx x-alt-keysym
2265 @defvarx x-meta-keysym
2266 @defvarx x-hyper-keysym
2267 @defvarx x-super-keysym
2268 The name of the keysym that should stand for the Control modifier
2269 (respectively, for Alt, Meta, Hyper, and Super).  For example, here is
2270 how to swap the Meta and Alt modifiers within Emacs:
2271 @lisp
2272 (setq x-alt-keysym 'meta)
2273 (setq x-meta-keysym 'alt)
2274 @end lisp
2275 @end defvar
2277 @node Batch Mode
2278 @section Batch Mode
2279 @cindex batch mode
2281   The command-line option @samp{-batch} causes Emacs to run
2282 noninteractively.  In this mode, Emacs does not read commands from the
2283 terminal, it does not alter the terminal modes, and it does not expect
2284 to be outputting to an erasable screen.  The idea is that you specify
2285 Lisp programs to run; when they are finished, Emacs should exit.  The
2286 way to specify the programs to run is with @samp{-l @var{file}}, which
2287 loads the library named @var{file}, or @samp{-f @var{function}}, which
2288 calls @var{function} with no arguments, or @samp{--eval @var{form}}.
2290   Any Lisp program output that would normally go to the echo area,
2291 either using @code{message}, or using @code{prin1}, etc., with
2292 @code{t} as the stream, goes instead to Emacs's standard descriptors
2293 when in batch mode: @code{message} writes to the standard error
2294 descriptor, while @code{prin1} and other print functions write to the
2295 standard output.  Similarly, input that would normally come from the
2296 minibuffer is read from the standard input descriptor.  Thus, Emacs
2297 behaves much like a noninteractive application program.  (The echo
2298 area output that Emacs itself normally generates, such as command
2299 echoing, is suppressed entirely.)
2301 Non-ASCII text written to the standard output or error descriptors is
2302 by default encoded using @code{locale-coding-system} (@pxref{Locales})
2303 if it is non-@code{nil}; this can be overridden by binding
2304 @code{coding-system-for-write} to a coding system of you choice
2305 (@pxref{Explicit Encoding}).
2307 @defvar noninteractive
2308 This variable is non-@code{nil} when Emacs is running in batch mode.
2309 @end defvar
2311 @node Session Management
2312 @section Session Management
2313 @cindex session manager
2315 Emacs supports the X Session Management Protocol, which is used to
2316 suspend and restart applications.  In the X Window System, a program
2317 called the @dfn{session manager} is responsible for keeping track of
2318 the applications that are running.  When the X server shuts down, the
2319 session manager asks applications to save their state, and delays the
2320 actual shutdown until they respond.  An application can also cancel
2321 the shutdown.
2323 When the session manager restarts a suspended session, it directs
2324 these applications to individually reload their saved state.  It does
2325 this by specifying a special command-line argument that says what
2326 saved session to restore.  For Emacs, this argument is @samp{--smid
2327 @var{session}}.
2329 @defvar emacs-save-session-functions
2330 @cindex session file
2331 Emacs supports saving state via a hook called
2332 @code{emacs-save-session-functions}.  Emacs runs this hook when the
2333 session manager tells it that the window system is shutting down.  The
2334 functions are called with no arguments, and with the current buffer
2335 set to a temporary buffer.  Each function can use @code{insert} to add
2336 Lisp code to this buffer.  At the end, Emacs saves the buffer in a
2337 file, called the @dfn{session file}.
2339 @findex emacs-session-restore
2340 Subsequently, when the session manager restarts Emacs, it loads the
2341 session file automatically (@pxref{Loading}).  This is performed by a
2342 function named @code{emacs-session-restore}, which is called during
2343 startup.  @xref{Startup Summary}.
2345 If a function in @code{emacs-save-session-functions} returns
2346 non-@code{nil}, Emacs tells the session manager to cancel the
2347 shutdown.
2348 @end defvar
2350 Here is an example that just inserts some text into @file{*scratch*} when
2351 Emacs is restarted by the session manager.
2353 @example
2354 @group
2355 (add-hook 'emacs-save-session-functions 'save-yourself-test)
2356 @end group
2358 @group
2359 (defun save-yourself-test ()
2360   (insert "(save-current-buffer
2361   (switch-to-buffer \"*scratch*\")
2362   (insert \"I am restored\"))")
2363   nil)
2364 @end group
2365 @end example
2367 @node Desktop Notifications
2368 @section Desktop Notifications
2369 @cindex desktop notifications
2370 @cindex notifications, on desktop
2372 Emacs is able to send @dfn{notifications} on systems that support the
2373 freedesktop.org Desktop Notifications Specification and on MS-Windows.
2374 In order to use this functionality on Posix hosts, Emacs must have
2375 been compiled with D-Bus support, and the @code{notifications} library
2376 must be loaded.  @xref{Top, , D-Bus,dbus,D-Bus integration in Emacs}.
2377 The following function is supported when D-Bus support is available:
2379 @defun notifications-notify &rest params
2380 This function sends a notification to the desktop via D-Bus,
2381 consisting of the parameters specified by the @var{params} arguments.
2382 These arguments should consist of alternating keyword and value pairs.
2383 The supported keywords and values are as follows:
2385 @table @code
2386 @item :bus @var{bus}
2387 The D-Bus bus.  This argument is needed only if a bus other than
2388 @code{:session} shall be used.
2390 @item :title @var{title}
2391 The notification title.
2393 @item :body @var{text}
2394 The notification body text.  Depending on the implementation of the
2395 notification server, the text could contain HTML markups, like
2396 @samp{"<b>bold text</b>"}, hyperlinks, or images.  Special HTML
2397 characters must be encoded, as @samp{"Contact
2398 &lt;postmaster@@localhost&gt;!"}.
2400 @item :app-name @var{name}
2401 The name of the application sending the notification.  The default is
2402 @code{notifications-application-name}.
2404 @item :replaces-id @var{id}
2405 The notification @var{id} that this notification replaces.  @var{id}
2406 must be the result of a previous @code{notifications-notify} call.
2408 @item :app-icon @var{icon-file}
2409 The file name of the notification icon.  If set to @code{nil}, no icon
2410 is displayed.  The default is @code{notifications-application-icon}.
2412 @item :actions (@var{key} @var{title} @var{key} @var{title} ...)
2413 A list of actions to be applied.  @var{key} and @var{title} are both
2414 strings.  The default action (usually invoked by clicking the
2415 notification) should have a key named @samp{"default"}.  The title can
2416 be anything, though implementations are free not to display it.
2418 @item :timeout @var{timeout}
2419 The timeout time in milliseconds since the display of the notification
2420 at which the notification should automatically close.  If @minus{}1, the
2421 notification's expiration time is dependent on the notification
2422 server's settings, and may vary for the type of notification.  If 0,
2423 the notification never expires.  Default value is @minus{}1.
2425 @item :urgency @var{urgency}
2426 The urgency level.  It can be @code{low}, @code{normal}, or @code{critical}.
2428 @item :action-items
2429 When this keyword is given, the @var{title} string of the actions is
2430 interpreted as icon name.
2432 @item :category @var{category}
2433 The type of notification this is, a string.  See the
2434 @uref{http://developer.gnome.org/notification-spec/#categories,
2435 Desktop Notifications Specification} for a list of standard
2436 categories.
2438 @item :desktop-entry @var{filename}
2439 This specifies the name of the desktop filename representing the
2440 calling program, like @samp{"emacs"}.
2442 @item :image-data (@var{width} @var{height} @var{rowstride} @var{has-alpha} @var{bits} @var{channels} @var{data})
2443 This is a raw data image format that describes the width, height,
2444 rowstride, whether there is an alpha channel, bits per sample,
2445 channels and image data, respectively.
2447 @item :image-path @var{path}
2448 This is represented either as a URI (@samp{file://} is the only URI
2449 schema supported right now) or a name in a freedesktop.org-compliant
2450 icon theme from @samp{$XDG_DATA_DIRS/icons}.
2452 @item :sound-file @var{filename}
2453 The path to a sound file to play when the notification pops up.
2455 @item :sound-name @var{name}
2456 A themable named sound from the freedesktop.org sound naming
2457 specification from @samp{$XDG_DATA_DIRS/sounds}, to play when the
2458 notification pops up.  Similar to the icon name, only for sounds.  An
2459 example would be @samp{"message-new-instant"}.
2461 @item :suppress-sound
2462 Causes the server to suppress playing any sounds, if it has that
2463 ability.
2465 @item :resident
2466 When set the server will not automatically remove the notification
2467 when an action has been invoked.  The notification will remain resident
2468 in the server until it is explicitly removed by the user or by the
2469 sender.  This hint is likely only useful when the server has the
2470 @code{:persistence} capability.
2472 @item :transient
2473 When set the server will treat the notification as transient and
2474 by-pass the server's persistence capability, if it should exist.
2476 @item :x @var{position}
2477 @itemx :y @var{position}
2478 Specifies the X, Y location on the screen that the
2479 notification should point to.  Both arguments must be used together.
2481 @item :on-action @var{function}
2482 Function to call when an action is invoked.  The notification @var{id}
2483 and the @var{key} of the action are passed as arguments to the
2484 function.
2486 @item :on-close @var{function}
2487 Function to call when the notification has been closed by timeout or
2488 by the user.  The function receive the notification @var{id} and the closing
2489 @var{reason} as arguments:
2491 @itemize
2492 @item @code{expired} if the notification has expired
2493 @item @code{dismissed} if the notification was dismissed by the user
2494 @item @code{close-notification} if the notification was closed by a call to
2495 @code{notifications-close-notification}
2496 @item @code{undefined} if the notification server hasn't provided a reason
2497 @end itemize
2498 @end table
2500 Which parameters are accepted by the notification server can be
2501 checked via @code{notifications-get-capabilities}.
2503 This function returns a notification id, an integer, which can be used
2504 to manipulate the notification item with
2505 @code{notifications-close-notification} or the @code{:replaces-id}
2506 argument of another @code{notifications-notify} call.  For example:
2508 @example
2509 @group
2510 (defun my-on-action-function (id key)
2511   (message "Message %d, key \"%s\" pressed" id key))
2512      @result{} my-on-action-function
2513 @end group
2515 @group
2516 (defun my-on-close-function (id reason)
2517   (message "Message %d, closed due to \"%s\"" id reason))
2518      @result{} my-on-close-function
2519 @end group
2521 @group
2522 (notifications-notify
2523  :title "Title"
2524  :body "This is <b>important</b>."
2525  :actions '("Confirm" "I agree" "Refuse" "I disagree")
2526  :on-action 'my-on-action-function
2527  :on-close 'my-on-close-function)
2528      @result{} 22
2529 @end group
2531 @group
2532 A message window opens on the desktop.  Press ``I agree''.
2533      @result{} Message 22, key "Confirm" pressed
2534         Message 22, closed due to "dismissed"
2535 @end group
2536 @end example
2537 @end defun
2539 @defun notifications-close-notification id &optional bus
2540 This function closes a notification with identifier @var{id}.
2541 @var{bus} can be a string denoting a D-Bus connection, the default is
2542 @code{:session}.
2543 @end defun
2545 @defun notifications-get-capabilities &optional bus
2546 Returns the capabilities of the notification server, a list of
2547 symbols.  @var{bus} can be a string denoting a D-Bus connection, the
2548 default is @code{:session}.  The following capabilities can be
2549 expected:
2551 @table @code
2552 @item :actions
2553 The server will provide the specified actions to the user.
2555 @item :body
2556 Supports body text.
2558 @item :body-hyperlinks
2559 The server supports hyperlinks in the notifications.
2561 @item :body-images
2562 The server supports images in the notifications.
2564 @item :body-markup
2565 Supports markup in the body text.
2567 @item :icon-multi
2568 The server will render an animation of all the frames in a given image
2569 array.
2571 @item :icon-static
2572 Supports display of exactly 1 frame of any given image array.  This
2573 value is mutually exclusive with @code{:icon-multi}.
2575 @item :persistence
2576 The server supports persistence of notifications.
2578 @item :sound
2579 The server supports sounds on notifications.
2580 @end table
2582 Further vendor-specific caps start with @code{:x-vendor}, like
2583 @code{:x-gnome-foo-cap}.
2584 @end defun
2586 @defun notifications-get-server-information &optional bus
2587 Return information on the notification server, a list of strings.
2588 @var{bus} can be a string denoting a D-Bus connection, the default is
2589 @code{:session}.  The returned list is @code{(@var{name} @var{vendor}
2590 @var{version} @var{spec-version})}.
2592 @table @var
2593 @item name
2594 The product name of the server.
2596 @item vendor
2597 The vendor name.  For example, @samp{"KDE"}, @samp{"GNOME"}.
2599 @item version
2600 The server's version number.
2602 @item spec-version
2603 The specification version the server is compliant with.
2604 @end table
2606 If @var{spec_version} is @code{nil}, the server supports a
2607 specification prior to @samp{"1.0"}.
2608 @end defun
2610 @cindex tray notifications, MS-Windows
2611 When Emacs runs on MS-Windows as a GUI session, it supports a small
2612 subset of the D-Bus notifications functionality via a native
2613 primitive:
2615 @defun w32-notification-notify &rest params
2616 This function displays an MS-Windows tray notification as specified by
2617 @var{params}.  MS-Windows tray notifications are displayed in a
2618 balloon from an icon in the notification area of the taskbar.
2620 Value is the integer unique ID of the notification that can be used to
2621 remove the notification using @code{w32-notification-close}, described
2622 below.  If the function fails, the return value is @code{nil}.
2624 The arguments @var{params} are specified as keyword/value pairs.  All the
2625 parameters are optional, but if no parameters are specified, the
2626 function will do nothing and return @code{nil}.
2628 The following parameters are supported:
2630 @table @code
2631 @item :icon @var{icon}
2632 Display @var{icon} in the system tray.  If @var{icon} is a string, it
2633 should specify a file name from which to load the icon; the specified
2634 file should be a @file{.ico} Windows icon file.  If @var{icon} is not
2635 a string, or if this parameter is not specified, the standard Emacs
2636 icon will be used.
2638 @item :tip @var{tip}
2639 Use @var{tip} as the tooltip for the notification.  If @var{tip} is a
2640 string, this is the text of a tooltip that will be shown when the
2641 mouse pointer hovers over the tray icon added by the notification.  If
2642 @var{tip} is not a string, or if this parameter is not specified, the
2643 default tooltip text is @samp{Emacs notification}.  The tooltip text can
2644 be up to 127 characters long (63 on Windows versions before W2K).
2645 Longer strings will be truncated.
2647 @item :level @var{level}
2648 Notification severity level, one of @code{info}, @code{warning}, or
2649 @code{error}.  If given, the value determines the icon displayed to the
2650 left of the notification title, but only if the @code{:title} parameter
2651 (see below) is also specified and is a string.
2653 @item :title @var{title}
2654 The title of the notification.  If @var{title} is a string, it is
2655 displayed in a larger font immediately above the body text.  The title
2656 text can be up to 63 characters long; longer text will be truncated.
2658 @item :body @var{body}
2659 The body of the notification.  If @var{body} is a string, it specifies
2660 the text of the notification message.  Use embedded newlines to
2661 control how the text is broken into lines.  The body text can be up to
2662 255 characters long, and will be truncated if it's longer.  Unlike
2663 with D-Bus, the body text should be plain text, with no markup.
2664 @end table
2666 Note that versions of Windows before W2K support only @code{:icon} and
2667 @code{:tip}.  The other parameters can be passed, but they will be
2668 ignored on those old systems.
2670 There can be at most one active notification at any given time.  An
2671 active notification must be removed by calling
2672 @code{w32-notification-close} before a new one can be shown.
2673 @end defun
2675 To remove the notification and its icon from the taskbar, use the
2676 following function:
2678 @defun w32-notification-close id
2679 This function removes the tray notification given by its unique
2680 @var{id}.
2681 @end defun
2683 @node File Notifications
2684 @section Notifications on File Changes
2685 @cindex file notifications
2686 @cindex watch, for filesystem events
2688 Several operating systems support watching of filesystems for changes
2689 of files.  If configured properly, Emacs links a respective library
2690 like @file{inotify}, @file{kqueue}, @file{gfilenotify}, or
2691 @file{w32notify} statically.  These libraries enable watching of
2692 filesystems on the local machine.
2694 It is also possible to watch filesystems on remote machines,
2695 @pxref{Remote Files,, Remote Files, emacs, The GNU Emacs Manual}
2696 This does not depend on one of the libraries linked to Emacs.
2698 Since all these libraries emit different events on notified file
2699 changes, there is the Emacs library @code{filenotify} which provides a
2700 unique interface.
2702 @defun file-notify-add-watch file flags callback
2703 Add a watch for filesystem events pertaining to @var{file}.  This
2704 arranges for filesystem events pertaining to @var{file} to be reported
2705 to Emacs.
2707 The returned value is a descriptor for the added watch.  Its type
2708 depends on the underlying library, it cannot be assumed to be an
2709 integer as in the example below.  It should be used for comparison by
2710 @code{equal} only.
2712 If the @var{file} cannot be watched for some reason, this function
2713 signals a @code{file-notify-error} error.
2715 Sometimes, mounted filesystems cannot be watched for file changes.
2716 This is not detected by this function, a non-@code{nil} return value
2717 does not guarantee that changes on @var{file} will be notified.
2719 @var{flags} is a list of conditions to set what will be watched for.
2720 It can include the following symbols:
2722 @table @code
2723 @item change
2724 watch for file changes
2725 @item attribute-change
2726 watch for file attribute changes, like permissions or modification
2727 time
2728 @end table
2730 If @var{file} is a directory, changes for all files in that directory
2731 will be notified.  This does not work recursively.
2733 When any event happens, Emacs will call the @var{callback} function
2734 passing it a single argument @var{event}, which is of the form
2736 @lisp
2737 (@var{descriptor} @var{action} @var{file} [@var{file1}])
2738 @end lisp
2740 @var{descriptor} is the same object as the one returned by this
2741 function.  @var{action} is the description of the event.  It could be
2742 any one of the following symbols:
2744 @table @code
2745 @item created
2746 @var{file} was created
2747 @item deleted
2748 @var{file} was deleted
2749 @item changed
2750 @var{file}'s contents has changed; with @file{w32notify} library,
2751 reports attribute changes as well
2752 @item renamed
2753 @var{file} has been renamed to @var{file1}
2754 @item attribute-changed
2755 a @var{file} attribute was changed
2756 @item stopped
2757 watching @var{file} has been stopped
2758 @end table
2760 Note that the @file{w32notify} library does not report
2761 @code{attribute-changed} events.  When some file's attribute, like
2762 permissions or modification time, has changed, this library reports a
2763 @code{changed} event.  Likewise, the @file{kqueue} library does not
2764 report reliably file attribute changes when watching a directory.
2766 The @code{stopped} event reports, that watching the file has been
2767 stopped.  This could be because @code{file-notify-rm-watch} was called
2768 (see below), or because the file being watched was deleted, or due to
2769 another error reported from the underlying library.
2771 @var{file} and @var{file1} are the name of the file(s) whose event is
2772 being reported.  For example:
2774 @example
2775 @group
2776 (require 'filenotify)
2777      @result{} filenotify
2778 @end group
2780 @group
2781 (defun my-notify-callback (event)
2782   (message "Event %S" event))
2783      @result{} my-notify-callback
2784 @end group
2786 @group
2787 (file-notify-add-watch
2788   "/tmp" '(change attribute-change) 'my-notify-callback)
2789      @result{} 35025468
2790 @end group
2792 @group
2793 (write-region "foo" nil "/tmp/foo")
2794      @result{} Event (35025468 created "/tmp/.#foo")
2795         Event (35025468 created "/tmp/foo")
2796         Event (35025468 changed "/tmp/foo")
2797         Event (35025468 deleted "/tmp/.#foo")
2798 @end group
2800 @group
2801 (write-region "bla" nil "/tmp/foo")
2802      @result{} Event (35025468 created "/tmp/.#foo")
2803         Event (35025468 changed "/tmp/foo")
2804         Event (35025468 deleted "/tmp/.#foo")
2805 @end group
2807 @group
2808 (set-file-modes "/tmp/foo" (default-file-modes))
2809      @result{} Event (35025468 attribute-changed "/tmp/foo")
2810 @end group
2811 @end example
2813 Whether the action @code{renamed} is returned, depends on the used
2814 watch library.  Otherwise, the actions @code{deleted} and
2815 @code{created} could be returned in a random order.
2817 @example
2818 @group
2819 (rename-file "/tmp/foo" "/tmp/bla")
2820      @result{} Event (35025468 renamed "/tmp/foo" "/tmp/bla")
2821 @end group
2823 @group
2824 (delete-file "/tmp/bla")
2825      @result{} Event (35025468 deleted "/tmp/bla")
2826 @end group
2827 @end example
2828 @end defun
2830 @defun file-notify-rm-watch descriptor
2831 Removes an existing file watch specified by its @var{descriptor}.
2832 @var{descriptor} should be an object returned by
2833 @code{file-notify-add-watch}.
2834 @end defun
2836 @defun file-notify-valid-p descriptor
2837 Checks a watch specified by its @var{descriptor} for validity.
2838 @var{descriptor} should be an object returned by
2839 @code{file-notify-add-watch}.
2841 A watch can become invalid if the file or directory it watches is
2842 deleted, or if the watcher thread exits abnormally for any other
2843 reason.  Removing the watch by calling @code{file-notify-rm-watch}
2844 also makes it invalid.
2846 @example
2847 @group
2848 (make-directory "/tmp/foo")
2849      @result{} Event (35025468 created "/tmp/foo")
2850 @end group
2852 @group
2853 (setq desc
2854       (file-notify-add-watch
2855         "/tmp/foo" '(change) 'my-notify-callback))
2856      @result{} 11359632
2857 @end group
2859 @group
2860 (file-notify-valid-p desc)
2861      @result{} t
2862 @end group
2864 @group
2865 (write-region "bla" nil "/tmp/foo/bla")
2866      @result{} Event (11359632 created "/tmp/foo/.#bla")
2867         Event (11359632 created "/tmp/foo/bla")
2868         Event (11359632 changed "/tmp/foo/bla")
2869         Event (11359632 deleted "/tmp/foo/.#bla")
2870 @end group
2872 @group
2873 ;; Deleting a file in the directory doesn't invalidate the watch.
2874 (delete-file "/tmp/foo/bla")
2875      @result{} Event (11359632 deleted "/tmp/foo/bla")
2876 @end group
2878 @group
2879 (write-region "bla" nil "/tmp/foo/bla")
2880      @result{} Event (11359632 created "/tmp/foo/.#bla")
2881         Event (11359632 created "/tmp/foo/bla")
2882         Event (11359632 changed "/tmp/foo/bla")
2883         Event (11359632 deleted "/tmp/foo/.#bla")
2884 @end group
2886 @group
2887 ;; Deleting the directory invalidates the watch.
2888 ;; Events arrive for different watch descriptors.
2889 (delete-directory "/tmp/foo" 'recursive)
2890      @result{} Event (35025468 deleted "/tmp/foo")
2891         Event (11359632 deleted "/tmp/foo/bla")
2892         Event (11359632 deleted "/tmp/foo")
2893         Event (11359632 stopped "/tmp/foo")
2894 @end group
2896 @group
2897 (file-notify-valid-p desc)
2898      @result{} nil
2899 @end group
2900 @end example
2901 @end defun
2903 @node Dynamic Libraries
2904 @section Dynamically Loaded Libraries
2905 @cindex dynamic libraries
2907   A @dfn{dynamically loaded library} is a library that is loaded on
2908 demand, when its facilities are first needed.  Emacs supports such
2909 on-demand loading of support libraries for some of its features.
2911 @defvar dynamic-library-alist
2912 This is an alist of dynamic libraries and external library files
2913 implementing them.
2915 Each element is a list of the form
2916 @w{@code{(@var{library} @var{files}@dots{})}}, where the @code{car} is
2917 a symbol representing a supported external library, and the rest are
2918 strings giving alternate filenames for that library.
2920 Emacs tries to load the library from the files in the order they
2921 appear in the list; if none is found, the Emacs session won't have
2922 access to that library, and the features it provides will be
2923 unavailable.
2925 Image support on some platforms uses this facility.  Here's an example
2926 of setting this variable for supporting images on MS-Windows:
2928 @example
2929 (setq dynamic-library-alist
2930       '((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll")
2931         (png "libpng12d.dll" "libpng12.dll" "libpng.dll"
2932              "libpng13d.dll" "libpng13.dll")
2933         (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll"
2934               "jpeg.dll")
2935         (tiff "libtiff3.dll" "libtiff.dll")
2936         (gif "giflib4.dll" "libungif4.dll" "libungif.dll")
2937         (svg "librsvg-2-2.dll")
2938         (gdk-pixbuf "libgdk_pixbuf-2.0-0.dll")
2939         (glib "libglib-2.0-0.dll")
2940         (gobject "libgobject-2.0-0.dll")))
2941 @end example
2943 Note that image types @code{pbm} and @code{xbm} do not need entries in
2944 this variable because they do not depend on external libraries and are
2945 always available in Emacs.
2947 Also note that this variable is not meant to be a generic facility for
2948 accessing external libraries; only those already known by Emacs can
2949 be loaded through it.
2951 This variable is ignored if the given @var{library} is statically
2952 linked into Emacs.
2953 @end defvar
2955 @node Security Considerations
2956 @section Security Considerations
2957 @cindex security
2958 @cindex hardening
2960 Like any application, Emacs can be run in a secure environment, where
2961 the operating system enforces rules about access and the like.  With
2962 some care, Emacs-based applications can also be part of a security
2963 perimeter that checks such rules.  Although the default settings for
2964 Emacs work well for a typical software development environment, they
2965 may require adjustment in environments containing untrusted users that
2966 may include attackers.  Here is a compendium of security issues that
2967 may be helpful if you are developing such applications.  It is by no
2968 means complete; it is intended to give you an idea of the security
2969 issues involved, rather than to be a security checklist.
2971 @table @asis
2972 @item File local variables
2973 @cindex file local variables
2974 A file that Emacs visits can contain variable settings that affects
2975 the buffer visiting that file; @xref{File Local Variables}.
2976 Similarly, a directory can specify local variable values common to all
2977 files in that directory; @xref{Directory Local Variables}.  Although
2978 Emacs takes some effort to protect against misuse of these variables,
2979 a security hole can be created merely by a package setting
2980 @code{safe-local-variable} too optimistically, a problem that is all
2981 too common.  To disable this feature for both files and directories,
2982 set @code{enable-local-variables} to @code{nil}.
2984 @item Access control
2985 Although Emacs normally respects access permissions of the underlying
2986 operating system, in some cases it handles accesses specially.  For
2987 example, file names can have handlers that treat the files specially,
2988 with their own access checking.  @xref{Magic File Names}.  Also, a
2989 buffer can be read-only even if the corresponding file is writeable,
2990 and vice versa, which can result in messages such as @samp{File passwd
2991 is write-protected; try to save anyway? (yes or no)}.  @xref{Read Only
2992 Buffers}.
2994 @item Authentication
2995 Emacs has several functions that deal with passwords, e.g.,
2996 @code{read-passwd}.  @xref{Reading a Password}.
2997 Although these functions do not attempt to
2998 broadcast passwords to the world, their implementations are not proof
2999 against determined attackers with access to Emacs internals.  For
3000 example, even if Elisp code uses @code{clear-string} to scrub a password from
3001 its memory after using it, remnants of the password may still reside
3002 in the garbage-collected free list.  @xref{Modifying Strings}.
3004 @item Code injection
3005 Emacs can send commands to many other applications, and applications
3006 should take care that strings sent as operands of these commands are
3007 not misinterpreted as directives.  For example, when using a shell
3008 command to rename a file @var{a} to @var{b}, do not simply use the
3009 string @code{mv @var{a} @var{b}}, because either file name might start
3010 with @samp{-}, or might contain shell metacharacters like @samp{;}.
3011 Although functions like @code{shell-quote-argument} can help avoid
3012 this sort of problem, they are not panaceas; for example, on a POSIX
3013 platform @code{shell-quote-argument} quotes shell metacharacters but
3014 not leading @samp{-}.  @xref{Shell Arguments}.  Typically it is safer
3015 to use @code{call-process} than a subshell.  @xref{Synchronous
3016 Processes}.  And it is safer yet to use builtin Emacs functions; for
3017 example, use @code{(rename-file "@var{a}" "@var{b}" t)} instead of
3018 invoking @command{mv}.  @xref{Changing Files}.
3020 @item Coding systems
3021 Emacs attempts to infer the coding systems of the files and network
3022 connections it accesses.  @xref{Coding Systems}.
3023 If Emacs infers incorrectly, or if the other
3024 parties to the network connection disagree with Emacs's inferences,
3025 the resulting system could be unreliable.  Also, even when it infers
3026 correctly, Emacs often can use bytes that other programs cannot.  For
3027 example, although to Emacs the null byte is just a
3028 character like any other, many other applications treat it as a string
3029 terminator and mishandle strings or files containing null bytes.
3031 @item Environment and configuration variables
3032 POSIX specifies several environment variables that can affect how
3033 Emacs behaves.  Any environment variable whose name consists entirely
3034 of uppercase ASCII letters, digits, and the underscore may affect the
3035 internal behavior of Emacs.  Emacs uses several such variables, e.g.,
3036 @env{EMACSLOADPATH}.  @xref{Library Search}.  On some platforms some
3037 environment variables (e.g., @env{PATH}, @env{POSIXLY_CORRECT},
3038 @env{SHELL}, @env{TMPDIR}) need to have properly-configured values in
3039 order to get standard behavior for any utility Emacs might invoke.
3040 Even seemingly-benign variables like @env{TZ} may have security
3041 implications.  @xref{System Environment}.
3043 Emacs has customization and other variables with similar
3044 considerations.  For example, if the variable @code{shell-file-name}
3045 specifies a shell with nonstandard behavior, an Emacs-based
3046 application may misbehave.
3048 @item Installation
3049 When Emacs is installed, if the installation directory hierarchy can
3050 be modified by untrusted users, the application cannot be trusted.
3051 This applies also to the directory hierarchies of the programs that
3052 Emacs uses, and of the files that Emacs reads and writes.
3054 @item Network access
3055 Emacs often accesses the network, and you may want to configure it to
3056 avoid network accesses that it would normally do.  For example, unless
3057 you set @code{tramp-mode} to @code{nil}, file names using a certain
3058 syntax are interpreted as being network files, and are retrieved
3059 across the network.  @xref{Top, The Tramp Manual,, tramp, The Tramp
3060 Manual}.
3062 @item Race conditions
3063 Emacs applications have the same sort of race-condition issues that
3064 other applications do.  For example, even when
3065 @code{(file-readable-p "foo.txt")} returns @code{t}, it could be that
3066 @file{foo.txt} is unreadable because some other program changed the
3067 file's permissions between the call to @code{file-readable-p} and now.
3068 @xref{Testing Accessibility}.
3070 @item Resource limits
3071 When Emacs exhausts memory or other operating system resources, its
3072 behavior can be less reliable, in that computations that ordinarily
3073 run to completion may abort back to the top level.  This may cause
3074 Emacs to neglect operations that it normally would have done.
3075 @end table