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