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