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