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