Doc fix.
[bpt/emacs.git] / lisp / subr.el
CommitLineData
c88ab9ce 1;;; subr.el --- basic lisp subroutines for Emacs
630cc463 2
d733c5ec 3;;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
be9b65ac
DL
4
5;; This file is part of GNU Emacs.
6
7;; GNU Emacs is free software; you can redistribute it and/or modify
8;; it under the terms of the GNU General Public License as published by
492878e4 9;; the Free Software Foundation; either version 2, or (at your option)
be9b65ac
DL
10;; any later version.
11
12;; GNU Emacs is distributed in the hope that it will be useful,
13;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;; GNU General Public License for more details.
16
17;; You should have received a copy of the GNU General Public License
18;; along with GNU Emacs; see the file COPYING. If not, write to
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20
630cc463 21;;; Code:
be9b65ac 22
9a5336ae
JB
23\f
24;;;; Lisp language features.
25
26(defmacro lambda (&rest cdr)
27 "Return a lambda expression.
28A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
29self-quoting; the result of evaluating the lambda expression is the
30expression itself. The lambda expression may then be treated as a
31function, i. e. stored as the function value of a symbol, passed to
32funcall or mapcar, etcetera.
33ARGS should take the same form as an argument list for a `defun'.
34DOCSTRING should be a string, as described for `defun'. It may be omitted.
35INTERACTIVE should be a call to the function `interactive', which see.
36It may also be omitted.
37BODY should be a list of lisp expressions."
38 ;; Note that this definition should not use backquotes; subr.el should not
39 ;; depend on backquote.el.
40 (list 'function (cons 'lambda cdr)))
41
42;;(defmacro defun-inline (name args &rest body)
43;; "Create an \"inline defun\" (actually a macro).
44;;Use just like `defun'."
45;; (nconc (list 'defmacro name '(&rest args))
46;; (if (stringp (car body))
47;; (prog1 (list (car body))
48;; (setq body (or (cdr body) body))))
49;; (list (list 'cons (list 'quote
50;; (cons 'lambda (cons args body)))
51;; 'args))))
52
53\f
54;;;; Window tree functions.
55
e0de7bcb 56(defun one-window-p (&optional nomini all-frames)
be9b65ac
DL
57 "Returns non-nil if there is only one window.
58Optional arg NOMINI non-nil means don't count the minibuffer
e0de7bcb
RS
59even if it is active.
60
61The optional arg ALL-FRAMES t means count windows on all frames.
62If it is `visible', count windows on all visible frames.
63ALL-FRAMES nil or omitted means count only the selected frame,
64plus the minibuffer it uses (which may be on another frame).
65If ALL-FRAMES is neither nil nor t, count only the selected frame."
492878e4
JB
66 (let ((base-window (selected-window)))
67 (if (and nomini (eq base-window (minibuffer-window)))
68 (setq base-window (next-window base-window)))
69 (eq base-window
e0de7bcb 70 (next-window base-window (if nomini 'arg) all-frames))))
be9b65ac 71
0cc89026 72(defun walk-windows (proc &optional minibuf all-frames)
be9b65ac
DL
73 "Cycle through all visible windows, calling PROC for each one.
74PROC is called with a window as argument.
75Optional second arg MINIBUF t means count the minibuffer window
76even if not active. If MINIBUF is neither t nor nil it means
77not to count the minibuffer even if it is active.
f1f2d09a
RS
78
79Optional third arg ALL-FRAMES, if t, means include all frames.
80ALL-FRAMES nil or omitted means cycle within the selected frame,
81but include the minibuffer window (if MINIBUF says so) that that
82frame uses, even if it is on another frame.
83If ALL-FRAMES is neither nil nor t, stick strictly to the selected frame."
7a18f5c2
RS
84 ;; If we start from the minibuffer window, don't fail to come back to it.
85 (if (window-minibuffer-p (selected-window))
86 (setq minibuf t))
be9b65ac
DL
87 (let* ((walk-windows-start (selected-window))
88 (walk-windows-current walk-windows-start))
89 (while (progn
90 (setq walk-windows-current
0cc89026 91 (next-window walk-windows-current minibuf all-frames))
be9b65ac
DL
92 (funcall proc walk-windows-current)
93 (not (eq walk-windows-current walk-windows-start))))))
94
79e0df73
RS
95(defun minibuffer-window-active-p (window)
96 "Return t if WINDOW (a minibuffer window) is now active."
97 ;; nil nil means include WINDOW's frame
98 ;; and other frames using WINDOW as minibuffer,
99 ;; and include minibuffer if active.
100 (let ((prev (previous-window window nil nil)))
101 ;; If PREV equals WINDOW, WINDOW must be on a minibuffer-only frame
102 ;; and it's not currently being used. So return nil.
103 (and (not (eq window prev))
104 (let ((should-be-same (next-window prev nil nil)))
105 ;; If next-window doesn't reverse previous-window,
106 ;; WINDOW must be outside the cycle specified by nil nil.
107 (eq should-be-same window)))))
9a5336ae
JB
108\f
109;;;; Keymap support.
be9b65ac
DL
110
111(defun undefined ()
112 (interactive)
113 (ding))
114
115;Prevent the \{...} documentation construct
116;from mentioning keys that run this command.
117(put 'undefined 'suppress-keymap t)
118
119(defun suppress-keymap (map &optional nodigits)
120 "Make MAP override all normally self-inserting keys to be undefined.
121Normally, as an exception, digits and minus-sign are set to make prefix args,
122but optional second arg NODIGITS non-nil treats them like other chars."
80e7b471 123 (substitute-key-definition 'self-insert-command 'undefined map global-map)
be9b65ac
DL
124 (or nodigits
125 (let (loop)
126 (define-key map "-" 'negative-argument)
127 ;; Make plain numbers do numeric args.
128 (setq loop ?0)
129 (while (<= loop ?9)
130 (define-key map (char-to-string loop) 'digit-argument)
131 (setq loop (1+ loop))))))
132
be9b65ac
DL
133;Moved to keymap.c
134;(defun copy-keymap (keymap)
135; "Return a copy of KEYMAP"
136; (while (not (keymapp keymap))
137; (setq keymap (signal 'wrong-type-argument (list 'keymapp keymap))))
138; (if (vectorp keymap)
139; (copy-sequence keymap)
140; (copy-alist keymap)))
141
f14dbba7
KH
142(defvar key-substitution-in-progress nil
143 "Used internally by substitute-key-definition.")
144
7f2c2edd 145(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
be9b65ac
DL
146 "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
147In other words, OLDDEF is replaced with NEWDEF where ever it appears.
7f2c2edd
RS
148If optional fourth argument OLDMAP is specified, we redefine
149in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP."
150 (or prefix (setq prefix ""))
151 (let* ((scan (or oldmap keymap))
152 (vec1 (vector nil))
f14dbba7
KH
153 (prefix1 (vconcat prefix vec1))
154 (key-substitution-in-progress
155 (cons scan key-substitution-in-progress)))
7f2c2edd
RS
156 ;; Scan OLDMAP, finding each char or event-symbol that
157 ;; has any definition, and act on it with hack-key.
158 (while (consp scan)
159 (if (consp (car scan))
160 (let ((char (car (car scan)))
161 (defn (cdr (car scan))))
162 ;; The inside of this let duplicates exactly
163 ;; the inside of the following let that handles array elements.
164 (aset vec1 0 char)
165 (aset prefix1 (length prefix) char)
44d798af 166 (let (inner-def skipped)
7f2c2edd
RS
167 ;; Skip past menu-prompt.
168 (while (stringp (car-safe defn))
44d798af 169 (setq skipped (cons (car defn) skipped))
7f2c2edd 170 (setq defn (cdr defn)))
e025dddf
RS
171 ;; Skip past cached key-equivalence data for menu items.
172 (and (consp defn) (consp (car defn))
173 (setq defn (cdr defn)))
7f2c2edd 174 (setq inner-def defn)
e025dddf 175 ;; Look past a symbol that names a keymap.
7f2c2edd
RS
176 (while (and (symbolp inner-def)
177 (fboundp inner-def))
178 (setq inner-def (symbol-function inner-def)))
179 (if (eq defn olddef)
44d798af 180 (define-key keymap prefix1 (nconc (nreverse skipped) newdef))
e025dddf 181 ;; Avoid recursively rescanning a keymap being scanned.
f14dbba7
KH
182 (if (and (keymapp defn)
183 (not (memq inner-def
184 key-substitution-in-progress)))
e025dddf
RS
185 ;; If this one isn't being scanned already,
186 ;; scan it now.
7f2c2edd
RS
187 (substitute-key-definition olddef newdef keymap
188 inner-def
189 prefix1)))))
190 (if (arrayp (car scan))
191 (let* ((array (car scan))
192 (len (length array))
193 (i 0))
194 (while (< i len)
195 (let ((char i) (defn (aref array i)))
196 ;; The inside of this let duplicates exactly
197 ;; the inside of the previous let.
198 (aset vec1 0 char)
199 (aset prefix1 (length prefix) char)
44d798af 200 (let (inner-def skipped)
7f2c2edd
RS
201 ;; Skip past menu-prompt.
202 (while (stringp (car-safe defn))
44d798af 203 (setq skipped (cons (car defn) skipped))
7f2c2edd 204 (setq defn (cdr defn)))
e025dddf
RS
205 (and (consp defn) (consp (car defn))
206 (setq defn (cdr defn)))
7f2c2edd
RS
207 (setq inner-def defn)
208 (while (and (symbolp inner-def)
209 (fboundp inner-def))
210 (setq inner-def (symbol-function inner-def)))
211 (if (eq defn olddef)
44d798af
RS
212 (define-key keymap prefix1
213 (nconc (nreverse skipped) newdef))
f14dbba7
KH
214 (if (and (keymapp defn)
215 (not (memq inner-def
216 key-substitution-in-progress)))
7f2c2edd
RS
217 (substitute-key-definition olddef newdef keymap
218 inner-def
219 prefix1)))))
220 (setq i (1+ i))))))
221 (setq scan (cdr scan)))))
9a5336ae 222
06ae9cf2 223(defun define-key-after (keymap key definition after)
4434d61b
RS
224 "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
225This is like `define-key' except that the binding for KEY is placed
226just after the binding for the event AFTER, instead of at the beginning
227of the map.
626f67f3 228The order matters when the keymap is used as a menu.
9ed287b0
RS
229KEY must contain just one event type--that is to say, it must be
230a string or vector of length 1."
4434d61b
RS
231 (or (keymapp keymap)
232 (signal 'wrong-type-argument (list 'keymapp keymap)))
ab375e6c 233 (if (> (length key) 1)
626f67f3 234 (error "multi-event key specified in `define-key-after'"))
113d28a8 235 (let ((tail keymap) done inserted
4434d61b
RS
236 (first (aref key 0)))
237 (while (and (not done) tail)
238 ;; Delete any earlier bindings for the same key.
239 (if (eq (car-safe (car (cdr tail))) first)
240 (setcdr tail (cdr (cdr tail))))
241 ;; When we reach AFTER's binding, insert the new binding after.
242 ;; If we reach an inherited keymap, insert just before that.
113d28a8 243 ;; If we reach the end of this keymap, insert at the end.
4434d61b 244 (if (or (eq (car-safe (car tail)) after)
113d28a8
RS
245 (eq (car (cdr tail)) 'keymap)
246 (null (cdr tail)))
4434d61b 247 (progn
113d28a8
RS
248 ;; Stop the scan only if we find a parent keymap.
249 ;; Keep going past the inserted element
250 ;; so we can delete any duplications that come later.
251 (if (eq (car (cdr tail)) 'keymap)
252 (setq done t))
253 ;; Don't insert more than once.
254 (or inserted
255 (setcdr tail (cons (cons (aref key 0) definition) (cdr tail))))
256 (setq inserted t)))
4434d61b
RS
257 (setq tail (cdr tail)))))
258
9a5336ae
JB
259(defun keyboard-translate (from to)
260 "Translate character FROM to TO at a low level.
261This function creates a `keyboard-translate-table' if necessary
262and then modifies one entry in it."
263 (or (arrayp keyboard-translate-table)
264 (setq keyboard-translate-table ""))
265 (if (or (> from (length keyboard-translate-table))
266 (> to (length keyboard-translate-table)))
267 (progn
268 (let* ((i (length keyboard-translate-table))
f4ebbdbe
RS
269 (table (concat keyboard-translate-table
270 (make-string (- 256 i) 0))))
9a5336ae
JB
271 (while (< i 256)
272 (aset table i i)
273 (setq i (1+ i)))
274 (setq keyboard-translate-table table))))
275 (aset keyboard-translate-table from to))
276
277\f
278;;;; The global keymap tree.
279
280;;; global-map, esc-map, and ctl-x-map have their values set up in
281;;; keymap.c; we just give them docstrings here.
282
283(defvar global-map nil
284 "Default global keymap mapping Emacs keyboard input into commands.
285The value is a keymap which is usually (but not necessarily) Emacs's
286global map.")
287
288(defvar esc-map nil
289 "Default keymap for ESC (meta) commands.
290The normal global definition of the character ESC indirects to this keymap.")
291
292(defvar ctl-x-map nil
293 "Default keymap for C-x commands.
294The normal global definition of the character C-x indirects to this keymap.")
295
296(defvar ctl-x-4-map (make-sparse-keymap)
297 "Keymap for subcommands of C-x 4")
059184dd 298(defalias 'ctl-x-4-prefix ctl-x-4-map)
9a5336ae
JB
299(define-key ctl-x-map "4" 'ctl-x-4-prefix)
300
301(defvar ctl-x-5-map (make-sparse-keymap)
302 "Keymap for frame commands.")
059184dd 303(defalias 'ctl-x-5-prefix ctl-x-5-map)
9a5336ae
JB
304(define-key ctl-x-map "5" 'ctl-x-5-prefix)
305
0f03054a 306\f
9a5336ae
JB
307;;;; Event manipulation functions.
308
114137b8
RS
309;; This code exists specifically to make sure that the
310;; resulting number does not appear in the .elc file.
311;; The number is negative on most machines, but not on all!
312(defconst listify-key-sequence-1
313 (lsh 1 7))
314(setq listify-key-sequence-1 (logior (lsh 1 23) listify-key-sequence-1))
315
cde6d7e3
RS
316(defun listify-key-sequence (key)
317 "Convert a key sequence to a list of events."
318 (if (vectorp key)
319 (append key nil)
320 (mapcar (function (lambda (c)
321 (if (> c 127)
114137b8 322 (logxor c listify-key-sequence-1)
cde6d7e3
RS
323 c)))
324 (append key nil))))
325
53e5a4e8
RS
326(defsubst eventp (obj)
327 "True if the argument is an event object."
328 (or (integerp obj)
329 (and (symbolp obj)
330 (get obj 'event-symbol-elements))
331 (and (consp obj)
332 (symbolp (car obj))
333 (get (car obj) 'event-symbol-elements))))
334
335(defun event-modifiers (event)
336 "Returns a list of symbols representing the modifier keys in event EVENT.
337The elements of the list may include `meta', `control',
32295976
RS
338`shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
339and `down'."
53e5a4e8
RS
340 (let ((type event))
341 (if (listp type)
342 (setq type (car type)))
343 (if (symbolp type)
344 (cdr (get type 'event-symbol-elements))
345 (let ((list nil))
346 (or (zerop (logand type (lsh 1 23)))
347 (setq list (cons 'meta list)))
348 (or (and (zerop (logand type (lsh 1 22)))
349 (>= (logand type 127) 32))
350 (setq list (cons 'control list)))
351 (or (and (zerop (logand type (lsh 1 21)))
352 (= (logand type 255) (downcase (logand type 255))))
353 (setq list (cons 'shift list)))
354 (or (zerop (logand type (lsh 1 20)))
355 (setq list (cons 'hyper list)))
356 (or (zerop (logand type (lsh 1 19)))
357 (setq list (cons 'super list)))
358 (or (zerop (logand type (lsh 1 18)))
359 (setq list (cons 'alt list)))
360 list))))
361
d63de416
RS
362(defun event-basic-type (event)
363 "Returns the basic type of the given event (all modifiers removed).
364The value is an ASCII printing character (not upper case) or a symbol."
2b0f4ba5
JB
365 (if (consp event)
366 (setq event (car event)))
d63de416
RS
367 (if (symbolp event)
368 (car (get event 'event-symbol-elements))
369 (let ((base (logand event (1- (lsh 1 18)))))
370 (downcase (if (< base 32) (logior base 64) base)))))
371
0f03054a
RS
372(defsubst mouse-movement-p (object)
373 "Return non-nil if OBJECT is a mouse movement event."
374 (and (consp object)
375 (eq (car object) 'mouse-movement)))
376
377(defsubst event-start (event)
378 "Return the starting position of EVENT.
379If EVENT is a mouse press or a mouse click, this returns the location
380of the event.
381If EVENT is a drag, this returns the drag's starting position.
382The return value is of the form
e55c21be 383 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
0f03054a
RS
384The `posn-' functions access elements of such lists."
385 (nth 1 event))
386
387(defsubst event-end (event)
388 "Return the ending location of EVENT. EVENT should be a click or drag event.
389If EVENT is a click event, this function is the same as `event-start'.
390The return value is of the form
e55c21be 391 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
0f03054a 392The `posn-' functions access elements of such lists."
69b95560 393 (nth (if (consp (nth 2 event)) 2 1) event))
0f03054a 394
32295976
RS
395(defsubst event-click-count (event)
396 "Return the multi-click count of EVENT, a click or drag event.
397The return value is a positive integer."
398 (if (integerp (nth 2 event)) (nth 2 event) 1))
399
0f03054a
RS
400(defsubst posn-window (position)
401 "Return the window in POSITION.
402POSITION should be a list of the form
e55c21be 403 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
0f03054a
RS
404as returned by the `event-start' and `event-end' functions."
405 (nth 0 position))
406
407(defsubst posn-point (position)
408 "Return the buffer location in POSITION.
409POSITION should be a list of the form
e55c21be 410 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
0f03054a 411as returned by the `event-start' and `event-end' functions."
15db4e0e
JB
412 (if (consp (nth 1 position))
413 (car (nth 1 position))
414 (nth 1 position)))
0f03054a 415
e55c21be
RS
416(defsubst posn-x-y (position)
417 "Return the x and y coordinates in POSITION.
0f03054a 418POSITION should be a list of the form
e55c21be 419 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
0f03054a
RS
420as returned by the `event-start' and `event-end' functions."
421 (nth 2 position))
422
ed627e08
RS
423(defun posn-col-row (position)
424 "Return the row and column in POSITION, measured in characters.
e55c21be
RS
425POSITION should be a list of the form
426 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
ed627e08
RS
427as returned by the `event-start' and `event-end' functions.
428For a scroll-bar event, the result column is 0, and the row
429corresponds to the vertical position of the click in the scroll bar."
430 (let ((pair (nth 2 position))
431 (window (posn-window position)))
432 (if (eq (if (symbolp (nth 1 position)) (nth 1 position)
433 (car (nth 1 position)))
434 'vertical-scroll-bar)
435 (cons 0 (scroll-bar-scale pair (1- (window-height window))))
436 (if (eq (if (symbolp (nth 1 position)) (nth 1 position)
437 (car (nth 1 position)))
438 'horizontal-scroll-bar)
439 (cons (scroll-bar-scale pair (window-width window)) 0)
440 (let ((frame (if (framep window) window (window-frame window)))
441 (x (/ (car pair) (frame-char-width frame)))
442 (y (/ (cdr pair) (frame-char-height frame))))
443 (cons x y))))))
e55c21be 444
0f03054a
RS
445(defsubst posn-timestamp (position)
446 "Return the timestamp of POSITION.
447POSITION should be a list of the form
e55c21be 448 (WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
f415c00c 449as returned by the `event-start' and `event-end' functions."
0f03054a 450 (nth 3 position))
9a5336ae 451
0f03054a 452\f
9a5336ae
JB
453;;;; Obsolescent names for functions.
454
059184dd
ER
455(defalias 'dot 'point)
456(defalias 'dot-marker 'point-marker)
457(defalias 'dot-min 'point-min)
458(defalias 'dot-max 'point-max)
459(defalias 'window-dot 'window-point)
460(defalias 'set-window-dot 'set-window-point)
461(defalias 'read-input 'read-string)
462(defalias 'send-string 'process-send-string)
463(defalias 'send-region 'process-send-region)
464(defalias 'show-buffer 'set-window-buffer)
465(defalias 'buffer-flush-undo 'buffer-disable-undo)
466(defalias 'eval-current-buffer 'eval-buffer)
467(defalias 'compiled-function-p 'byte-code-function-p)
be9b65ac 468
9a5336ae
JB
469;; Some programs still use this as a function.
470(defun baud-rate ()
bcacc42c
RS
471 "Obsolete function returning the value of the `baud-rate' variable.
472Please convert your programs to use the variable `baud-rate' directly."
9a5336ae
JB
473 baud-rate)
474
475\f
476;;;; Alternate names for functions - these are not being phased out.
477
059184dd
ER
478(defalias 'string= 'string-equal)
479(defalias 'string< 'string-lessp)
480(defalias 'move-marker 'set-marker)
481(defalias 'eql 'eq)
482(defalias 'not 'null)
483(defalias 'rplaca 'setcar)
484(defalias 'rplacd 'setcdr)
eb8c3be9 485(defalias 'beep 'ding) ;preserve lingual purity
059184dd
ER
486(defalias 'indent-to-column 'indent-to)
487(defalias 'backward-delete-char 'delete-backward-char)
488(defalias 'search-forward-regexp (symbol-function 're-search-forward))
489(defalias 'search-backward-regexp (symbol-function 're-search-backward))
490(defalias 'int-to-string 'number-to-string)
1e0a78a1 491(defalias 'set-match-data 'store-match-data)
37f6661a
JB
492
493;;; Should this be an obsolete name? If you decide it should, you get
494;;; to go through all the sources and change them.
059184dd 495(defalias 'string-to-int 'string-to-number)
be9b65ac 496\f
9a5336ae 497;;;; Hook manipulation functions.
be9b65ac 498
be9b65ac
DL
499(defun run-hooks (&rest hooklist)
500 "Takes hook names and runs each one in turn. Major mode functions use this.
501Each argument should be a symbol, a hook variable.
502These symbols are processed in the order specified.
503If a hook symbol has a non-nil value, that value may be a function
504or a list of functions to be called to run the hook.
505If the value is a function, it is called with no arguments.
506If it is a list, the elements are called, in order, with no arguments."
507 (while hooklist
508 (let ((sym (car hooklist)))
509 (and (boundp sym)
510 (symbol-value sym)
511 (let ((value (symbol-value sym)))
512 (if (and (listp value) (not (eq (car value) 'lambda)))
e8976c8a
RS
513 (let ((functions value))
514 (while value
515 (funcall (car value))
516 (setq value (cdr value))))
be9b65ac
DL
517 (funcall value)))))
518 (setq hooklist (cdr hooklist))))
519
e8976c8a
RS
520(defun run-hook-with-args (hook &rest args)
521 "Run HOOK with the specified arguments ARGS.
522HOOK should be a symbol, a hook variable. If HOOK has a non-nil
523value, that value may be a function or a list of functions to be
524called to run the hook. If the value is a function, it is called with
525the given arguments and its return value is returned. If it is a list
526of functions, those functions are called, in order,
527with the given arguments ARGS.
528It is best not to depend on the value return by `run-hook-with-args',
529as that may change."
530 (and (boundp hook)
531 (symbol-value hook)
532 (let ((value (symbol-value hook)))
533 (if (and (listp value) (not (eq (car value) 'lambda)))
534 (mapcar '(lambda (foo) (apply foo args))
535 value)
536 (apply value args)))))
537
be9b65ac
DL
538;; Tell C code how to call this function.
539(defconst run-hooks 'run-hooks
540 "Variable by which C primitives find the function `run-hooks'.
541Don't change it.")
542
08159178 543(defun add-hook (hook function &optional append)
32295976
RS
544 "Add to the value of HOOK the function FUNCTION.
545FUNCTION is not added if already present.
546FUNCTION is added (if necessary) at the beginning of the hook list
547unless the optional argument APPEND is non-nil, in which case
548FUNCTION is added at the end.
549
550HOOK should be a symbol, and FUNCTION may be any valid function. If
551HOOK is void, it is first set to nil. If HOOK's value is a single
552function, it is changed to a list of functions."
be9b65ac 553 (or (boundp hook) (set hook nil))
32295976
RS
554 ;; If the hook value is a single function, turn it into a list.
555 (let ((old (symbol-value hook)))
556 (if (or (not (listp old)) (eq (car old) 'lambda))
557 (set hook (list old))))
be9b65ac 558 (or (if (consp function)
f48c1d8d 559 (member function (symbol-value hook))
be9b65ac 560 (memq function (symbol-value hook)))
08159178
ER
561 (set hook
562 (if append
563 (nconc (symbol-value hook) (list function))
564 (cons function (symbol-value hook))))))
9a5336ae 565
24980d16
RS
566(defun remove-hook (hook function)
567 "Remove from the value of HOOK the function FUNCTION.
568HOOK should be a symbol, and FUNCTION may be any valid function. If
569FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
827534ea 570list of hooks to run in HOOK, then nothing is done. See `add-hook'."
24980d16
RS
571 (if (or (not (boundp hook)) ;unbound symbol, or
572 (null (symbol-value hook)) ;value is nil, or
573 (null function)) ;function is nil, then
574 nil ;Do nothing.
575 (let ((hook-value (symbol-value hook)))
576 (if (consp hook-value)
577 (setq hook-value (delete function hook-value))
f48c1d8d 578 (if (equal hook-value function)
24980d16
RS
579 (setq hook-value nil)))
580 (set hook hook-value))))
be9b65ac 581\f
9a5336ae
JB
582;;;; Specifying things to do after certain files are loaded.
583
584(defun eval-after-load (file form)
585 "Arrange that, if FILE is ever loaded, FORM will be run at that time.
586This makes or adds to an entry on `after-load-alist'.
12c7071c 587It does nothing if FORM is already on the list for FILE.
9a5336ae
JB
588FILE should be the name of a library, with no directory name."
589 (or (assoc file after-load-alist)
590 (setq after-load-alist (cons (list file) after-load-alist)))
12c7071c
RS
591 (let ((elt (assoc file after-load-alist)))
592 (or (member form (cdr elt))
593 (nconc elt (list form))))
9a5336ae
JB
594 form)
595
596(defun eval-next-after-load (file)
597 "Read the following input sexp, and run it whenever FILE is loaded.
598This makes or adds to an entry on `after-load-alist'.
599FILE should be the name of a library, with no directory name."
600 (eval-after-load file (read)))
601
602\f
603;;;; Input and display facilities.
604
605(defun read-quoted-char (&optional prompt)
606 "Like `read-char', except that if the first character read is an octal
607digit, we read up to two more octal digits and return the character
608represented by the octal number consisting of those digits.
609Optional argument PROMPT specifies a string to use to prompt the user."
610 (let ((count 0) (code 0) char)
611 (while (< count 3)
612 (let ((inhibit-quit (zerop count))
613 (help-form nil))
614 (and prompt (message "%s-" prompt))
615 (setq char (read-char))
616 (if inhibit-quit (setq quit-flag nil)))
617 (cond ((null char))
618 ((and (<= ?0 char) (<= char ?7))
619 (setq code (+ (* code 8) (- char ?0))
620 count (1+ count))
621 (and prompt (message (setq prompt
622 (format "%s %c" prompt char)))))
623 ((> count 0)
624 (setq unread-command-events (list char) count 259))
625 (t (setq code char count 259))))
0342b545
RS
626 ;; Turn a meta-character into a character with the 0200 bit set.
627 (logior (if (/= (logand code (lsh 1 23)) 0) 128 0)
628 (logand 255 code))))
9a5336ae
JB
629
630(defun force-mode-line-update (&optional all)
631 "Force the mode-line of the current buffer to be redisplayed.
7ec2a18c 632With optional non-nil ALL, force redisplay of all mode-lines."
9a5336ae
JB
633 (if all (save-excursion (set-buffer (other-buffer))))
634 (set-buffer-modified-p (buffer-modified-p)))
635
be9b65ac
DL
636(defun momentary-string-display (string pos &optional exit-char message)
637 "Momentarily display STRING in the buffer at POS.
638Display remains until next character is typed.
639If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
640otherwise it is then available as input (as a command if nothing else).
641Display MESSAGE (optional fourth arg) in the echo area.
642If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
643 (or exit-char (setq exit-char ?\ ))
644 (let ((buffer-read-only nil)
ca2ec1c5
RS
645 ;; Don't modify the undo list at all.
646 (buffer-undo-list t)
be9b65ac
DL
647 (modified (buffer-modified-p))
648 (name buffer-file-name)
649 insert-end)
650 (unwind-protect
651 (progn
652 (save-excursion
653 (goto-char pos)
654 ;; defeat file locking... don't try this at home, kids!
655 (setq buffer-file-name nil)
656 (insert-before-markers string)
3eec84bf
RS
657 (setq insert-end (point))
658 ;; If the message end is off screen, recenter now.
659 (if (> (window-end) insert-end)
660 (recenter (/ (window-height) 2)))
661 ;; If that pushed message start off the screen,
662 ;; scroll to start it at the top of the screen.
663 (move-to-window-line 0)
664 (if (> (point) pos)
665 (progn
666 (goto-char pos)
667 (recenter 0))))
be9b65ac
DL
668 (message (or message "Type %s to continue editing.")
669 (single-key-description exit-char))
3547c855 670 (let ((char (read-event)))
be9b65ac 671 (or (eq char exit-char)
dbc4e1c1 672 (setq unread-command-events (list char)))))
be9b65ac
DL
673 (if insert-end
674 (save-excursion
675 (delete-region pos insert-end)))
676 (setq buffer-file-name name)
677 (set-buffer-modified-p modified))))
678
9a5336ae
JB
679\f
680;;;; Miscellanea.
681
682(defun ignore (&rest ignore)
c0f1a4f6 683 (interactive)
9a5336ae
JB
684 "Do nothing.
685Accept any number of arguments, but ignore them."
686 nil)
687
688(defun error (&rest args)
689 "Signal an error, making error message by passing all args to `format'."
690 (while t
691 (signal 'error (list (apply 'format args)))))
692
cef7ae6e 693(defalias 'user-original-login-name 'user-login-name)
9a5336ae 694
be9b65ac
DL
695(defun start-process-shell-command (name buffer &rest args)
696 "Start a program in a subprocess. Return the process object for it.
697Args are NAME BUFFER COMMAND &rest COMMAND-ARGS.
698NAME is name for process. It is modified if necessary to make it unique.
699BUFFER is the buffer or (buffer-name) to associate with the process.
700 Process output goes at end of that buffer, unless you specify
701 an output stream or filter function to handle the output.
702 BUFFER may be also nil, meaning that this process is not associated
703 with any buffer
704Third arg is command name, the name of a shell command.
705Remaining arguments are the arguments for the command.
4f1d6310 706Wildcards and redirection are handled as usual in the shell."
be9b65ac
DL
707 (if (eq system-type 'vax-vms)
708 (apply 'start-process name buffer args)
709 (start-process name buffer shell-file-name "-c"
710 (concat "exec " (mapconcat 'identity args " ")))))
be9b65ac 711
9a5336ae
JB
712(defmacro save-match-data (&rest body)
713 "Execute the BODY forms, restoring the global value of the match data."
714 (let ((original (make-symbol "match-data")))
715 (list
716 'let (list (list original '(match-data)))
717 (list 'unwind-protect
718 (cons 'progn body)
719 (list 'store-match-data original)))))
ffd56f97 720
8af7df60
RS
721(defun shell-quote-argument (argument)
722 "Quote an argument for passing as argument to an inferior shell."
723 ;; Quote everything except POSIX filename characters.
724 ;; This should be safe enough even for really weird shells.
725 (let ((result "") (start 0) end)
26add1bf 726 (while (string-match "[^-0-9a-zA-Z_./]" argument start)
8af7df60
RS
727 (setq end (match-beginning 0)
728 result (concat result (substring argument start end)
729 "\\" (substring argument end (1+ end)))
730 start (1+ end)))
731 (concat result (substring argument start))))
732
297d863b 733(defun make-syntax-table (&optional oldtable)
984f718a
RS
734 "Return a new syntax table.
735It inherits all letters and control characters from the standard
736syntax table; other characters are copied from the standard syntax table."
297d863b
KH
737 (if oldtable
738 (copy-syntax-table oldtable)
739 (let ((table (copy-syntax-table))
740 i)
741 (setq i 0)
742 (while (<= i 31)
743 (aset table i 13)
744 (setq i (1+ i)))
745 (setq i ?A)
746 (while (<= i ?Z)
747 (aset table i 13)
748 (setq i (1+ i)))
749 (setq i ?a)
750 (while (<= i ?z)
751 (aset table i 13)
752 (setq i (1+ i)))
753 (setq i 128)
754 (while (<= i 255)
755 (aset table i 13)
756 (setq i (1+ i)))
757 table)))
984f718a 758
9a5336ae
JB
759;; now in fns.c
760;(defun nth (n list)
761; "Returns the Nth element of LIST.
762;N counts from zero. If LIST is not that long, nil is returned."
763; (car (nthcdr n list)))
764;
765;(defun copy-alist (alist)
766; "Return a copy of ALIST.
767;This is a new alist which represents the same mapping
768;from objects to objects, but does not share the alist structure with ALIST.
769;The objects mapped (cars and cdrs of elements of the alist)
770;are shared, however."
771; (setq alist (copy-sequence alist))
772; (let ((tail alist))
773; (while tail
774; (if (consp (car tail))
775; (setcar tail (cons (car (car tail)) (cdr (car tail)))))
776; (setq tail (cdr tail))))
777; alist)
630cc463
ER
778
779;;; subr.el ends here
9a5336ae 780