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