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