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