(recentf-save-list): Catch and warn about errors.
[bpt/emacs.git] / lisp / subr.el
CommitLineData
c88ab9ce 1;;; subr.el --- basic lisp subroutines for Emacs
630cc463 2
9bf2aa6a 3;; Copyright (C) 1985, 86, 92, 94, 95, 99, 2000, 2001, 2002, 03, 2004
fe10cef0 4;; Free Software Foundation, Inc.
be9b65ac 5
30764597
PJ
6;; Maintainer: FSF
7;; Keywords: internal
8
be9b65ac
DL
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
492878e4 13;; the Free Software Foundation; either version 2, or (at your option)
be9b65ac
DL
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
be9b65ac 25
60370d40
PJ
26;;; Commentary:
27
630cc463 28;;; Code:
77a5664f
RS
29(defvar custom-declare-variable-list nil
30 "Record `defcustom' calls made before `custom.el' is loaded to handle them.
31Each element of this list holds the arguments to one call to `defcustom'.")
32
68e3e5f5 33;; Use this, rather than defcustom, in subr.el and other files loaded
77a5664f
RS
34;; before custom.el.
35(defun custom-declare-variable-early (&rest arguments)
36 (setq custom-declare-variable-list
37 (cons arguments custom-declare-variable-list)))
2c642c03
GM
38
39\f
40(defun macro-declaration-function (macro decl)
41 "Process a declaration found in a macro definition.
42This is set as the value of the variable `macro-declaration-function'.
43MACRO is the name of the macro being defined.
44DECL is a list `(declare ...)' containing the declarations.
45The return value of this function is not used."
b6a1ce0b
SM
46 ;; We can't use `dolist' or `cadr' yet for bootstrapping reasons.
47 (let (d)
48 ;; Ignore the first element of `decl' (it's always `declare').
49 (while (setq decl (cdr decl))
50 (setq d (car decl))
51 (cond ((and (consp d) (eq (car d) 'indent))
52 (put macro 'lisp-indent-function (car (cdr d))))
53 ((and (consp d) (eq (car d) 'debug))
54 (put macro 'edebug-form-spec (car (cdr d))))
55 (t
56 (message "Unknown declaration %s" d))))))
2c642c03
GM
57
58(setq macro-declaration-function 'macro-declaration-function)
59
9a5336ae
JB
60\f
61;;;; Lisp language features.
62
0764e16f
SM
63(defalias 'not 'null)
64
1116910a
JY
65(defmacro noreturn (form)
66 "Evaluates FORM, with the expectation that the evaluation will signal an error
67instead of returning to its caller. If FORM does return, an error is
a6d2eef7 68signalled."
1116910a
JY
69 `(prog1 ,form
70 (error "Form marked with `noreturn' did return")))
71
72(defmacro 1value (form)
73 "Evaluates FORM, with the expectation that all the same value will be returned
74from all evaluations of FORM. This is the global do-nothing
75version of `1value'. There is also `testcover-1value' that
76complains if FORM ever does return differing values."
77 form)
78
9a5336ae
JB
79(defmacro lambda (&rest cdr)
80 "Return a lambda expression.
81A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
82self-quoting; the result of evaluating the lambda expression is the
83expression itself. The lambda expression may then be treated as a
bec0d7f9
RS
84function, i.e., stored as the function value of a symbol, passed to
85funcall or mapcar, etc.
86
9a5336ae 87ARGS should take the same form as an argument list for a `defun'.
8fd68088
RS
88DOCSTRING is an optional documentation string.
89 If present, it should describe how to call the function.
90 But documentation strings are usually not useful in nameless functions.
9a5336ae
JB
91INTERACTIVE should be a call to the function `interactive', which see.
92It may also be omitted.
374d3fe7 93BODY should be a list of Lisp expressions."
9a5336ae
JB
94 ;; Note that this definition should not use backquotes; subr.el should not
95 ;; depend on backquote.el.
96 (list 'function (cons 'lambda cdr)))
97
1be152fc 98(defmacro push (newelt listname)
fa65505b 99 "Add NEWELT to the list stored in the symbol LISTNAME.
1be152fc 100This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
d270117a 101LISTNAME must be a symbol."
f30e0cd8 102 (declare (debug (form sexp)))
22d85d00
DL
103 (list 'setq listname
104 (list 'cons newelt listname)))
d270117a
RS
105
106(defmacro pop (listname)
107 "Return the first element of LISTNAME's value, and remove it from the list.
108LISTNAME must be a symbol whose value is a list.
109If the value is nil, `pop' returns nil but does not actually
110change the list."
f30e0cd8 111 (declare (debug (sexp)))
54993fa4
MB
112 (list 'car
113 (list 'prog1 listname
114 (list 'setq listname (list 'cdr listname)))))
d270117a 115
debff3c3 116(defmacro when (cond &rest body)
b021ef18 117 "If COND yields non-nil, do BODY, else return nil."
d47f7515 118 (declare (indent 1) (debug t))
debff3c3 119 (list 'if cond (cons 'progn body)))
9a5336ae 120
debff3c3 121(defmacro unless (cond &rest body)
b021ef18 122 "If COND yields nil, do BODY, else return nil."
d47f7515 123 (declare (indent 1) (debug t))
debff3c3 124 (cons 'if (cons cond (cons nil body))))
d370591d 125
a0b0756a 126(defmacro dolist (spec &rest body)
d47f7515 127 "Loop over a list.
a0b0756a 128Evaluate BODY with VAR bound to each car from LIST, in turn.
d47f7515
SM
129Then evaluate RESULT to get return value, default nil.
130
d775d486 131\(fn (VAR LIST [RESULT]) BODY...)"
d47f7515 132 (declare (indent 1) (debug ((symbolp form &optional form) body)))
e4295aa1 133 (let ((temp (make-symbol "--dolist-temp--")))
d47f7515
SM
134 `(let ((,temp ,(nth 1 spec))
135 ,(car spec))
136 (while ,temp
137 (setq ,(car spec) (car ,temp))
138 (setq ,temp (cdr ,temp))
139 ,@body)
140 ,@(if (cdr (cdr spec))
141 `((setq ,(car spec) nil) ,@(cdr (cdr spec)))))))
a0b0756a
RS
142
143(defmacro dotimes (spec &rest body)
d47f7515 144 "Loop a certain number of times.
a0b0756a
RS
145Evaluate BODY with VAR bound to successive integers running from 0,
146inclusive, to COUNT, exclusive. Then evaluate RESULT to get
d47f7515
SM
147the return value (nil if RESULT is omitted).
148
d775d486 149\(fn (VAR COUNT [RESULT]) BODY...)"
d47f7515
SM
150 (declare (indent 1) (debug dolist))
151 (let ((temp (make-symbol "--dotimes-temp--"))
152 (start 0)
153 (end (nth 1 spec)))
154 `(let ((,temp ,end)
155 (,(car spec) ,start))
156 (while (< ,(car spec) ,temp)
157 ,@body
158 (setq ,(car spec) (1+ ,(car spec))))
159 ,@(cdr (cdr spec)))))
a0b0756a 160
a6d2eef7
LT
161(defmacro declare (&rest specs)
162 "Do not evaluate any arguments and return nil.
163Treated as a declaration when used at the right place in a
164`defmacro' form. \(See Info anchor `(elisp)Definition of declare'."
165 nil)
166
d370591d
RS
167(defsubst caar (x)
168 "Return the car of the car of X."
169 (car (car x)))
170
171(defsubst cadr (x)
172 "Return the car of the cdr of X."
173 (car (cdr x)))
174
175(defsubst cdar (x)
176 "Return the cdr of the car of X."
177 (cdr (car x)))
178
179(defsubst cddr (x)
180 "Return the cdr of the cdr of X."
181 (cdr (cdr x)))
e8c32c99 182
369fba5f
RS
183(defun last (x &optional n)
184 "Return the last link of the list X. Its car is the last element.
185If X is nil, return nil.
186If N is non-nil, return the Nth-to-last link of X.
187If N is bigger than the length of X, return X."
188 (if n
189 (let ((m 0) (p x))
190 (while (consp p)
191 (setq m (1+ m) p (cdr p)))
192 (if (<= n 0) p
193 (if (< n m) (nthcdr (- m n) x) x)))
6bfdc2e2 194 (while (consp (cdr x))
369fba5f
RS
195 (setq x (cdr x)))
196 x))
526d204e 197
1c1c65de
KH
198(defun butlast (x &optional n)
199 "Returns a copy of LIST with the last N elements removed."
200 (if (and n (<= n 0)) x
201 (nbutlast (copy-sequence x) n)))
202
203(defun nbutlast (x &optional n)
204 "Modifies LIST to remove the last N elements."
205 (let ((m (length x)))
206 (or n (setq n 1))
207 (and (< n m)
208 (progn
209 (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil))
210 x))))
211
01682756 212(defun delete-dups (list)
1f3e4f92
EZ
213 "Destructively remove `equal' duplicates from LIST.
214Store the result in LIST and return it. LIST must be a proper list.
215Of several `equal' occurrences of an element in LIST, the first
216one is kept."
01682756
LT
217 (let ((tail list))
218 (while tail
1f3e4f92
EZ
219 (setcdr tail (delete (car tail) (cdr tail)))
220 (setq tail (cdr tail))))
01682756
LT
221 list)
222
0ed2c9b6 223(defun number-sequence (from &optional to inc)
abd9177a 224 "Return a sequence of numbers from FROM to TO (both inclusive) as a list.
2c1385ed
LT
225INC is the increment used between numbers in the sequence and defaults to 1.
226So, the Nth element of the list is \(+ FROM \(* N INC)) where N counts from
227zero. TO is only included if there is an N for which TO = FROM + N * INC.
228If TO is nil or numerically equal to FROM, return \(FROM).
229If INC is positive and TO is less than FROM, or INC is negative
230and TO is larger than FROM, return nil.
231If INC is zero and TO is neither nil nor numerically equal to
232FROM, signal an error.
233
234This function is primarily designed for integer arguments.
235Nevertheless, FROM, TO and INC can be integer or float. However,
236floating point arithmetic is inexact. For instance, depending on
237the machine, it may quite well happen that
238\(number-sequence 0.4 0.6 0.2) returns the one element list \(0.4),
239whereas \(number-sequence 0.4 0.8 0.2) returns a list with three
240elements. Thus, if some of the arguments are floats and one wants
241to make sure that TO is included, one may have to explicitly write
242TO as \(+ FROM \(* N INC)) or use a variable whose value was
243computed with this exact expression. Alternatively, you can,
244of course, also replace TO with a slightly larger value
245\(or a slightly more negative value if INC is negative)."
246 (if (or (not to) (= from to))
0ed2c9b6
VJL
247 (list from)
248 (or inc (setq inc 1))
2c1385ed
LT
249 (when (zerop inc) (error "The increment can not be zero"))
250 (let (seq (n 0) (next from))
251 (if (> inc 0)
252 (while (<= next to)
253 (setq seq (cons next seq)
254 n (1+ n)
255 next (+ from (* n inc))))
256 (while (>= next to)
257 (setq seq (cons next seq)
258 n (1+ n)
259 next (+ from (* n inc)))))
0ed2c9b6 260 (nreverse seq))))
abd9177a 261
13157efc 262(defun remove (elt seq)
963f49a2 263 "Return a copy of SEQ with all occurrences of ELT removed.
13157efc
GM
264SEQ must be a list, vector, or string. The comparison is done with `equal'."
265 (if (nlistp seq)
266 ;; If SEQ isn't a list, there's no need to copy SEQ because
267 ;; `delete' will return a new object.
268 (delete elt seq)
269 (delete elt (copy-sequence seq))))
270
271(defun remq (elt list)
d47f7515
SM
272 "Return LIST with all occurrences of ELT removed.
273The comparison is done with `eq'. Contrary to `delq', this does not use
274side-effects, and the argument LIST is not modified."
13157efc
GM
275 (if (memq elt list)
276 (delq elt (copy-sequence list))
277 list))
278
a176c9eb
CW
279(defun copy-tree (tree &optional vecp)
280 "Make a copy of TREE.
281If TREE is a cons cell, this recursively copies both its car and its cdr.
cfebd4db 282Contrast to `copy-sequence', which copies only along the cdrs. With second
a176c9eb
CW
283argument VECP, this copies vectors as well as conses."
284 (if (consp tree)
cfebd4db
RS
285 (let (result)
286 (while (consp tree)
287 (let ((newcar (car tree)))
288 (if (or (consp (car tree)) (and vecp (vectorp (car tree))))
289 (setq newcar (copy-tree (car tree) vecp)))
290 (push newcar result))
291 (setq tree (cdr tree)))
68b08950 292 (nconc (nreverse result) tree))
a176c9eb
CW
293 (if (and vecp (vectorp tree))
294 (let ((i (length (setq tree (copy-sequence tree)))))
295 (while (>= (setq i (1- i)) 0)
cfebd4db
RS
296 (aset tree i (copy-tree (aref tree i) vecp)))
297 tree)
298 tree)))
a176c9eb 299
8a288450
RS
300(defun assoc-default (key alist &optional test default)
301 "Find object KEY in a pseudo-alist ALIST.
302ALIST is a list of conses or objects. Each element (or the element's car,
303if it is a cons) is compared with KEY by evaluating (TEST (car elt) KEY).
304If that is non-nil, the element matches;
305then `assoc-default' returns the element's cdr, if it is a cons,
526d204e 306or DEFAULT if the element is not a cons.
8a288450
RS
307
308If no element matches, the value is nil.
309If TEST is omitted or nil, `equal' is used."
310 (let (found (tail alist) value)
311 (while (and tail (not found))
312 (let ((elt (car tail)))
313 (when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key)
314 (setq found t value (if (consp elt) (cdr elt) default))))
315 (setq tail (cdr tail)))
316 value))
98aae5f6 317
617631c0 318(make-obsolete 'assoc-ignore-case 'assoc-string)
98aae5f6
KH
319(defun assoc-ignore-case (key alist)
320 "Like `assoc', but ignores differences in case and text representation.
321KEY must be a string. Upper-case and lower-case letters are treated as equal.
322Unibyte strings are converted to multibyte for comparison."
617631c0 323 (assoc-string key alist t))
98aae5f6 324
617631c0 325(make-obsolete 'assoc-ignore-representation 'assoc-string)
98aae5f6
KH
326(defun assoc-ignore-representation (key alist)
327 "Like `assoc', but ignores differences in text representation.
264ef586 328KEY must be a string.
98aae5f6 329Unibyte strings are converted to multibyte for comparison."
617631c0 330 (assoc-string key alist nil))
cbbc3205
GM
331
332(defun member-ignore-case (elt list)
333 "Like `member', but ignores differences in case and text representation.
334ELT must be a string. Upper-case and lower-case letters are treated as equal.
d86a3084
RS
335Unibyte strings are converted to multibyte for comparison.
336Non-strings in LIST are ignored."
337 (while (and list
338 (not (and (stringp (car list))
339 (eq t (compare-strings elt 0 nil (car list) 0 nil t)))))
242c13e8
MB
340 (setq list (cdr list)))
341 list)
cbbc3205 342
9a5336ae 343\f
9a5336ae 344;;;; Keymap support.
be9b65ac
DL
345
346(defun undefined ()
347 (interactive)
348 (ding))
349
350;Prevent the \{...} documentation construct
351;from mentioning keys that run this command.
352(put 'undefined 'suppress-keymap t)
353
354(defun suppress-keymap (map &optional nodigits)
355 "Make MAP override all normally self-inserting keys to be undefined.
356Normally, as an exception, digits and minus-sign are set to make prefix args,
357but optional second arg NODIGITS non-nil treats them like other chars."
098ba983 358 (define-key map [remap self-insert-command] 'undefined)
be9b65ac
DL
359 (or nodigits
360 (let (loop)
361 (define-key map "-" 'negative-argument)
362 ;; Make plain numbers do numeric args.
363 (setq loop ?0)
364 (while (<= loop ?9)
365 (define-key map (char-to-string loop) 'digit-argument)
366 (setq loop (1+ loop))))))
367
be9b65ac
DL
368;Moved to keymap.c
369;(defun copy-keymap (keymap)
264ef586 370; "Return a copy of KEYMAP"
be9b65ac
DL
371; (while (not (keymapp keymap))
372; (setq keymap (signal 'wrong-type-argument (list 'keymapp keymap))))
373; (if (vectorp keymap)
374; (copy-sequence keymap)
375; (copy-alist keymap)))
376
f14dbba7
KH
377(defvar key-substitution-in-progress nil
378 "Used internally by substitute-key-definition.")
379
7f2c2edd 380(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
be9b65ac
DL
381 "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
382In other words, OLDDEF is replaced with NEWDEF where ever it appears.
4656b314 383Alternatively, if optional fourth argument OLDMAP is specified, we redefine
ff77cf40 384in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP."
739f2672
GM
385 ;; Don't document PREFIX in the doc string because we don't want to
386 ;; advertise it. It's meant for recursive calls only. Here's its
387 ;; meaning
264ef586 388
739f2672
GM
389 ;; If optional argument PREFIX is specified, it should be a key
390 ;; prefix, a string. Redefined bindings will then be bound to the
391 ;; original key, with PREFIX added at the front.
7f2c2edd
RS
392 (or prefix (setq prefix ""))
393 (let* ((scan (or oldmap keymap))
394 (vec1 (vector nil))
f14dbba7
KH
395 (prefix1 (vconcat prefix vec1))
396 (key-substitution-in-progress
397 (cons scan key-substitution-in-progress)))
7f2c2edd
RS
398 ;; Scan OLDMAP, finding each char or event-symbol that
399 ;; has any definition, and act on it with hack-key.
400 (while (consp scan)
401 (if (consp (car scan))
402 (let ((char (car (car scan)))
403 (defn (cdr (car scan))))
404 ;; The inside of this let duplicates exactly
405 ;; the inside of the following let that handles array elements.
406 (aset vec1 0 char)
407 (aset prefix1 (length prefix) char)
44d798af 408 (let (inner-def skipped)
7f2c2edd
RS
409 ;; Skip past menu-prompt.
410 (while (stringp (car-safe defn))
44d798af 411 (setq skipped (cons (car defn) skipped))
7f2c2edd 412 (setq defn (cdr defn)))
e025dddf
RS
413 ;; Skip past cached key-equivalence data for menu items.
414 (and (consp defn) (consp (car defn))
415 (setq defn (cdr defn)))
7f2c2edd 416 (setq inner-def defn)
e025dddf 417 ;; Look past a symbol that names a keymap.
7f2c2edd
RS
418 (while (and (symbolp inner-def)
419 (fboundp inner-def))
420 (setq inner-def (symbol-function inner-def)))
328a37ec
RS
421 (if (or (eq defn olddef)
422 ;; Compare with equal if definition is a key sequence.
423 ;; That is useful for operating on function-key-map.
424 (and (or (stringp defn) (vectorp defn))
425 (equal defn olddef)))
44d798af 426 (define-key keymap prefix1 (nconc (nreverse skipped) newdef))
f14dbba7 427 (if (and (keymapp defn)
350b7567
RS
428 ;; Avoid recursively scanning
429 ;; where KEYMAP does not have a submap.
afd9831b
RS
430 (let ((elt (lookup-key keymap prefix1)))
431 (or (null elt)
432 (keymapp elt)))
350b7567 433 ;; Avoid recursively rescanning keymap being scanned.
f14dbba7
KH
434 (not (memq inner-def
435 key-substitution-in-progress)))
e025dddf
RS
436 ;; If this one isn't being scanned already,
437 ;; scan it now.
7f2c2edd
RS
438 (substitute-key-definition olddef newdef keymap
439 inner-def
440 prefix1)))))
916cc49f 441 (if (vectorp (car scan))
7f2c2edd
RS
442 (let* ((array (car scan))
443 (len (length array))
444 (i 0))
445 (while (< i len)
446 (let ((char i) (defn (aref array i)))
447 ;; The inside of this let duplicates exactly
448 ;; the inside of the previous let.
449 (aset vec1 0 char)
450 (aset prefix1 (length prefix) char)
44d798af 451 (let (inner-def skipped)
7f2c2edd
RS
452 ;; Skip past menu-prompt.
453 (while (stringp (car-safe defn))
44d798af 454 (setq skipped (cons (car defn) skipped))
7f2c2edd 455 (setq defn (cdr defn)))
e025dddf
RS
456 (and (consp defn) (consp (car defn))
457 (setq defn (cdr defn)))
7f2c2edd
RS
458 (setq inner-def defn)
459 (while (and (symbolp inner-def)
460 (fboundp inner-def))
461 (setq inner-def (symbol-function inner-def)))
328a37ec
RS
462 (if (or (eq defn olddef)
463 (and (or (stringp defn) (vectorp defn))
464 (equal defn olddef)))
44d798af
RS
465 (define-key keymap prefix1
466 (nconc (nreverse skipped) newdef))
f14dbba7 467 (if (and (keymapp defn)
afd9831b
RS
468 (let ((elt (lookup-key keymap prefix1)))
469 (or (null elt)
470 (keymapp elt)))
f14dbba7
KH
471 (not (memq inner-def
472 key-substitution-in-progress)))
7f2c2edd
RS
473 (substitute-key-definition olddef newdef keymap
474 inner-def
475 prefix1)))))
97fd9abf
RS
476 (setq i (1+ i))))
477 (if (char-table-p (car scan))
478 (map-char-table
479 (function (lambda (char defn)
480 (let ()
481 ;; The inside of this let duplicates exactly
482 ;; the inside of the previous let,
483 ;; except that it uses set-char-table-range
484 ;; instead of define-key.
485 (aset vec1 0 char)
486 (aset prefix1 (length prefix) char)
487 (let (inner-def skipped)
488 ;; Skip past menu-prompt.
489 (while (stringp (car-safe defn))
490 (setq skipped (cons (car defn) skipped))
491 (setq defn (cdr defn)))
492 (and (consp defn) (consp (car defn))
493 (setq defn (cdr defn)))
494 (setq inner-def defn)
495 (while (and (symbolp inner-def)
496 (fboundp inner-def))
497 (setq inner-def (symbol-function inner-def)))
498 (if (or (eq defn olddef)
499 (and (or (stringp defn) (vectorp defn))
500 (equal defn olddef)))
9a5114ac
RS
501 (define-key keymap prefix1
502 (nconc (nreverse skipped) newdef))
97fd9abf
RS
503 (if (and (keymapp defn)
504 (let ((elt (lookup-key keymap prefix1)))
505 (or (null elt)
506 (keymapp elt)))
507 (not (memq inner-def
508 key-substitution-in-progress)))
509 (substitute-key-definition olddef newdef keymap
510 inner-def
511 prefix1)))))))
512 (car scan)))))
7f2c2edd 513 (setq scan (cdr scan)))))
9a5336ae 514
4ced66fd 515(defun define-key-after (keymap key definition &optional after)
4434d61b
RS
516 "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
517This is like `define-key' except that the binding for KEY is placed
518just after the binding for the event AFTER, instead of at the beginning
c34a9d34
RS
519of the map. Note that AFTER must be an event type (like KEY), NOT a command
520\(like DEFINITION).
521
4ced66fd 522If AFTER is t or omitted, the new binding goes at the end of the keymap.
08b1f8a1 523AFTER should be a single event type--a symbol or a character, not a sequence.
c34a9d34 524
4ced66fd 525Bindings are always added before any inherited map.
c34a9d34 526
4ced66fd
DL
527The order of bindings in a keymap matters when it is used as a menu."
528 (unless after (setq after t))
4434d61b
RS
529 (or (keymapp keymap)
530 (signal 'wrong-type-argument (list 'keymapp keymap)))
08b1f8a1
GM
531 (setq key
532 (if (<= (length key) 1) (aref key 0)
533 (setq keymap (lookup-key keymap
534 (apply 'vector
535 (butlast (mapcar 'identity key)))))
536 (aref key (1- (length key)))))
537 (let ((tail keymap) done inserted)
4434d61b
RS
538 (while (and (not done) tail)
539 ;; Delete any earlier bindings for the same key.
08b1f8a1 540 (if (eq (car-safe (car (cdr tail))) key)
4434d61b 541 (setcdr tail (cdr (cdr tail))))
08b1f8a1
GM
542 ;; If we hit an included map, go down that one.
543 (if (keymapp (car tail)) (setq tail (car tail)))
4434d61b
RS
544 ;; When we reach AFTER's binding, insert the new binding after.
545 ;; If we reach an inherited keymap, insert just before that.
113d28a8 546 ;; If we reach the end of this keymap, insert at the end.
c34a9d34
RS
547 (if (or (and (eq (car-safe (car tail)) after)
548 (not (eq after t)))
113d28a8
RS
549 (eq (car (cdr tail)) 'keymap)
550 (null (cdr tail)))
4434d61b 551 (progn
113d28a8
RS
552 ;; Stop the scan only if we find a parent keymap.
553 ;; Keep going past the inserted element
554 ;; so we can delete any duplications that come later.
555 (if (eq (car (cdr tail)) 'keymap)
556 (setq done t))
557 ;; Don't insert more than once.
558 (or inserted
08b1f8a1 559 (setcdr tail (cons (cons key definition) (cdr tail))))
113d28a8 560 (setq inserted t)))
4434d61b
RS
561 (setq tail (cdr tail)))))
562
51fa3961 563
d128fe85
RS
564(defmacro kbd (keys)
565 "Convert KEYS to the internal Emacs key representation.
566KEYS should be a string constant in the format used for
567saving keyboard macros (see `insert-kbd-macro')."
568 (read-kbd-macro keys))
569
8bed5e3d
RS
570(put 'keyboard-translate-table 'char-table-extra-slots 0)
571
9a5336ae
JB
572(defun keyboard-translate (from to)
573 "Translate character FROM to TO at a low level.
574This function creates a `keyboard-translate-table' if necessary
575and then modifies one entry in it."
8bed5e3d
RS
576 (or (char-table-p keyboard-translate-table)
577 (setq keyboard-translate-table
578 (make-char-table 'keyboard-translate-table nil)))
9a5336ae
JB
579 (aset keyboard-translate-table from to))
580
581\f
264ef586 582;;;; The global keymap tree.
9a5336ae
JB
583
584;;; global-map, esc-map, and ctl-x-map have their values set up in
585;;; keymap.c; we just give them docstrings here.
586
587(defvar global-map nil
588 "Default global keymap mapping Emacs keyboard input into commands.
589The value is a keymap which is usually (but not necessarily) Emacs's
590global map.")
591
592(defvar esc-map nil
593 "Default keymap for ESC (meta) commands.
594The normal global definition of the character ESC indirects to this keymap.")
595
596(defvar ctl-x-map nil
597 "Default keymap for C-x commands.
598The normal global definition of the character C-x indirects to this keymap.")
599
600(defvar ctl-x-4-map (make-sparse-keymap)
03eeb110 601 "Keymap for subcommands of C-x 4.")
059184dd 602(defalias 'ctl-x-4-prefix ctl-x-4-map)
9a5336ae
JB
603(define-key ctl-x-map "4" 'ctl-x-4-prefix)
604
605(defvar ctl-x-5-map (make-sparse-keymap)
606 "Keymap for frame commands.")
059184dd 607(defalias 'ctl-x-5-prefix ctl-x-5-map)
9a5336ae
JB
608(define-key ctl-x-map "5" 'ctl-x-5-prefix)
609
0f03054a 610\f
9a5336ae
JB
611;;;; Event manipulation functions.
612
da16e648
KH
613;; The call to `read' is to ensure that the value is computed at load time
614;; and not compiled into the .elc file. The value is negative on most
615;; machines, but not on all!
616(defconst listify-key-sequence-1 (logior 128 (read "?\\M-\\^@")))
114137b8 617
cde6d7e3
RS
618(defun listify-key-sequence (key)
619 "Convert a key sequence to a list of events."
620 (if (vectorp key)
621 (append key nil)
622 (mapcar (function (lambda (c)
623 (if (> c 127)
114137b8 624 (logxor c listify-key-sequence-1)
cde6d7e3 625 c)))
d47f7515 626 key)))
cde6d7e3 627
53e5a4e8
RS
628(defsubst eventp (obj)
629 "True if the argument is an event object."
630 (or (integerp obj)
631 (and (symbolp obj)
632 (get obj 'event-symbol-elements))
633 (and (consp obj)
634 (symbolp (car obj))
635 (get (car obj) 'event-symbol-elements))))
636
637(defun event-modifiers (event)
638 "Returns a list of symbols representing the modifier keys in event EVENT.
639The elements of the list may include `meta', `control',
32295976
RS
640`shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
641and `down'."
53e5a4e8
RS
642 (let ((type event))
643 (if (listp type)
644 (setq type (car type)))
645 (if (symbolp type)
646 (cdr (get type 'event-symbol-elements))
647 (let ((list nil))
da16e648 648 (or (zerop (logand type ?\M-\^@))
53e5a4e8 649 (setq list (cons 'meta list)))
da16e648 650 (or (and (zerop (logand type ?\C-\^@))
53e5a4e8
RS
651 (>= (logand type 127) 32))
652 (setq list (cons 'control list)))
da16e648 653 (or (and (zerop (logand type ?\S-\^@))
53e5a4e8
RS
654 (= (logand type 255) (downcase (logand type 255))))
655 (setq list (cons 'shift list)))
da16e648 656 (or (zerop (logand type ?\H-\^@))
53e5a4e8 657 (setq list (cons 'hyper list)))
da16e648 658 (or (zerop (logand type ?\s-\^@))
53e5a4e8 659 (setq list (cons 'super list)))
da16e648 660 (or (zerop (logand type ?\A-\^@))
53e5a4e8
RS
661 (setq list (cons 'alt list)))
662 list))))
663
d63de416
RS
664(defun event-basic-type (event)
665 "Returns the basic type of the given event (all modifiers removed).
7a0485b2 666The value is a printing character (not upper case) or a symbol."
2b0f4ba5
JB
667 (if (consp event)
668 (setq event (car event)))
d63de416
RS
669 (if (symbolp event)
670 (car (get event 'event-symbol-elements))
671 (let ((base (logand event (1- (lsh 1 18)))))
672 (downcase (if (< base 32) (logior base 64) base)))))
673
0f03054a
RS
674(defsubst mouse-movement-p (object)
675 "Return non-nil if OBJECT is a mouse movement event."
676 (and (consp object)
677 (eq (car object) 'mouse-movement)))
678
679(defsubst event-start (event)
680 "Return the starting position of EVENT.
17f53ffa 681If EVENT is a mouse or key press or a mouse click, this returns the location
0f03054a
RS
682of the event.
683If EVENT is a drag, this returns the drag's starting position.
684The return value is of the form
4385264a
KS
685 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
686 IMAGE (DX . DY) (WIDTH . HEIGHT))
0f03054a 687The `posn-' functions access elements of such lists."
5ef6a86d
SM
688 (if (consp event) (nth 1 event)
689 (list (selected-window) (point) '(0 . 0) 0)))
0f03054a
RS
690
691(defsubst event-end (event)
17f53ffa
SM
692 "Return the ending location of EVENT.
693EVENT should be a click, drag, or key press event.
0f03054a
RS
694If EVENT is a click event, this function is the same as `event-start'.
695The return value is of the form
4385264a
KS
696 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
697 IMAGE (DX . DY) (WIDTH . HEIGHT))
0f03054a 698The `posn-' functions access elements of such lists."
5ef6a86d
SM
699 (if (consp event) (nth (if (consp (nth 2 event)) 2 1) event)
700 (list (selected-window) (point) '(0 . 0) 0)))
0f03054a 701
32295976
RS
702(defsubst event-click-count (event)
703 "Return the multi-click count of EVENT, a click or drag event.
704The return value is a positive integer."
5ef6a86d 705 (if (and (consp event) (integerp (nth 2 event))) (nth 2 event) 1))
32295976 706
0f03054a
RS
707(defsubst posn-window (position)
708 "Return the window in POSITION.
79bcefe2 709POSITION should be a list of the form returned by the `event-start'
a6d2eef7 710and `event-end' functions."
0f03054a
RS
711 (nth 0 position))
712
79bcefe2
KS
713(defsubst posn-area (position)
714 "Return the window area recorded in POSITION, or nil for the text area.
715POSITION should be a list of the form returned by the `event-start'
a6d2eef7 716and `event-end' functions."
79bcefe2
KS
717 (let ((area (if (consp (nth 1 position))
718 (car (nth 1 position))
719 (nth 1 position))))
720 (and (symbolp area) area)))
721
0f03054a
RS
722(defsubst posn-point (position)
723 "Return the buffer location in POSITION.
79bcefe2 724POSITION should be a list of the form returned by the `event-start'
a6d2eef7 725and `event-end' functions."
79bcefe2
KS
726 (or (nth 5 position)
727 (if (consp (nth 1 position))
728 (car (nth 1 position))
729 (nth 1 position))))
0f03054a 730
17f53ffa
SM
731(defun posn-set-point (position)
732 "Move point to POSITION.
733Select the corresponding window as well."
3affc0c7 734 (if (not (windowp (posn-window position)))
17f53ffa 735 (error "Position not in text area of window"))
3affc0c7
JPW
736 (select-window (posn-window position))
737 (if (numberp (posn-point position))
738 (goto-char (posn-point position))))
17f53ffa 739
e55c21be
RS
740(defsubst posn-x-y (position)
741 "Return the x and y coordinates in POSITION.
79bcefe2 742POSITION should be a list of the form returned by the `event-start'
a6d2eef7 743and `event-end' functions."
0f03054a
RS
744 (nth 2 position))
745
ed627e08 746(defun posn-col-row (position)
79bcefe2
KS
747 "Return the nominal column and row in POSITION, measured in characters.
748The column and row values are approximations calculated from the x
749and y coordinates in POSITION and the frame's default character width
a6d2eef7 750and height.
ed627e08 751For a scroll-bar event, the result column is 0, and the row
79bcefe2
KS
752corresponds to the vertical position of the click in the scroll bar.
753POSITION should be a list of the form returned by the `event-start'
a6d2eef7 754and `event-end' functions."
79bcefe2
KS
755 (let* ((pair (posn-x-y position))
756 (window (posn-window position))
757 (area (posn-area position)))
758 (cond
759 ((null window)
760 '(0 . 0))
761 ((eq area 'vertical-scroll-bar)
762 (cons 0 (scroll-bar-scale pair (1- (window-height window)))))
763 ((eq area 'horizontal-scroll-bar)
764 (cons (scroll-bar-scale pair (window-width window)) 0))
765 (t
766 (let* ((frame (if (framep window) window (window-frame window)))
767 (x (/ (car pair) (frame-char-width frame)))
768 (y (/ (cdr pair) (+ (frame-char-height frame)
769 (or (frame-parameter frame 'line-spacing)
770 default-line-spacing
771 0)))))
772 (cons x y))))))
773
774(defun posn-actual-col-row (position)
775 "Return the actual column and row in POSITION, measured in characters.
776These are the actual row number in the window and character number in that row.
777Return nil if POSITION does not contain the actual position; in that case
778`posn-col-row' can be used to get approximate values.
779POSITION should be a list of the form returned by the `event-start'
a6d2eef7 780and `event-end' functions."
79bcefe2 781 (nth 6 position))
e55c21be 782
0f03054a
RS
783(defsubst posn-timestamp (position)
784 "Return the timestamp of POSITION.
79bcefe2 785POSITION should be a list of the form returned by the `event-start'
a6d2eef7 786and `event-end' functions."
0f03054a 787 (nth 3 position))
9a5336ae 788
4385264a
KS
789(defsubst posn-string (position)
790 "Return the string object of POSITION, or nil if a buffer position.
79bcefe2 791POSITION should be a list of the form returned by the `event-start'
a6d2eef7 792and `event-end' functions."
79bcefe2
KS
793 (nth 4 position))
794
4385264a
KS
795(defsubst posn-image (position)
796 "Return the image object of POSITION, or nil if a not an image.
797POSITION should be a list of the form returned by the `event-start'
a6d2eef7 798and `event-end' functions."
4385264a
KS
799 (nth 7 position))
800
801(defsubst posn-object (position)
802 "Return the object (image or string) of POSITION.
803POSITION should be a list of the form returned by the `event-start'
a6d2eef7 804and `event-end' functions."
4385264a
KS
805 (or (posn-image position) (posn-string position)))
806
e08f9a0d
KS
807(defsubst posn-object-x-y (position)
808 "Return the x and y coordinates relative to the object of POSITION.
809POSITION should be a list of the form returned by the `event-start'
a6d2eef7 810and `event-end' functions."
4385264a
KS
811 (nth 8 position))
812
813(defsubst posn-object-width-height (position)
814 "Return the pixel width and height of the object of POSITION.
815POSITION should be a list of the form returned by the `event-start'
a6d2eef7 816and `event-end' functions."
4385264a 817 (nth 9 position))
e08f9a0d 818
0f03054a 819\f
9a5336ae
JB
820;;;; Obsolescent names for functions.
821
059184dd
ER
822(defalias 'dot 'point)
823(defalias 'dot-marker 'point-marker)
824(defalias 'dot-min 'point-min)
825(defalias 'dot-max 'point-max)
826(defalias 'window-dot 'window-point)
827(defalias 'set-window-dot 'set-window-point)
828(defalias 'read-input 'read-string)
829(defalias 'send-string 'process-send-string)
830(defalias 'send-region 'process-send-region)
831(defalias 'show-buffer 'set-window-buffer)
832(defalias 'buffer-flush-undo 'buffer-disable-undo)
833(defalias 'eval-current-buffer 'eval-buffer)
834(defalias 'compiled-function-p 'byte-code-function-p)
ae1cc031 835(defalias 'define-function 'defalias)
be9b65ac 836
0cba3a0f 837(defalias 'sref 'aref)
2598a293 838(make-obsolete 'sref 'aref "20.4")
1c12af5c 839(make-obsolete 'char-bytes "now always returns 1." "20.4")
9af6aa14 840(make-obsolete 'chars-in-region "use (abs (- BEG END))." "20.3")
b4591b37
JB
841(make-obsolete 'dot 'point "before 19.15")
842(make-obsolete 'dot-max 'point-max "before 19.15")
843(make-obsolete 'dot-min 'point-min "before 19.15")
844(make-obsolete 'dot-marker 'point-marker "before 19.15")
845(make-obsolete 'buffer-flush-undo 'buffer-disable-undo "before 19.15")
846(make-obsolete 'baud-rate "use the baud-rate variable instead." "before 19.15")
847(make-obsolete 'compiled-function-p 'byte-code-function-p "before 19.15")
848(make-obsolete 'define-function 'defalias "20.1")
6bb762b3 849
676927b7
PJ
850(defun insert-string (&rest args)
851 "Mocklisp-compatibility insert function.
852Like the function `insert' except that any argument that is a number
853is converted into a string by expressing it in decimal."
854 (dolist (el args)
855 (insert (if (integerp el) (number-to-string el) el))))
9e028368
SM
856(make-obsolete 'insert-string 'insert "21.4")
857(defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
858(make-obsolete 'makehash 'make-hash-table "21.4")
676927b7 859
9a5336ae
JB
860;; Some programs still use this as a function.
861(defun baud-rate ()
8eb93953 862 "Return the value of the `baud-rate' variable."
9a5336ae
JB
863 baud-rate)
864
0a5c0893
MB
865(defalias 'focus-frame 'ignore)
866(defalias 'unfocus-frame 'ignore)
bd292357
JB
867
868\f
869;;;; Obsolescence declarations for variables.
870
871(make-obsolete-variable 'directory-sep-char "do not use it." "21.1")
872(make-obsolete-variable 'mode-line-inverse-video "use the appropriate faces instead." "21.1")
873(make-obsolete-variable 'unread-command-char
874 "use `unread-command-events' instead. That variable is a list of events to reread, so it now uses nil to mean `no event', instead of -1."
875 "before 19.15")
876(make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34")
877(make-obsolete-variable 'post-command-idle-hook
878 "use timers instead, with `run-with-idle-timer'." "before 19.34")
879(make-obsolete-variable 'post-command-idle-delay
880 "use timers instead, with `run-with-idle-timer'." "before 19.34")
881
9a5336ae
JB
882\f
883;;;; Alternate names for functions - these are not being phased out.
884
059184dd
ER
885(defalias 'string= 'string-equal)
886(defalias 'string< 'string-lessp)
887(defalias 'move-marker 'set-marker)
059184dd
ER
888(defalias 'rplaca 'setcar)
889(defalias 'rplacd 'setcdr)
eb8c3be9 890(defalias 'beep 'ding) ;preserve lingual purity
059184dd
ER
891(defalias 'indent-to-column 'indent-to)
892(defalias 'backward-delete-char 'delete-backward-char)
893(defalias 'search-forward-regexp (symbol-function 're-search-forward))
894(defalias 'search-backward-regexp (symbol-function 're-search-backward))
895(defalias 'int-to-string 'number-to-string)
024ae2c6 896(defalias 'store-match-data 'set-match-data)
112f332f 897(defalias 'make-variable-frame-localizable 'make-variable-frame-local)
d6c22d46 898;; These are the XEmacs names:
475fb2fb
KH
899(defalias 'point-at-eol 'line-end-position)
900(defalias 'point-at-bol 'line-beginning-position)
37f6661a
JB
901
902;;; Should this be an obsolete name? If you decide it should, you get
903;;; to go through all the sources and change them.
059184dd 904(defalias 'string-to-int 'string-to-number)
be9b65ac 905\f
9a5336ae 906;;;; Hook manipulation functions.
be9b65ac 907
0e4d378b
RS
908(defun make-local-hook (hook)
909 "Make the hook HOOK local to the current buffer.
71c78f01
RS
910The return value is HOOK.
911
c344cf32
SM
912You never need to call this function now that `add-hook' does it for you
913if its LOCAL argument is non-nil.
914
0e4d378b
RS
915When a hook is local, its local and global values
916work in concert: running the hook actually runs all the hook
917functions listed in *either* the local value *or* the global value
918of the hook variable.
919
08b1f8a1 920This function works by making t a member of the buffer-local value,
7dd1926e
RS
921which acts as a flag to run the hook functions in the default value as
922well. This works for all normal hooks, but does not work for most
923non-normal hooks yet. We will be changing the callers of non-normal
924hooks so that they can handle localness; this has to be done one by
925one.
926
927This function does nothing if HOOK is already local in the current
928buffer.
0e4d378b
RS
929
930Do not use `make-local-variable' to make a hook variable buffer-local."
931 (if (local-variable-p hook)
932 nil
933 (or (boundp hook) (set hook nil))
934 (make-local-variable hook)
71c78f01
RS
935 (set hook (list t)))
936 hook)
8eb93953 937(make-obsolete 'make-local-hook "not necessary any more." "21.1")
0e4d378b
RS
938
939(defun add-hook (hook function &optional append local)
32295976
RS
940 "Add to the value of HOOK the function FUNCTION.
941FUNCTION is not added if already present.
942FUNCTION is added (if necessary) at the beginning of the hook list
943unless the optional argument APPEND is non-nil, in which case
944FUNCTION is added at the end.
945
0e4d378b
RS
946The optional fourth argument, LOCAL, if non-nil, says to modify
947the hook's buffer-local value rather than its default value.
61a3d8c4
RS
948This makes the hook buffer-local if needed, and it makes t a member
949of the buffer-local value. That acts as a flag to run the hook
950functions in the default value as well as in the local value.
0e4d378b 951
32295976
RS
952HOOK should be a symbol, and FUNCTION may be any valid function. If
953HOOK is void, it is first set to nil. If HOOK's value is a single
aa09b5ca 954function, it is changed to a list of functions."
be9b65ac 955 (or (boundp hook) (set hook nil))
0e4d378b 956 (or (default-boundp hook) (set-default hook nil))
08b1f8a1
GM
957 (if local (unless (local-variable-if-set-p hook)
958 (set (make-local-variable hook) (list t)))
8947a5e2
SM
959 ;; Detect the case where make-local-variable was used on a hook
960 ;; and do what we used to do.
552eb607 961 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook)))
8947a5e2
SM
962 (setq local t)))
963 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
964 ;; If the hook value is a single function, turn it into a list.
965 (when (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
2248c40d 966 (setq hook-value (list hook-value)))
8947a5e2
SM
967 ;; Do the actual addition if necessary
968 (unless (member function hook-value)
969 (setq hook-value
970 (if append
971 (append hook-value (list function))
972 (cons function hook-value))))
973 ;; Set the actual variable
974 (if local (set hook hook-value) (set-default hook hook-value))))
0e4d378b
RS
975
976(defun remove-hook (hook function &optional local)
24980d16
RS
977 "Remove from the value of HOOK the function FUNCTION.
978HOOK should be a symbol, and FUNCTION may be any valid function. If
979FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
0e4d378b
RS
980list of hooks to run in HOOK, then nothing is done. See `add-hook'.
981
982The optional third argument, LOCAL, if non-nil, says to modify
b7a1c900 983the hook's buffer-local value rather than its default value."
8947a5e2
SM
984 (or (boundp hook) (set hook nil))
985 (or (default-boundp hook) (set-default hook nil))
b7a1c900
RS
986 ;; Do nothing if LOCAL is t but this hook has no local binding.
987 (unless (and local (not (local-variable-p hook)))
8947a5e2
SM
988 ;; Detect the case where make-local-variable was used on a hook
989 ;; and do what we used to do.
b7a1c900
RS
990 (when (and (local-variable-p hook)
991 (not (and (consp (symbol-value hook))
992 (memq t (symbol-value hook)))))
993 (setq local t))
994 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
995 ;; Remove the function, for both the list and the non-list cases.
996 (if (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
997 (if (equal hook-value function) (setq hook-value nil))
998 (setq hook-value (delete function (copy-sequence hook-value))))
999 ;; If the function is on the global hook, we need to shadow it locally
1000 ;;(when (and local (member function (default-value hook))
1001 ;; (not (member (cons 'not function) hook-value)))
1002 ;; (push (cons 'not function) hook-value))
1003 ;; Set the actual variable
1004 (if (not local)
1005 (set-default hook hook-value)
1006 (if (equal hook-value '(t))
1007 (kill-local-variable hook)
1008 (set hook hook-value))))))
6e3af630 1009
c8bfa689 1010(defun add-to-list (list-var element &optional append)
8851c1f0 1011 "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
9f0b1f09 1012The test for presence of ELEMENT is done with `equal'.
c8bfa689
MB
1013If ELEMENT is added, it is added at the beginning of the list,
1014unless the optional argument APPEND is non-nil, in which case
1015ELEMENT is added at the end.
508bcbca 1016
daebae3d
PJ
1017The return value is the new value of LIST-VAR.
1018
8851c1f0
RS
1019If you want to use `add-to-list' on a variable that is not defined
1020until a certain package is loaded, you should put the call to `add-to-list'
1021into a hook function that will be run only after loading the package.
1022`eval-after-load' provides one way to do this. In some cases
1023other hooks, such as major mode hooks, can do the job."
15171a06
KH
1024 (if (member element (symbol-value list-var))
1025 (symbol-value list-var)
c8bfa689
MB
1026 (set list-var
1027 (if append
1028 (append (symbol-value list-var) (list element))
1029 (cons element (symbol-value list-var))))))
448a0170
MB
1030
1031\f
1032;;; Load history
1033
a2c4ae01
RS
1034;;; (defvar symbol-file-load-history-loaded nil
1035;;; "Non-nil means we have loaded the file `fns-VERSION.el' in `exec-directory'.
1036;;; That file records the part of `load-history' for preloaded files,
1037;;; which is cleared out before dumping to make Emacs smaller.")
1038
1039;;; (defun load-symbol-file-load-history ()
1040;;; "Load the file `fns-VERSION.el' in `exec-directory' if not already done.
1041;;; That file records the part of `load-history' for preloaded files,
1042;;; which is cleared out before dumping to make Emacs smaller."
1043;;; (unless symbol-file-load-history-loaded
1044;;; (load (expand-file-name
1045;;; ;; fns-XX.YY.ZZ.el does not work on DOS filesystem.
1046;;; (if (eq system-type 'ms-dos)
1047;;; "fns.el"
1048;;; (format "fns-%s.el" emacs-version))
1049;;; exec-directory)
1050;;; ;; The file name fns-%s.el already has a .el extension.
1051;;; nil nil t)
1052;;; (setq symbol-file-load-history-loaded t)))
448a0170
MB
1053
1054(defun symbol-file (function)
1055 "Return the input source from which FUNCTION was loaded.
1056The value is normally a string that was passed to `load':
1057either an absolute file name, or a library name
1058\(with no directory name and no `.el' or `.elc' at the end).
1059It can also be nil, if the definition is not associated with any file."
e9f13a95
SM
1060 (if (and (symbolp function) (fboundp function)
1061 (eq 'autoload (car-safe (symbol-function function))))
1062 (nth 1 (symbol-function function))
1063 (let ((files load-history)
cb21744e 1064 file)
e9f13a95 1065 (while files
12320833 1066 (if (member function (cdr (car files)))
e9f13a95
SM
1067 (setq file (car (car files)) files nil))
1068 (setq files (cdr files)))
1069 file)))
448a0170 1070
be9b65ac 1071\f
9a5336ae
JB
1072;;;; Specifying things to do after certain files are loaded.
1073
1074(defun eval-after-load (file form)
1075 "Arrange that, if FILE is ever loaded, FORM will be run at that time.
1076This makes or adds to an entry on `after-load-alist'.
90914938 1077If FILE is already loaded, evaluate FORM right now.
12c7071c 1078It does nothing if FORM is already on the list for FILE.
19594307
DL
1079FILE must match exactly. Normally FILE is the name of a library,
1080with no directory or extension specified, since that is how `load'
a2d7836f
SM
1081is normally called.
1082FILE can also be a feature (i.e. a symbol), in which case FORM is
1083evaluated whenever that feature is `provide'd."
12c7071c 1084 (let ((elt (assoc file after-load-alist)))
a2d7836f
SM
1085 ;; Make sure there is an element for FILE.
1086 (unless elt (setq elt (list file)) (push elt after-load-alist))
1087 ;; Add FORM to the element if it isn't there.
1088 (unless (member form (cdr elt))
1089 (nconc elt (list form))
1090 ;; If the file has been loaded already, run FORM right away.
1091 (if (if (symbolp file)
1092 (featurep file)
1093 ;; Make sure `load-history' contains the files dumped with
1094 ;; Emacs for the case that FILE is one of them.
e9f13a95 1095 ;; (load-symbol-file-load-history)
a2d7836f
SM
1096 (assoc file load-history))
1097 (eval form))))
9a5336ae
JB
1098 form)
1099
1100(defun eval-next-after-load (file)
1101 "Read the following input sexp, and run it whenever FILE is loaded.
1102This makes or adds to an entry on `after-load-alist'.
1103FILE should be the name of a library, with no directory name."
1104 (eval-after-load file (read)))
7aaacaff
RS
1105\f
1106;;; make-network-process wrappers
1107
1108(if (featurep 'make-network-process)
1109 (progn
1110
1111(defun open-network-stream (name buffer host service)
1112 "Open a TCP connection for a service to a host.
1113Returns a subprocess-object to represent the connection.
1114Input and output work as for subprocesses; `delete-process' closes it.
1115Args are NAME BUFFER HOST SERVICE.
1116NAME is name for process. It is modified if necessary to make it unique.
1117BUFFER is the buffer (or buffer-name) to associate with the process.
1118 Process output goes at end of that buffer, unless you specify
1119 an output stream or filter function to handle the output.
1120 BUFFER may be also nil, meaning that this process is not associated
1121 with any buffer
1122Third arg is name of the host to connect to, or its IP address.
1123Fourth arg SERVICE is name of the service desired, or an integer
1124specifying a port number to connect to."
1125 (make-network-process :name name :buffer buffer
1126 :host host :service service))
1127
1128(defun open-network-stream-nowait (name buffer host service &optional sentinel filter)
1129 "Initiate connection to a TCP connection for a service to a host.
1130It returns nil if non-blocking connects are not supported; otherwise,
1131it returns a subprocess-object to represent the connection.
1132
1133This function is similar to `open-network-stream', except that this
1134function returns before the connection is established. When the
1135connection is completed, the sentinel function will be called with
1136second arg matching `open' (if successful) or `failed' (on error).
1137
1138Args are NAME BUFFER HOST SERVICE SENTINEL FILTER.
1139NAME, BUFFER, HOST, and SERVICE are as for `open-network-stream'.
1140Optional args, SENTINEL and FILTER specifies the sentinel and filter
1141functions to be used for this network stream."
1142 (if (featurep 'make-network-process '(:nowait t))
1143 (make-network-process :name name :buffer buffer :nowait t
1144 :host host :service service
1145 :filter filter :sentinel sentinel)))
1146
1147(defun open-network-stream-server (name buffer service &optional sentinel filter)
1148 "Create a network server process for a TCP service.
1149It returns nil if server processes are not supported; otherwise,
1150it returns a subprocess-object to represent the server.
1151
1152When a client connects to the specified service, a new subprocess
1153is created to handle the new connection, and the sentinel function
1154is called for the new process.
1155
1156Args are NAME BUFFER SERVICE SENTINEL FILTER.
1157NAME is name for the server process. Client processes are named by
1158appending the ip-address and port number of the client to NAME.
1159BUFFER is the buffer (or buffer-name) to associate with the server
1160process. Client processes will not get a buffer if a process filter
1161is specified or BUFFER is nil; otherwise, a new buffer is created for
1162the client process. The name is similar to the process name.
1163Third arg SERVICE is name of the service desired, or an integer
1164specifying a port number to connect to. It may also be t to selected
1165an unused port number for the server.
1166Optional args, SENTINEL and FILTER specifies the sentinel and filter
1167functions to be used for the client processes; the server process
1168does not use these function."
1169 (if (featurep 'make-network-process '(:server t))
1170 (make-network-process :name name :buffer buffer
1171 :service service :server t :noquery t
1172 :sentinel sentinel :filter filter)))
1173
1174)) ;; (featurep 'make-network-process)
1175
1176
1177;; compatibility
1178
1179(defun process-kill-without-query (process &optional flag)
1180 "Say no query needed if PROCESS is running when Emacs is exited.
1181Optional second argument if non-nil says to require a query.
264ef586 1182Value is t if a query was formerly required.
7aaacaff
RS
1183New code should not use this function; use `process-query-on-exit-flag'
1184or `set-process-query-on-exit-flag' instead."
1185 (let ((old (process-query-on-exit-flag process)))
1186 (set-process-query-on-exit-flag process nil)
1187 old))
9a5336ae 1188
34368d12
KS
1189;; process plist management
1190
1191(defun process-get (process propname)
1192 "Return the value of PROCESS' PROPNAME property.
1193This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
1194 (plist-get (process-plist process) propname))
1195
1196(defun process-put (process propname value)
1197 "Change PROCESS' PROPNAME property to VALUE.
1198It can be retrieved with `(process-get PROCESS PROPNAME)'."
f1180544 1199 (set-process-plist process
34368d12
KS
1200 (plist-put (process-plist process) propname value)))
1201
9a5336ae
JB
1202\f
1203;;;; Input and display facilities.
1204
77a5664f 1205(defvar read-quoted-char-radix 8
1ba764de 1206 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
77a5664f
RS
1207Legitimate radix values are 8, 10 and 16.")
1208
1209(custom-declare-variable-early
264ef586 1210 'read-quoted-char-radix 8
77a5664f 1211 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
1ba764de
RS
1212Legitimate radix values are 8, 10 and 16."
1213 :type '(choice (const 8) (const 10) (const 16))
1214 :group 'editing-basics)
1215
9a5336ae 1216(defun read-quoted-char (&optional prompt)
2444730b
RS
1217 "Like `read-char', but do not allow quitting.
1218Also, if the first character read is an octal digit,
1219we read any number of octal digits and return the
569b03f2 1220specified character code. Any nondigit terminates the sequence.
1ba764de 1221If the terminator is RET, it is discarded;
2444730b
RS
1222any other terminator is used itself as input.
1223
569b03f2
RS
1224The optional argument PROMPT specifies a string to use to prompt the user.
1225The variable `read-quoted-char-radix' controls which radix to use
1226for numeric input."
c83256a0 1227 (let ((message-log-max nil) done (first t) (code 0) char translated)
2444730b
RS
1228 (while (not done)
1229 (let ((inhibit-quit first)
42e636f0
KH
1230 ;; Don't let C-h get the help message--only help function keys.
1231 (help-char nil)
1232 (help-form
1233 "Type the special character you want to use,
2444730b 1234or the octal character code.
1ba764de 1235RET terminates the character code and is discarded;
2444730b 1236any other non-digit terminates the character code and is then used as input."))
3f0161d0 1237 (setq char (read-event (and prompt (format "%s-" prompt)) t))
9a5336ae 1238 (if inhibit-quit (setq quit-flag nil)))
3f0161d0
SM
1239 ;; Translate TAB key into control-I ASCII character, and so on.
1240 ;; Note: `read-char' does it using the `ascii-character' property.
1241 ;; We could try and use read-key-sequence instead, but then C-q ESC
1242 ;; or C-q C-x might not return immediately since ESC or C-x might be
1243 ;; bound to some prefix in function-key-map or key-translation-map.
c83256a0
RS
1244 (setq translated char)
1245 (let ((translation (lookup-key function-key-map (vector char))))
1246 (if (arrayp translation)
1247 (setq translated (aref translation 0))))
1248 (cond ((null translated))
1249 ((not (integerp translated))
1250 (setq unread-command-events (list char)
1ba764de 1251 done t))
c83256a0 1252 ((/= (logand translated ?\M-\^@) 0)
bf896a1b 1253 ;; Turn a meta-character into a character with the 0200 bit set.
c83256a0 1254 (setq code (logior (logand translated (lognot ?\M-\^@)) 128)
bf896a1b 1255 done t))
c83256a0
RS
1256 ((and (<= ?0 translated) (< translated (+ ?0 (min 10 read-quoted-char-radix))))
1257 (setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
1258 (and prompt (setq prompt (message "%s %c" prompt translated))))
1259 ((and (<= ?a (downcase translated))
d47f7515 1260 (< (downcase translated) (+ ?a -10 (min 36 read-quoted-char-radix))))
92304bc8 1261 (setq code (+ (* code read-quoted-char-radix)
c83256a0
RS
1262 (+ 10 (- (downcase translated) ?a))))
1263 (and prompt (setq prompt (message "%s %c" prompt translated))))
1264 ((and (not first) (eq translated ?\C-m))
2444730b
RS
1265 (setq done t))
1266 ((not first)
c83256a0 1267 (setq unread-command-events (list char)
2444730b 1268 done t))
c83256a0 1269 (t (setq code translated
2444730b
RS
1270 done t)))
1271 (setq first nil))
bf896a1b 1272 code))
9a5336ae 1273
44071d6b
RS
1274(defun read-passwd (prompt &optional confirm default)
1275 "Read a password, prompting with PROMPT. Echo `.' for each character typed.
e0e4cb7a 1276End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line.
44071d6b
RS
1277Optional argument CONFIRM, if non-nil, then read it twice to make sure.
1278Optional DEFAULT is a default password to use instead of empty input."
1279 (if confirm
1280 (let (success)
1281 (while (not success)
1282 (let ((first (read-passwd prompt nil default))
1283 (second (read-passwd "Confirm password: " nil default)))
1284 (if (equal first second)
fe10cef0 1285 (progn
f0491f76 1286 (and (arrayp second) (clear-string second))
fe10cef0 1287 (setq success first))
f0491f76
RS
1288 (and (arrayp first) (clear-string first))
1289 (and (arrayp second) (clear-string second))
44071d6b
RS
1290 (message "Password not repeated accurately; please start over")
1291 (sit-for 1))))
1292 success)
1293 (let ((pass nil)
1294 (c 0)
1295 (echo-keystrokes 0)
1296 (cursor-in-echo-area t))
1297 (while (progn (message "%s%s"
1298 prompt
1299 (make-string (length pass) ?.))
42ccb7c8 1300 (setq c (read-char-exclusive nil t))
44071d6b 1301 (and (/= c ?\r) (/= c ?\n) (/= c ?\e)))
719349f6 1302 (clear-this-command-keys)
44071d6b 1303 (if (= c ?\C-u)
fe10cef0 1304 (progn
f0491f76 1305 (and (arrayp pass) (clear-string pass))
fe10cef0 1306 (setq pass ""))
44071d6b 1307 (if (and (/= c ?\b) (/= c ?\177))
fe10cef0
GM
1308 (let* ((new-char (char-to-string c))
1309 (new-pass (concat pass new-char)))
f0491f76
RS
1310 (and (arrayp pass) (clear-string pass))
1311 (clear-string new-char)
fe10cef0
GM
1312 (setq c ?\0)
1313 (setq pass new-pass))
44071d6b 1314 (if (> (length pass) 0)
fe10cef0 1315 (let ((new-pass (substring pass 0 -1)))
f0491f76 1316 (and (arrayp pass) (clear-string pass))
fe10cef0 1317 (setq pass new-pass))))))
44071d6b
RS
1318 (message nil)
1319 (or pass default ""))))
9bf2aa6a
SM
1320
1321;; This should be used by `call-interactively' for `n' specs.
1322(defun read-number (prompt &optional default)
1323 (let ((n nil))
1324 (when default
1325 (setq prompt
1326 (if (string-match "\\(\\):[^:]*" prompt)
1327 (replace-match (format " [%s]" default) t t prompt 1)
1328 (concat prompt (format " [%s] " default)))))
1329 (while
1330 (progn
1331 (let ((str (read-from-minibuffer prompt nil nil nil nil
c7863346
SM
1332 (and default
1333 (number-to-string default)))))
9bf2aa6a
SM
1334 (setq n (cond
1335 ((zerop (length str)) default)
1336 ((stringp str) (read str)))))
1337 (unless (numberp n)
1338 (message "Please enter a number.")
1339 (sit-for 1)
1340 t)))
1341 n))
e0e4cb7a 1342\f
2493767e
RS
1343;;; Atomic change groups.
1344
69cae2d4
RS
1345(defmacro atomic-change-group (&rest body)
1346 "Perform BODY as an atomic change group.
1347This means that if BODY exits abnormally,
1348all of its changes to the current buffer are undone.
b9ab4064 1349This works regardless of whether undo is enabled in the buffer.
69cae2d4
RS
1350
1351This mechanism is transparent to ordinary use of undo;
1352if undo is enabled in the buffer and BODY succeeds, the
1353user can undo the change normally."
1354 (let ((handle (make-symbol "--change-group-handle--"))
1355 (success (make-symbol "--change-group-success--")))
1356 `(let ((,handle (prepare-change-group))
1357 (,success nil))
1358 (unwind-protect
1359 (progn
1360 ;; This is inside the unwind-protect because
1361 ;; it enables undo if that was disabled; we need
1362 ;; to make sure that it gets disabled again.
1363 (activate-change-group ,handle)
1364 ,@body
1365 (setq ,success t))
1366 ;; Either of these functions will disable undo
1367 ;; if it was disabled before.
1368 (if ,success
1369 (accept-change-group ,handle)
1370 (cancel-change-group ,handle))))))
1371
62ea1306 1372(defun prepare-change-group (&optional buffer)
69cae2d4 1373 "Return a handle for the current buffer's state, for a change group.
62ea1306 1374If you specify BUFFER, make a handle for BUFFER's state instead.
69cae2d4
RS
1375
1376Pass the handle to `activate-change-group' afterward to initiate
1377the actual changes of the change group.
1378
1379To finish the change group, call either `accept-change-group' or
1380`cancel-change-group' passing the same handle as argument. Call
1381`accept-change-group' to accept the changes in the group as final;
1382call `cancel-change-group' to undo them all. You should use
1383`unwind-protect' to make sure the group is always finished. The call
1384to `activate-change-group' should be inside the `unwind-protect'.
1385Once you finish the group, don't use the handle again--don't try to
1386finish the same group twice. For a simple example of correct use, see
1387the source code of `atomic-change-group'.
1388
1389The handle records only the specified buffer. To make a multibuffer
1390change group, call this function once for each buffer you want to
1391cover, then use `nconc' to combine the returned values, like this:
1392
1393 (nconc (prepare-change-group buffer-1)
1394 (prepare-change-group buffer-2))
1395
1396You can then activate that multibuffer change group with a single
1397call to `activate-change-group' and finish it with a single call
1398to `accept-change-group' or `cancel-change-group'."
1399
62ea1306
RS
1400 (if buffer
1401 (list (cons buffer (with-current-buffer buffer buffer-undo-list)))
1402 (list (cons (current-buffer) buffer-undo-list))))
69cae2d4
RS
1403
1404(defun activate-change-group (handle)
1405 "Activate a change group made with `prepare-change-group' (which see)."
1406 (dolist (elt handle)
1407 (with-current-buffer (car elt)
1408 (if (eq buffer-undo-list t)
1409 (setq buffer-undo-list nil)))))
1410
1411(defun accept-change-group (handle)
1412 "Finish a change group made with `prepare-change-group' (which see).
1413This finishes the change group by accepting its changes as final."
1414 (dolist (elt handle)
1415 (with-current-buffer (car elt)
1416 (if (eq elt t)
1417 (setq buffer-undo-list t)))))
1418
1419(defun cancel-change-group (handle)
1420 "Finish a change group made with `prepare-change-group' (which see).
1421This finishes the change group by reverting all of its changes."
1422 (dolist (elt handle)
1423 (with-current-buffer (car elt)
1424 (setq elt (cdr elt))
264ef586 1425 (let ((old-car
69cae2d4
RS
1426 (if (consp elt) (car elt)))
1427 (old-cdr
1428 (if (consp elt) (cdr elt))))
1429 ;; Temporarily truncate the undo log at ELT.
1430 (when (consp elt)
1431 (setcar elt nil) (setcdr elt nil))
1432 (unless (eq last-command 'undo) (undo-start))
1433 ;; Make sure there's no confusion.
1434 (when (and (consp elt) (not (eq elt (last pending-undo-list))))
1435 (error "Undoing to some unrelated state"))
1436 ;; Undo it all.
1437 (while pending-undo-list (undo-more 1))
1438 ;; Reset the modified cons cell ELT to its original content.
1439 (when (consp elt)
1440 (setcar elt old-car)
1441 (setcdr elt old-cdr))
1442 ;; Revert the undo info to what it was when we grabbed the state.
1443 (setq buffer-undo-list elt)))))
1444\f
a9d956be
RS
1445;; For compatibility.
1446(defalias 'redraw-modeline 'force-mode-line-update)
1447
9a5336ae 1448(defun force-mode-line-update (&optional all)
926dd40c
LK
1449 "Force redisplay of the current buffer's mode line and header line.
1450With optional non-nil ALL, force redisplay of all mode lines and
1451header lines. This function also forces recomputation of the
1452menu bar menus and the frame title."
9a5336ae
JB
1453 (if all (save-excursion (set-buffer (other-buffer))))
1454 (set-buffer-modified-p (buffer-modified-p)))
1455
aa3b4ded 1456(defun momentary-string-display (string pos &optional exit-char message)
be9b65ac
DL
1457 "Momentarily display STRING in the buffer at POS.
1458Display remains until next character is typed.
1459If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
1460otherwise it is then available as input (as a command if nothing else).
1461Display MESSAGE (optional fourth arg) in the echo area.
1462If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
1463 (or exit-char (setq exit-char ?\ ))
c306e0e0 1464 (let ((inhibit-read-only t)
ca2ec1c5
RS
1465 ;; Don't modify the undo list at all.
1466 (buffer-undo-list t)
be9b65ac
DL
1467 (modified (buffer-modified-p))
1468 (name buffer-file-name)
1469 insert-end)
1470 (unwind-protect
1471 (progn
1472 (save-excursion
1473 (goto-char pos)
1474 ;; defeat file locking... don't try this at home, kids!
1475 (setq buffer-file-name nil)
1476 (insert-before-markers string)
3eec84bf
RS
1477 (setq insert-end (point))
1478 ;; If the message end is off screen, recenter now.
024ae2c6 1479 (if (< (window-end nil t) insert-end)
3eec84bf
RS
1480 (recenter (/ (window-height) 2)))
1481 ;; If that pushed message start off the screen,
1482 ;; scroll to start it at the top of the screen.
1483 (move-to-window-line 0)
1484 (if (> (point) pos)
1485 (progn
1486 (goto-char pos)
1487 (recenter 0))))
be9b65ac
DL
1488 (message (or message "Type %s to continue editing.")
1489 (single-key-description exit-char))
3547c855 1490 (let ((char (read-event)))
be9b65ac 1491 (or (eq char exit-char)
dbc4e1c1 1492 (setq unread-command-events (list char)))))
be9b65ac
DL
1493 (if insert-end
1494 (save-excursion
1495 (delete-region pos insert-end)))
1496 (setq buffer-file-name name)
1497 (set-buffer-modified-p modified))))
1498
9a5336ae 1499\f
aa3b4ded
SM
1500;;;; Overlay operations
1501
1502(defun copy-overlay (o)
1503 "Return a copy of overlay O."
1504 (let ((o1 (make-overlay (overlay-start o) (overlay-end o)
1505 ;; FIXME: there's no easy way to find the
1506 ;; insertion-type of the two markers.
1507 (overlay-buffer o)))
1508 (props (overlay-properties o)))
1509 (while props
1510 (overlay-put o1 (pop props) (pop props)))
1511 o1))
1512
1513(defun remove-overlays (beg end name val)
1514 "Clear BEG and END of overlays whose property NAME has value VAL.
1515Overlays might be moved and or split."
1516 (if (< end beg)
1517 (setq beg (prog1 end (setq end beg))))
1518 (save-excursion
1519 (dolist (o (overlays-in beg end))
1520 (when (eq (overlay-get o name) val)
1521 ;; Either push this overlay outside beg...end
1522 ;; or split it to exclude beg...end
1523 ;; or delete it entirely (if it is contained in beg...end).
1524 (if (< (overlay-start o) beg)
1525 (if (> (overlay-end o) end)
1526 (progn
1527 (move-overlay (copy-overlay o)
1528 (overlay-start o) beg)
1529 (move-overlay o end (overlay-end o)))
1530 (move-overlay o (overlay-start o) beg))
1531 (if (> (overlay-end o) end)
1532 (move-overlay o end (overlay-end o))
1533 (delete-overlay o)))))))
c5802acf 1534\f
9a5336ae
JB
1535;;;; Miscellanea.
1536
448b61c9
RS
1537;; A number of major modes set this locally.
1538;; Give it a global value to avoid compiler warnings.
1539(defvar font-lock-defaults nil)
1540
4fb17037
RS
1541(defvar suspend-hook nil
1542 "Normal hook run by `suspend-emacs', before suspending.")
1543
1544(defvar suspend-resume-hook nil
1545 "Normal hook run by `suspend-emacs', after Emacs is continued.")
1546
784bc7cd
RS
1547(defvar temp-buffer-show-hook nil
1548 "Normal hook run by `with-output-to-temp-buffer' after displaying the buffer.
1549When the hook runs, the temporary buffer is current, and the window it
1550was displayed in is selected. This hook is normally set up with a
1551function to make the buffer read only, and find function names and
1552variable names in it, provided the major mode is still Help mode.")
1553
1554(defvar temp-buffer-setup-hook nil
1555 "Normal hook run by `with-output-to-temp-buffer' at the start.
1556When the hook runs, the temporary buffer is current.
1557This hook is normally set up with a function to put the buffer in Help
1558mode.")
1559
448b61c9
RS
1560;; Avoid compiler warnings about this variable,
1561;; which has a special meaning on certain system types.
1562(defvar buffer-file-type nil
1563 "Non-nil if the visited file is a binary file.
1564This variable is meaningful on MS-DOG and Windows NT.
1565On those systems, it is automatically local in every buffer.
1566On other systems, this variable is normally always nil.")
1567
a860d25f 1568;; This should probably be written in C (i.e., without using `walk-windows').
63503b24 1569(defun get-buffer-window-list (buffer &optional minibuf frame)
a860d25f 1570 "Return windows currently displaying BUFFER, or nil if none.
63503b24 1571See `walk-windows' for the meaning of MINIBUF and FRAME."
43c5ac8c 1572 (let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows)
a860d25f
SM
1573 (walk-windows (function (lambda (window)
1574 (if (eq (window-buffer window) buffer)
1575 (setq windows (cons window windows)))))
63503b24 1576 minibuf frame)
a860d25f
SM
1577 windows))
1578
f9269e19
RS
1579(defun ignore (&rest ignore)
1580 "Do nothing and return nil.
1581This function accepts any number of arguments, but ignores them."
c0f1a4f6 1582 (interactive)
9a5336ae
JB
1583 nil)
1584
1585(defun error (&rest args)
aa308ce2
RS
1586 "Signal an error, making error message by passing all args to `format'.
1587In Emacs, the convention is that error messages start with a capital
1588letter but *do not* end with a period. Please follow this convention
1589for the sake of consistency."
9a5336ae
JB
1590 (while t
1591 (signal 'error (list (apply 'format args)))))
1592
cef7ae6e 1593(defalias 'user-original-login-name 'user-login-name)
9a5336ae 1594
2493767e
RS
1595(defvar yank-excluded-properties)
1596
8ed59ad5
KS
1597(defun remove-yank-excluded-properties (start end)
1598 "Remove `yank-excluded-properties' between START and END positions.
1599Replaces `category' properties with their defined properties."
1600 (let ((inhibit-read-only t))
1601 ;; Replace any `category' property with the properties it stands for.
1602 (unless (memq yank-excluded-properties '(t nil))
1603 (save-excursion
1604 (goto-char start)
1605 (while (< (point) end)
1606 (let ((cat (get-text-property (point) 'category))
1607 run-end)
8ed59ad5
KS
1608 (setq run-end
1609 (next-single-property-change (point) 'category nil end))
ebaa3349
RS
1610 (when cat
1611 (let (run-end2 original)
1612 (remove-list-of-text-properties (point) run-end '(category))
1613 (while (< (point) run-end)
1614 (setq run-end2 (next-property-change (point) nil run-end))
1615 (setq original (text-properties-at (point)))
1616 (set-text-properties (point) run-end2 (symbol-plist cat))
1617 (add-text-properties (point) run-end2 original)
1618 (goto-char run-end2))))
1619 (goto-char run-end)))))
8ed59ad5
KS
1620 (if (eq yank-excluded-properties t)
1621 (set-text-properties start end nil)
ebaa3349 1622 (remove-list-of-text-properties start end yank-excluded-properties))))
8ed59ad5 1623
e0e80ec9
KS
1624(defvar yank-undo-function)
1625
1626(defun insert-for-yank (string)
529c9409
EZ
1627 "Calls `insert-for-yank-1' repetitively for each `yank-handler' segment.
1628
1629See `insert-for-yank-1' for more details."
1630 (let (to)
1631 (while (setq to (next-single-property-change 0 'yank-handler string))
1632 (insert-for-yank-1 (substring string 0 to))
1633 (setq string (substring string to))))
1634 (insert-for-yank-1 string))
1635
1636(defun insert-for-yank-1 (string)
e0e80ec9 1637 "Insert STRING at point, stripping some text properties.
529c9409 1638
e0e80ec9
KS
1639Strip text properties from the inserted text according to
1640`yank-excluded-properties'. Otherwise just like (insert STRING).
1641
374d3fe7 1642If STRING has a non-nil `yank-handler' property on the first character,
e0e80ec9
KS
1643the normal insert behaviour is modified in various ways. The value of
1644the yank-handler property must be a list with one to five elements
9dd10e25 1645with the following format: (FUNCTION PARAM NOEXCLUDE UNDO).
e0e80ec9
KS
1646When FUNCTION is present and non-nil, it is called instead of `insert'
1647 to insert the string. FUNCTION takes one argument--the object to insert.
1648If PARAM is present and non-nil, it replaces STRING as the object
1649 passed to FUNCTION (or `insert'); for example, if FUNCTION is
1650 `yank-rectangle', PARAM may be a list of strings to insert as a
1651 rectangle.
1652If NOEXCLUDE is present and non-nil, the normal removal of the
1653 yank-excluded-properties is not performed; instead FUNCTION is
1654 responsible for removing those properties. This may be necessary
1655 if FUNCTION adjusts point before or after inserting the object.
1656If UNDO is present and non-nil, it is a function that will be called
1657 by `yank-pop' to undo the insertion of the current object. It is
f1180544 1658 called with two arguments, the start and end of the current region.
9dd10e25 1659 FUNCTION may set `yank-undo-function' to override the UNDO value."
57596fb6
KS
1660 (let* ((handler (and (stringp string)
1661 (get-text-property 0 'yank-handler string)))
1662 (param (or (nth 1 handler) string))
e0e80ec9 1663 (opoint (point)))
57596fb6
KS
1664 (setq yank-undo-function t)
1665 (if (nth 0 handler) ;; FUNCTION
1666 (funcall (car handler) param)
e0e80ec9 1667 (insert param))
57596fb6 1668 (unless (nth 2 handler) ;; NOEXCLUDE
e0e80ec9 1669 (remove-yank-excluded-properties opoint (point)))
57596fb6
KS
1670 (if (eq yank-undo-function t) ;; not set by FUNCTION
1671 (setq yank-undo-function (nth 3 handler))) ;; UNDO
1672 (if (nth 4 handler) ;; COMMAND
1673 (setq this-command (nth 4 handler)))))
f1180544 1674
3b8690f6
KS
1675(defun insert-buffer-substring-no-properties (buf &optional start end)
1676 "Insert before point a substring of buffer BUFFER, without text properties.
1677BUFFER may be a buffer or a buffer name.
1678Arguments START and END are character numbers specifying the substring.
1679They default to the beginning and the end of BUFFER."
1680 (let ((opoint (point)))
1681 (insert-buffer-substring buf start end)
1682 (let ((inhibit-read-only t))
1683 (set-text-properties opoint (point) nil))))
1684
1685(defun insert-buffer-substring-as-yank (buf &optional start end)
1686 "Insert before point a part of buffer BUFFER, stripping some text properties.
1687BUFFER may be a buffer or a buffer name. Arguments START and END are
1688character numbers specifying the substring. They default to the
1689beginning and the end of BUFFER. Strip text properties from the
1690inserted text according to `yank-excluded-properties'."
0e874d89
RS
1691 ;; Since the buffer text should not normally have yank-handler properties,
1692 ;; there is no need to handle them here.
3b8690f6
KS
1693 (let ((opoint (point)))
1694 (insert-buffer-substring buf start end)
8ed59ad5 1695 (remove-yank-excluded-properties opoint (point))))
3b8690f6 1696
2493767e
RS
1697\f
1698;; Synchronous shell commands.
1699
be9b65ac
DL
1700(defun start-process-shell-command (name buffer &rest args)
1701 "Start a program in a subprocess. Return the process object for it.
1702Args are NAME BUFFER COMMAND &rest COMMAND-ARGS.
1703NAME is name for process. It is modified if necessary to make it unique.
1704BUFFER is the buffer or (buffer-name) to associate with the process.
1705 Process output goes at end of that buffer, unless you specify
1706 an output stream or filter function to handle the output.
1707 BUFFER may be also nil, meaning that this process is not associated
1708 with any buffer
1709Third arg is command name, the name of a shell command.
1710Remaining arguments are the arguments for the command.
4f1d6310 1711Wildcards and redirection are handled as usual in the shell."
a247bf21
KH
1712 (cond
1713 ((eq system-type 'vax-vms)
1714 (apply 'start-process name buffer args))
b59f6d7a
RS
1715 ;; We used to use `exec' to replace the shell with the command,
1716 ;; but that failed to handle (...) and semicolon, etc.
a247bf21
KH
1717 (t
1718 (start-process name buffer shell-file-name shell-command-switch
b59f6d7a 1719 (mapconcat 'identity args " ")))))
93aca633
MB
1720
1721(defun call-process-shell-command (command &optional infile buffer display
1722 &rest args)
1723 "Execute the shell command COMMAND synchronously in separate process.
1724The remaining arguments are optional.
1725The program's input comes from file INFILE (nil means `/dev/null').
1726Insert output in BUFFER before point; t means current buffer;
1727 nil for BUFFER means discard it; 0 means discard and don't wait.
1728BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
1729REAL-BUFFER says what to do with standard output, as above,
1730while STDERR-FILE says what to do with standard error in the child.
1731STDERR-FILE may be nil (discard standard error output),
1732t (mix it with ordinary output), or a file name string.
1733
1734Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
1735Remaining arguments are strings passed as additional arguments for COMMAND.
1736Wildcards and redirection are handled as usual in the shell.
1737
1738If BUFFER is 0, `call-process-shell-command' returns immediately with value nil.
1739Otherwise it waits for COMMAND to terminate and returns a numeric exit
1740status or a signal description string.
1741If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
1742 (cond
1743 ((eq system-type 'vax-vms)
1744 (apply 'call-process command infile buffer display args))
1745 ;; We used to use `exec' to replace the shell with the command,
1746 ;; but that failed to handle (...) and semicolon, etc.
1747 (t
1748 (call-process shell-file-name
1749 infile buffer display
1750 shell-command-switch
1751 (mapconcat 'identity (cons command args) " ")))))
a7ed4c2a 1752\f
a7f284ec
RS
1753(defmacro with-current-buffer (buffer &rest body)
1754 "Execute the forms in BODY with BUFFER as the current buffer.
a2fdb55c
EN
1755The value returned is the value of the last form in BODY.
1756See also `with-temp-buffer'."
d47f7515
SM
1757 (declare (indent 1) (debug t))
1758 `(save-current-buffer
1759 (set-buffer ,buffer)
1760 ,@body))
1761
1762(defmacro with-selected-window (window &rest body)
1763 "Execute the forms in BODY with WINDOW as the selected window.
1764The value returned is the value of the last form in BODY.
4df623c0 1765This does not alter the buffer list ordering.
d47f7515
SM
1766See also `with-temp-buffer'."
1767 (declare (indent 1) (debug t))
4df623c0
RS
1768 ;; Most of this code is a copy of save-selected-window.
1769 `(let ((save-selected-window-window (selected-window))
1770 (save-selected-window-alist
1771 (mapcar (lambda (frame) (list frame (frame-selected-window frame)))
1772 (frame-list))))
1773 (unwind-protect
1774 (progn (select-window ,window 'norecord)
1775 ,@body)
1776 (dolist (elt save-selected-window-alist)
1777 (and (frame-live-p (car elt))
1778 (window-live-p (cadr elt))
1779 (set-frame-selected-window (car elt) (cadr elt))))
1780 (if (window-live-p save-selected-window-window)
1781 ;; This is where the code differs from save-selected-window.
ec589b78 1782 (select-window save-selected-window-window 'norecord)))))
a7f284ec 1783
e5bb8a8c
SM
1784(defmacro with-temp-file (file &rest body)
1785 "Create a new buffer, evaluate BODY there, and write the buffer to FILE.
1786The value returned is the value of the last form in BODY.
a2fdb55c 1787See also `with-temp-buffer'."
f30e0cd8 1788 (declare (debug t))
a7ed4c2a 1789 (let ((temp-file (make-symbol "temp-file"))
a2fdb55c
EN
1790 (temp-buffer (make-symbol "temp-buffer")))
1791 `(let ((,temp-file ,file)
1792 (,temp-buffer
1793 (get-buffer-create (generate-new-buffer-name " *temp file*"))))
1794 (unwind-protect
1795 (prog1
1796 (with-current-buffer ,temp-buffer
e5bb8a8c 1797 ,@body)
a2fdb55c
EN
1798 (with-current-buffer ,temp-buffer
1799 (widen)
1800 (write-region (point-min) (point-max) ,temp-file nil 0)))
1801 (and (buffer-name ,temp-buffer)
1802 (kill-buffer ,temp-buffer))))))
1803
e5bb8a8c 1804(defmacro with-temp-message (message &rest body)
a600effe 1805 "Display MESSAGE temporarily if non-nil while BODY is evaluated.
e5bb8a8c
SM
1806The original message is restored to the echo area after BODY has finished.
1807The value returned is the value of the last form in BODY.
a600effe
SM
1808MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
1809If MESSAGE is nil, the echo area and message log buffer are unchanged.
1810Use a MESSAGE of \"\" to temporarily clear the echo area."
f30e0cd8 1811 (declare (debug t))
110201c8
SM
1812 (let ((current-message (make-symbol "current-message"))
1813 (temp-message (make-symbol "with-temp-message")))
1814 `(let ((,temp-message ,message)
1815 (,current-message))
e5bb8a8c
SM
1816 (unwind-protect
1817 (progn
110201c8
SM
1818 (when ,temp-message
1819 (setq ,current-message (current-message))
aadf7ff3 1820 (message "%s" ,temp-message))
e5bb8a8c 1821 ,@body)
cad84646
RS
1822 (and ,temp-message
1823 (if ,current-message
1824 (message "%s" ,current-message)
1825 (message nil)))))))
e5bb8a8c
SM
1826
1827(defmacro with-temp-buffer (&rest body)
1828 "Create a temporary buffer, and evaluate BODY there like `progn'.
a2fdb55c 1829See also `with-temp-file' and `with-output-to-string'."
d47f7515 1830 (declare (indent 0) (debug t))
a2fdb55c
EN
1831 (let ((temp-buffer (make-symbol "temp-buffer")))
1832 `(let ((,temp-buffer
1833 (get-buffer-create (generate-new-buffer-name " *temp*"))))
1834 (unwind-protect
1835 (with-current-buffer ,temp-buffer
e5bb8a8c 1836 ,@body)
a2fdb55c
EN
1837 (and (buffer-name ,temp-buffer)
1838 (kill-buffer ,temp-buffer))))))
1839
5db7925d
RS
1840(defmacro with-output-to-string (&rest body)
1841 "Execute BODY, return the text it sent to `standard-output', as a string."
d47f7515 1842 (declare (indent 0) (debug t))
a2fdb55c
EN
1843 `(let ((standard-output
1844 (get-buffer-create (generate-new-buffer-name " *string-output*"))))
5db7925d
RS
1845 (let ((standard-output standard-output))
1846 ,@body)
a2fdb55c
EN
1847 (with-current-buffer standard-output
1848 (prog1
1849 (buffer-string)
1850 (kill-buffer nil)))))
2ec9c94e 1851
0764e16f
SM
1852(defmacro with-local-quit (&rest body)
1853 "Execute BODY with `inhibit-quit' temporarily bound to nil."
12320833 1854 (declare (debug t) (indent 0))
0764e16f
SM
1855 `(condition-case nil
1856 (let ((inhibit-quit nil))
1857 ,@body)
1858 (quit (setq quit-flag t))))
1859
2ec9c94e
RS
1860(defmacro combine-after-change-calls (&rest body)
1861 "Execute BODY, but don't call the after-change functions till the end.
1862If BODY makes changes in the buffer, they are recorded
1863and the functions on `after-change-functions' are called several times
1864when BODY is finished.
31aa282e 1865The return value is the value of the last form in BODY.
2ec9c94e
RS
1866
1867If `before-change-functions' is non-nil, then calls to the after-change
1868functions can't be deferred, so in that case this macro has no effect.
1869
1870Do not alter `after-change-functions' or `before-change-functions'
1871in BODY."
d47f7515 1872 (declare (indent 0) (debug t))
2ec9c94e
RS
1873 `(unwind-protect
1874 (let ((combine-after-change-calls t))
1875 . ,body)
1876 (combine-after-change-execute)))
1877
c834b52c 1878
a13fe4c5
SM
1879(defvar delay-mode-hooks nil
1880 "If non-nil, `run-mode-hooks' should delay running the hooks.")
1881(defvar delayed-mode-hooks nil
1882 "List of delayed mode hooks waiting to be run.")
1883(make-variable-buffer-local 'delayed-mode-hooks)
617631c0 1884(put 'delay-mode-hooks 'permanent-local t)
a13fe4c5
SM
1885
1886(defun run-mode-hooks (&rest hooks)
1887 "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS.
1888Execution is delayed if `delay-mode-hooks' is non-nil.
1889Major mode functions should use this."
1890 (if delay-mode-hooks
1891 ;; Delaying case.
1892 (dolist (hook hooks)
1893 (push hook delayed-mode-hooks))
1894 ;; Normal case, just run the hook as before plus any delayed hooks.
1895 (setq hooks (nconc (nreverse delayed-mode-hooks) hooks))
1896 (setq delayed-mode-hooks nil)
1897 (apply 'run-hooks hooks)))
1898
1899(defmacro delay-mode-hooks (&rest body)
1900 "Execute BODY, but delay any `run-mode-hooks'.
1901Only affects hooks run in the current buffer."
f30e0cd8 1902 (declare (debug t))
a13fe4c5
SM
1903 `(progn
1904 (make-local-variable 'delay-mode-hooks)
1905 (let ((delay-mode-hooks t))
1906 ,@body)))
1907
31ca596b
RS
1908;; PUBLIC: find if the current mode derives from another.
1909
1910(defun derived-mode-p (&rest modes)
1911 "Non-nil if the current major mode is derived from one of MODES.
1912Uses the `derived-mode-parent' property of the symbol to trace backwards."
1913 (let ((parent major-mode))
1914 (while (and (not (memq parent modes))
1915 (setq parent (get parent 'derived-mode-parent))))
1916 parent))
1917
7e8539cc 1918(defmacro with-syntax-table (table &rest body)
7ec51784 1919 "Evaluate BODY with syntax table of current buffer set to TABLE.
7e8539cc
RS
1920The syntax table of the current buffer is saved, BODY is evaluated, and the
1921saved table is restored, even in case of an abnormal exit.
1922Value is what BODY returns."
f30e0cd8 1923 (declare (debug t))
b3f07093
RS
1924 (let ((old-table (make-symbol "table"))
1925 (old-buffer (make-symbol "buffer")))
7e8539cc
RS
1926 `(let ((,old-table (syntax-table))
1927 (,old-buffer (current-buffer)))
1928 (unwind-protect
1929 (progn
7ec51784 1930 (set-syntax-table ,table)
7e8539cc
RS
1931 ,@body)
1932 (save-current-buffer
1933 (set-buffer ,old-buffer)
1934 (set-syntax-table ,old-table))))))
dd929b41
RS
1935
1936(defmacro dynamic-completion-table (fun)
1937 "Use function FUN as a dynamic completion table.
1938FUN is called with one argument, the string for which completion is required,
1939and it should return an alist containing all the intended possible
4df623c0
RS
1940completions. This alist may be a full list of possible completions so that FUN
1941can ignore the value of its argument. If completion is performed in the
dd929b41 1942minibuffer, FUN will be called in the buffer from which the minibuffer was
4df623c0
RS
1943entered.
1944
1945The result of the `dynamic-completion-table' form is a function
1946that can be used as the ALIST argument to `try-completion' and
1947`all-completion'. See Info node `(elisp)Programmed Completion'."
dd929b41
RS
1948 (let ((win (make-symbol "window"))
1949 (string (make-symbol "string"))
1950 (predicate (make-symbol "predicate"))
1951 (mode (make-symbol "mode")))
1952 `(lambda (,string ,predicate ,mode)
1953 (with-current-buffer (let ((,win (minibuffer-selected-window)))
1954 (if (window-live-p ,win) (window-buffer ,win)
1955 (current-buffer)))
1956 (cond
1957 ((eq ,mode t) (all-completions ,string (,fun ,string) ,predicate))
1958 ((not ,mode) (try-completion ,string (,fun ,string) ,predicate))
1959 (t (test-completion ,string (,fun ,string) ,predicate)))))))
1960
1961(defmacro lazy-completion-table (var fun &rest args)
1962 "Initialize variable VAR as a lazy completion table.
1963If the completion table VAR is used for the first time (e.g., by passing VAR
1964as an argument to `try-completion'), the function FUN is called with arguments
4df623c0
RS
1965ARGS. FUN must return the completion table that will be stored in VAR.
1966If completion is requested in the minibuffer, FUN will be called in the buffer
1967from which the minibuffer was entered. The return value of
dd929b41
RS
1968`lazy-completion-table' must be used to initialize the value of VAR."
1969 (let ((str (make-symbol "string")))
1970 `(dynamic-completion-table
1971 (lambda (,str)
1972 (unless (listp ,var)
1973 (setq ,var (funcall ',fun ,@args)))
1974 ,var))))
a2fdb55c 1975\f
2493767e
RS
1976;;; Matching and substitution
1977
c7ca41e6
RS
1978(defvar save-match-data-internal)
1979
1980;; We use save-match-data-internal as the local variable because
1981;; that works ok in practice (people should not use that variable elsewhere).
1982;; We used to use an uninterned symbol; the compiler handles that properly
1983;; now, but it generates slower code.
9a5336ae 1984(defmacro save-match-data (&rest body)
e4d03691
JB
1985 "Execute the BODY forms, restoring the global value of the match data.
1986The value returned is the value of the last form in BODY."
64ed733a
PE
1987 ;; It is better not to use backquote here,
1988 ;; because that makes a bootstrapping problem
1989 ;; if you need to recompile all the Lisp files using interpreted code.
d47f7515 1990 (declare (indent 0) (debug t))
64ed733a
PE
1991 (list 'let
1992 '((save-match-data-internal (match-data)))
1993 (list 'unwind-protect
1994 (cons 'progn body)
1995 '(set-match-data save-match-data-internal))))
993713ce 1996
cd323f89 1997(defun match-string (num &optional string)
993713ce
SM
1998 "Return string of text matched by last search.
1999NUM specifies which parenthesized expression in the last regexp.
2000 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
2001Zero means the entire text matched by the whole regexp or whole string.
2002STRING should be given if the last search was by `string-match' on STRING."
cd323f89
SM
2003 (if (match-beginning num)
2004 (if string
2005 (substring string (match-beginning num) (match-end num))
2006 (buffer-substring (match-beginning num) (match-end num)))))
58f950b4 2007
bb760c71
RS
2008(defun match-string-no-properties (num &optional string)
2009 "Return string of text matched by last search, without text properties.
2010NUM specifies which parenthesized expression in the last regexp.
2011 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
2012Zero means the entire text matched by the whole regexp or whole string.
2013STRING should be given if the last search was by `string-match' on STRING."
2014 (if (match-beginning num)
2015 (if string
6a6d7c34
EZ
2016 (substring-no-properties string (match-beginning num)
2017 (match-end num))
bb760c71
RS
2018 (buffer-substring-no-properties (match-beginning num)
2019 (match-end num)))))
2020
f30e0cd8
SM
2021(defun looking-back (regexp &optional limit)
2022 "Return non-nil if text before point matches regular expression REGEXP.
2023Like `looking-at' except backwards and slower.
2024LIMIT if non-nil speeds up the search by specifying how far back the
2025match can start."
498535fb 2026 (save-excursion
f30e0cd8 2027 (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)))
498535fb 2028
6a646626
JB
2029(defconst split-string-default-separators "[ \f\t\n\r\v]+"
2030 "The default value of separators for `split-string'.
2031
2032A regexp matching strings of whitespace. May be locale-dependent
2033\(as yet unimplemented). Should not match non-breaking spaces.
2034
2035Warning: binding this to a different value and using it as default is
2036likely to have undesired semantics.")
2037
2038;; The specification says that if both SEPARATORS and OMIT-NULLS are
2039;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical
2040;; expression leads to the equivalent implementation that if SEPARATORS
2041;; is defaulted, OMIT-NULLS is treated as t.
2042(defun split-string (string &optional separators omit-nulls)
2043 "Splits STRING into substrings bounded by matches for SEPARATORS.
2044
2045The beginning and end of STRING, and each match for SEPARATORS, are
2046splitting points. The substrings matching SEPARATORS are removed, and
2047the substrings between the splitting points are collected as a list,
edce3654 2048which is returned.
b222b786 2049
6a646626
JB
2050If SEPARATORS is non-nil, it should be a regular expression matching text
2051which separates, but is not part of, the substrings. If nil it defaults to
2052`split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and
2053OMIT-NULLS is forced to t.
2054
2055If OMIT-NULLs is t, zero-length substrings are omitted from the list \(so
2056that for the default value of SEPARATORS leading and trailing whitespace
2057are effectively trimmed). If nil, all zero-length substrings are retained,
2058which correctly parses CSV format, for example.
2059
2060Note that the effect of `(split-string STRING)' is the same as
2061`(split-string STRING split-string-default-separators t)'). In the rare
2062case that you wish to retain zero-length substrings when splitting on
2063whitespace, use `(split-string STRING split-string-default-separators)'.
b021ef18
DL
2064
2065Modifies the match data; use `save-match-data' if necessary."
6a646626
JB
2066 (let ((keep-nulls (not (if separators omit-nulls t)))
2067 (rexp (or separators split-string-default-separators))
edce3654 2068 (start 0)
b222b786 2069 notfirst
edce3654 2070 (list nil))
b222b786
RS
2071 (while (and (string-match rexp string
2072 (if (and notfirst
2073 (= start (match-beginning 0))
2074 (< start (length string)))
2075 (1+ start) start))
6a646626 2076 (< start (length string)))
b222b786 2077 (setq notfirst t)
6a646626 2078 (if (or keep-nulls (< start (match-beginning 0)))
edce3654
RS
2079 (setq list
2080 (cons (substring string start (match-beginning 0))
2081 list)))
2082 (setq start (match-end 0)))
6a646626 2083 (if (or keep-nulls (< start (length string)))
edce3654
RS
2084 (setq list
2085 (cons (substring string start)
2086 list)))
2087 (nreverse list)))
1ccaea52
AI
2088
2089(defun subst-char-in-string (fromchar tochar string &optional inplace)
2090 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
2091Unless optional argument INPLACE is non-nil, return a new string."
e6e71807
SM
2092 (let ((i (length string))
2093 (newstr (if inplace string (copy-sequence string))))
2094 (while (> i 0)
2095 (setq i (1- i))
2096 (if (eq (aref newstr i) fromchar)
2097 (aset newstr i tochar)))
2098 newstr))
b021ef18 2099
1697159c 2100(defun replace-regexp-in-string (regexp rep string &optional
6a646626 2101 fixedcase literal subexp start)
b021ef18
DL
2102 "Replace all matches for REGEXP with REP in STRING.
2103
2104Return a new string containing the replacements.
2105
2106Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
2107arguments with the same names of function `replace-match'. If START
2108is non-nil, start replacements at that index in STRING.
2109
2110REP is either a string used as the NEWTEXT arg of `replace-match' or a
2111function. If it is a function it is applied to each match to generate
2112the replacement passed to `replace-match'; the match-data at this
2113point are such that match 0 is the function's argument.
2114
1697159c
DL
2115To replace only the first match (if any), make REGEXP match up to \\'
2116and replace a sub-expression, e.g.
c9bcb507 2117 (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\'\" \"bar\" \" foo foo\" nil nil 1)
1697159c
DL
2118 => \" bar foo\"
2119"
b021ef18
DL
2120
2121 ;; To avoid excessive consing from multiple matches in long strings,
2122 ;; don't just call `replace-match' continually. Walk down the
2123 ;; string looking for matches of REGEXP and building up a (reversed)
2124 ;; list MATCHES. This comprises segments of STRING which weren't
2125 ;; matched interspersed with replacements for segments that were.
08b1f8a1 2126 ;; [For a `large' number of replacements it's more efficient to
b021ef18
DL
2127 ;; operate in a temporary buffer; we can't tell from the function's
2128 ;; args whether to choose the buffer-based implementation, though it
2129 ;; might be reasonable to do so for long enough STRING.]
2130 (let ((l (length string))
2131 (start (or start 0))
2132 matches str mb me)
2133 (save-match-data
2134 (while (and (< start l) (string-match regexp string start))
2135 (setq mb (match-beginning 0)
2136 me (match-end 0))
a9853251
SM
2137 ;; If we matched the empty string, make sure we advance by one char
2138 (when (= me mb) (setq me (min l (1+ mb))))
2139 ;; Generate a replacement for the matched substring.
2140 ;; Operate only on the substring to minimize string consing.
2141 ;; Set up match data for the substring for replacement;
2142 ;; presumably this is likely to be faster than munging the
2143 ;; match data directly in Lisp.
2144 (string-match regexp (setq str (substring string mb me)))
2145 (setq matches
2146 (cons (replace-match (if (stringp rep)
2147 rep
2148 (funcall rep (match-string 0 str)))
2149 fixedcase literal str subexp)
6a646626 2150 (cons (substring string start mb) ; unmatched prefix
a9853251
SM
2151 matches)))
2152 (setq start me))
b021ef18
DL
2153 ;; Reconstruct a string from the pieces.
2154 (setq matches (cons (substring string start l) matches)) ; leftover
2155 (apply #'concat (nreverse matches)))))
a7ed4c2a 2156\f
8af7df60
RS
2157(defun shell-quote-argument (argument)
2158 "Quote an argument for passing as argument to an inferior shell."
c1c74b43 2159 (if (eq system-type 'ms-dos)
8ee75d03
EZ
2160 ;; Quote using double quotes, but escape any existing quotes in
2161 ;; the argument with backslashes.
2162 (let ((result "")
2163 (start 0)
2164 end)
2165 (if (or (null (string-match "[^\"]" argument))
2166 (< (match-end 0) (length argument)))
2167 (while (string-match "[\"]" argument start)
2168 (setq end (match-beginning 0)
2169 result (concat result (substring argument start end)
2170 "\\" (substring argument end (1+ end)))
2171 start (1+ end))))
2172 (concat "\"" result (substring argument start) "\""))
c1c74b43
RS
2173 (if (eq system-type 'windows-nt)
2174 (concat "\"" argument "\"")
e1b65a6b
RS
2175 (if (equal argument "")
2176 "''"
2177 ;; Quote everything except POSIX filename characters.
2178 ;; This should be safe enough even for really weird shells.
2179 (let ((result "") (start 0) end)
2180 (while (string-match "[^-0-9a-zA-Z_./]" argument start)
2181 (setq end (match-beginning 0)
2182 result (concat result (substring argument start end)
2183 "\\" (substring argument end (1+ end)))
2184 start (1+ end)))
2185 (concat result (substring argument start)))))))
8af7df60 2186
297d863b 2187(defun make-syntax-table (&optional oldtable)
984f718a 2188 "Return a new syntax table.
0764e16f
SM
2189Create a syntax table which inherits from OLDTABLE (if non-nil) or
2190from `standard-syntax-table' otherwise."
2191 (let ((table (make-char-table 'syntax-table nil)))
2192 (set-char-table-parent table (or oldtable (standard-syntax-table)))
2193 table))
31aa282e 2194
e9f13a95
SM
2195(defun syntax-after (pos)
2196 "Return the syntax of the char after POS."
2197 (unless (or (< pos (point-min)) (>= pos (point-max)))
2198 (let ((st (if parse-sexp-lookup-properties
2199 (get-char-property pos 'syntax-table))))
2200 (if (consp st) st
2201 (aref (or st (syntax-table)) (char-after pos))))))
2202
31aa282e
KH
2203(defun add-to-invisibility-spec (arg)
2204 "Add elements to `buffer-invisibility-spec'.
2205See documentation for `buffer-invisibility-spec' for the kind of elements
2206that can be added."
c525c13c
RS
2207 (if (eq buffer-invisibility-spec t)
2208 (setq buffer-invisibility-spec (list t)))
2209 (setq buffer-invisibility-spec
2210 (cons arg buffer-invisibility-spec)))
31aa282e
KH
2211
2212(defun remove-from-invisibility-spec (arg)
2213 "Remove elements from `buffer-invisibility-spec'."
e93b8cbb 2214 (if (consp buffer-invisibility-spec)
071a2a71 2215 (setq buffer-invisibility-spec (delete arg buffer-invisibility-spec))))
baed0109
RS
2216\f
2217(defun global-set-key (key command)
2218 "Give KEY a global binding as COMMAND.
7bba1895
KH
2219COMMAND is the command definition to use; usually it is
2220a symbol naming an interactively-callable function.
2221KEY is a key sequence; noninteractively, it is a string or vector
2222of characters or event types, and non-ASCII characters with codes
2223above 127 (such as ISO Latin-1) can be included if you use a vector.
2224
2225Note that if KEY has a local binding in the current buffer,
2226that local binding will continue to shadow any global binding
2227that you make with this function."
baed0109 2228 (interactive "KSet key globally: \nCSet key %s to command: ")
a2f9aa84 2229 (or (vectorp key) (stringp key)
baed0109 2230 (signal 'wrong-type-argument (list 'arrayp key)))
ff663bbe 2231 (define-key (current-global-map) key command))
baed0109
RS
2232
2233(defun local-set-key (key command)
2234 "Give KEY a local binding as COMMAND.
7bba1895
KH
2235COMMAND is the command definition to use; usually it is
2236a symbol naming an interactively-callable function.
2237KEY is a key sequence; noninteractively, it is a string or vector
2238of characters or event types, and non-ASCII characters with codes
2239above 127 (such as ISO Latin-1) can be included if you use a vector.
2240
baed0109
RS
2241The binding goes in the current buffer's local map,
2242which in most cases is shared with all other buffers in the same major mode."
2243 (interactive "KSet key locally: \nCSet key %s locally to command: ")
2244 (let ((map (current-local-map)))
2245 (or map
2246 (use-local-map (setq map (make-sparse-keymap))))
a2f9aa84 2247 (or (vectorp key) (stringp key)
baed0109 2248 (signal 'wrong-type-argument (list 'arrayp key)))
ff663bbe 2249 (define-key map key command)))
984f718a 2250
baed0109
RS
2251(defun global-unset-key (key)
2252 "Remove global binding of KEY.
2253KEY is a string representing a sequence of keystrokes."
2254 (interactive "kUnset key globally: ")
2255 (global-set-key key nil))
2256
db2474b8 2257(defun local-unset-key (key)
baed0109
RS
2258 "Remove local binding of KEY.
2259KEY is a string representing a sequence of keystrokes."
2260 (interactive "kUnset key locally: ")
2261 (if (current-local-map)
db2474b8 2262 (local-set-key key nil))
baed0109
RS
2263 nil)
2264\f
4809d0dd
KH
2265;; We put this here instead of in frame.el so that it's defined even on
2266;; systems where frame.el isn't loaded.
2267(defun frame-configuration-p (object)
2268 "Return non-nil if OBJECT seems to be a frame configuration.
2269Any list whose car is `frame-configuration' is assumed to be a frame
2270configuration."
2271 (and (consp object)
2272 (eq (car object) 'frame-configuration)))
2273
a9a44ed1 2274(defun functionp (object)
756bb736
LT
2275 "Non-nil if OBJECT is any kind of function or a special form.
2276Also non-nil if OBJECT is a symbol and its function definition is
2277\(recursively) a function or special form. This does not include
2278macros."
a2d7836f 2279 (or (and (symbolp object) (fboundp object)
d7d563e3
RS
2280 (condition-case nil
2281 (setq object (indirect-function object))
2282 (error nil))
0764e16f 2283 (eq (car-safe object) 'autoload)
f1d37f3c 2284 (not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr-safe object)))))))
0764e16f 2285 (subrp object) (byte-code-function-p object)
60ab6064 2286 (eq (car-safe object) 'lambda)))
a9a44ed1 2287
d3a61a11 2288(defun assq-delete-all (key alist)
a62d6695 2289 "Delete from ALIST all elements whose car is KEY.
d87a4a45
RS
2290Return the modified alist.
2291Elements of ALIST that are not conses are ignored."
a62d6695
DL
2292 (let ((tail alist))
2293 (while tail
d87a4a45 2294 (if (and (consp (car tail)) (eq (car (car tail)) key))
a62d6695
DL
2295 (setq alist (delq (car tail) alist)))
2296 (setq tail (cdr tail)))
2297 alist))
2298
10cf1ba8 2299(defun make-temp-file (prefix &optional dir-flag suffix)
cdd9f643
RS
2300 "Create a temporary file.
2301The returned file name (created by appending some random characters at the end
5ef6a86d 2302of PREFIX, and expanding against `temporary-file-directory' if necessary),
cdd9f643
RS
2303is guaranteed to point to a newly created empty file.
2304You can then use `write-region' to write new data into the file.
2305
10cf1ba8
RS
2306If DIR-FLAG is non-nil, create a new empty directory instead of a file.
2307
2308If SUFFIX is non-nil, add that at the end of the file name."
1c12af5c
SM
2309 (let ((umask (default-file-modes))
2310 file)
2311 (unwind-protect
2312 (progn
2313 ;; Create temp files with strict access rights. It's easy to
2314 ;; loosen them later, whereas it's impossible to close the
2315 ;; time-window of loose permissions otherwise.
2316 (set-default-file-modes ?\700)
2317 (while (condition-case ()
2318 (progn
2319 (setq file
2320 (make-temp-name
2321 (expand-file-name prefix temporary-file-directory)))
2322 (if suffix
2323 (setq file (concat file suffix)))
2324 (if dir-flag
2325 (make-directory file)
2326 (write-region "" nil file nil 'silent nil 'excl))
2327 nil)
2328 (file-already-exists t))
2329 ;; the file was somehow created by someone else between
2330 ;; `make-temp-name' and `write-region', let's try again.
2331 nil)
2332 file)
2333 ;; Reset the umask.
2334 (set-default-file-modes umask))))
cdd9f643 2335
d7d47268 2336\f
7dde432d
RS
2337;; If a minor mode is not defined with define-minor-mode,
2338;; add it here explicitly.
2339;; isearch-mode is deliberately excluded, since you should
2340;; not call it yourself.
2341(defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
3813f0c5
TTN
2342 overwrite-mode view-mode
2343 hs-minor-mode)
7dde432d
RS
2344 "List of all minor mode functions.")
2345
c94f4677 2346(defun add-minor-mode (toggle name &optional keymap after toggle-fun)
d7d47268 2347 "Register a new minor mode.
c94f4677 2348
0b2cf11f
SM
2349This is an XEmacs-compatibility function. Use `define-minor-mode' instead.
2350
c94f4677
GM
2351TOGGLE is a symbol which is the name of a buffer-local variable that
2352is toggled on or off to say whether the minor mode is active or not.
2353
2354NAME specifies what will appear in the mode line when the minor mode
2355is active. NAME should be either a string starting with a space, or a
2356symbol whose value is such a string.
2357
2358Optional KEYMAP is the keymap for the minor mode that will be added
2359to `minor-mode-map-alist'.
2360
2361Optional AFTER specifies that TOGGLE should be added after AFTER
2362in `minor-mode-alist'.
2363
0b2cf11f
SM
2364Optional TOGGLE-FUN is an interactive function to toggle the mode.
2365It defaults to (and should by convention be) TOGGLE.
2366
2367If TOGGLE has a non-nil `:included' property, an entry for the mode is
2368included in the mode-line minor mode menu.
2369If TOGGLE has a `:menu-tag', that is used for the menu item's label."
7dde432d
RS
2370 (unless (memq toggle minor-mode-list)
2371 (push toggle minor-mode-list))
6a646626 2372
0b2cf11f 2373 (unless toggle-fun (setq toggle-fun toggle))
0b2cf11f 2374 ;; Add the name to the minor-mode-alist.
c94f4677 2375 (when name
0b2cf11f 2376 (let ((existing (assq toggle minor-mode-alist)))
0b2cf11f
SM
2377 (if existing
2378 (setcdr existing (list name))
2379 (let ((tail minor-mode-alist) found)
2380 (while (and tail (not found))
2381 (if (eq after (caar tail))
2382 (setq found tail)
2383 (setq tail (cdr tail))))
2384 (if found
2385 (let ((rest (cdr found)))
2386 (setcdr found nil)
2387 (nconc found (list (list toggle name)) rest))
2388 (setq minor-mode-alist (cons (list toggle name)
2389 minor-mode-alist)))))))
69cae2d4
RS
2390 ;; Add the toggle to the minor-modes menu if requested.
2391 (when (get toggle :included)
2392 (define-key mode-line-mode-menu
2393 (vector toggle)
2394 (list 'menu-item
2395 (concat
2396 (or (get toggle :menu-tag)
2397 (if (stringp name) name (symbol-name toggle)))
1c12af5c
SM
2398 (let ((mode-name (if (symbolp name) (symbol-value name))))
2399 (if (and (stringp mode-name) (string-match "[^ ]+" mode-name))
2400 (concat " (" (match-string 0 mode-name) ")"))))
69cae2d4
RS
2401 toggle-fun
2402 :button (cons :toggle toggle))))
2403
1c12af5c 2404 ;; Add the map to the minor-mode-map-alist.
c94f4677
GM
2405 (when keymap
2406 (let ((existing (assq toggle minor-mode-map-alist)))
0b2cf11f
SM
2407 (if existing
2408 (setcdr existing keymap)
2409 (let ((tail minor-mode-map-alist) found)
2410 (while (and tail (not found))
2411 (if (eq after (caar tail))
2412 (setq found tail)
2413 (setq tail (cdr tail))))
2414 (if found
2415 (let ((rest (cdr found)))
2416 (setcdr found nil)
2417 (nconc found (list (cons toggle keymap)) rest))
2418 (setq minor-mode-map-alist (cons (cons toggle keymap)
2419 minor-mode-map-alist))))))))
2493767e 2420\f
a13fe4c5
SM
2421;; Clones ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2422
2423(defun text-clone-maintain (ol1 after beg end &optional len)
2424 "Propagate the changes made under the overlay OL1 to the other clones.
2425This is used on the `modification-hooks' property of text clones."
2426 (when (and after (not undo-in-progress) (overlay-start ol1))
2427 (let ((margin (if (overlay-get ol1 'text-clone-spreadp) 1 0)))
2428 (setq beg (max beg (+ (overlay-start ol1) margin)))
2429 (setq end (min end (- (overlay-end ol1) margin)))
2430 (when (<= beg end)
2431 (save-excursion
2432 (when (overlay-get ol1 'text-clone-syntax)
2433 ;; Check content of the clone's text.
2434 (let ((cbeg (+ (overlay-start ol1) margin))
2435 (cend (- (overlay-end ol1) margin)))
2436 (goto-char cbeg)
2437 (save-match-data
2438 (if (not (re-search-forward
2439 (overlay-get ol1 'text-clone-syntax) cend t))
2440 ;; Mark the overlay for deletion.
2441 (overlay-put ol1 'text-clones nil)
2442 (when (< (match-end 0) cend)
2443 ;; Shrink the clone at its end.
2444 (setq end (min end (match-end 0)))
2445 (move-overlay ol1 (overlay-start ol1)
2446 (+ (match-end 0) margin)))
2447 (when (> (match-beginning 0) cbeg)
2448 ;; Shrink the clone at its beginning.
2449 (setq beg (max (match-beginning 0) beg))
2450 (move-overlay ol1 (- (match-beginning 0) margin)
2451 (overlay-end ol1)))))))
2452 ;; Now go ahead and update the clones.
2453 (let ((head (- beg (overlay-start ol1)))
2454 (tail (- (overlay-end ol1) end))
2455 (str (buffer-substring beg end))
2456 (nothing-left t)
2457 (inhibit-modification-hooks t))
2458 (dolist (ol2 (overlay-get ol1 'text-clones))
2459 (let ((oe (overlay-end ol2)))
2460 (unless (or (eq ol1 ol2) (null oe))
2461 (setq nothing-left nil)
2462 (let ((mod-beg (+ (overlay-start ol2) head)))
2463 ;;(overlay-put ol2 'modification-hooks nil)
2464 (goto-char (- (overlay-end ol2) tail))
2465 (unless (> mod-beg (point))
2466 (save-excursion (insert str))
2467 (delete-region mod-beg (point)))
2468 ;;(overlay-put ol2 'modification-hooks '(text-clone-maintain))
2469 ))))
2470 (if nothing-left (delete-overlay ol1))))))))
2471
2472(defun text-clone-create (start end &optional spreadp syntax)
2473 "Create a text clone of START...END at point.
2474Text clones are chunks of text that are automatically kept identical:
2475changes done to one of the clones will be immediately propagated to the other.
2476
2477The buffer's content at point is assumed to be already identical to
2478the one between START and END.
2479If SYNTAX is provided it's a regexp that describes the possible text of
2480the clones; the clone will be shrunk or killed if necessary to ensure that
2481its text matches the regexp.
2482If SPREADP is non-nil it indicates that text inserted before/after the
2483clone should be incorporated in the clone."
2484 ;; To deal with SPREADP we can either use an overlay with `nil t' along
2485 ;; with insert-(behind|in-front-of)-hooks or use a slightly larger overlay
2486 ;; (with a one-char margin at each end) with `t nil'.
2487 ;; We opted for a larger overlay because it behaves better in the case
2488 ;; where the clone is reduced to the empty string (we want the overlay to
2489 ;; stay when the clone's content is the empty string and we want to use
2490 ;; `evaporate' to make sure those overlays get deleted when needed).
264ef586 2491 ;;
a13fe4c5
SM
2492 (let* ((pt-end (+ (point) (- end start)))
2493 (start-margin (if (or (not spreadp) (bobp) (<= start (point-min)))
2494 0 1))
2495 (end-margin (if (or (not spreadp)
2496 (>= pt-end (point-max))
2497 (>= start (point-max)))
2498 0 1))
2499 (ol1 (make-overlay (- start start-margin) (+ end end-margin) nil t))
2500 (ol2 (make-overlay (- (point) start-margin) (+ pt-end end-margin) nil t))
2501 (dups (list ol1 ol2)))
2502 (overlay-put ol1 'modification-hooks '(text-clone-maintain))
2503 (when spreadp (overlay-put ol1 'text-clone-spreadp t))
2504 (when syntax (overlay-put ol1 'text-clone-syntax syntax))
2505 ;;(overlay-put ol1 'face 'underline)
2506 (overlay-put ol1 'evaporate t)
2507 (overlay-put ol1 'text-clones dups)
264ef586 2508 ;;
a13fe4c5
SM
2509 (overlay-put ol2 'modification-hooks '(text-clone-maintain))
2510 (when spreadp (overlay-put ol2 'text-clone-spreadp t))
2511 (when syntax (overlay-put ol2 'text-clone-syntax syntax))
2512 ;;(overlay-put ol2 'face 'underline)
2513 (overlay-put ol2 'evaporate t)
2514 (overlay-put ol2 'text-clones dups)))
27c079eb 2515
324cd947
PJ
2516(defun play-sound (sound)
2517 "SOUND is a list of the form `(sound KEYWORD VALUE...)'.
2518The following keywords are recognized:
2519
2520 :file FILE - read sound data from FILE. If FILE isn't an
2521absolute file name, it is searched in `data-directory'.
2522
2523 :data DATA - read sound data from string DATA.
2524
2525Exactly one of :file or :data must be present.
2526
2527 :volume VOL - set volume to VOL. VOL must an integer in the
2528range 0..100 or a float in the range 0..1.0. If not specified,
2529don't change the volume setting of the sound device.
2530
2531 :device DEVICE - play sound on DEVICE. If not specified,
2532a system-dependent default device name is used."
2533 (unless (fboundp 'play-sound-internal)
2534 (error "This Emacs binary lacks sound support"))
2535 (play-sound-internal sound))
2536
27c079eb
SM
2537(defun define-mail-user-agent (symbol composefunc sendfunc
2538 &optional abortfunc hookvar)
2539 "Define a symbol to identify a mail-sending package for `mail-user-agent'.
2540
2541SYMBOL can be any Lisp symbol. Its function definition and/or
2542value as a variable do not matter for this usage; we use only certain
2543properties on its property list, to encode the rest of the arguments.
2544
2545COMPOSEFUNC is program callable function that composes an outgoing
2546mail message buffer. This function should set up the basics of the
2547buffer without requiring user interaction. It should populate the
2548standard mail headers, leaving the `to:' and `subject:' headers blank
2549by default.
2550
2551COMPOSEFUNC should accept several optional arguments--the same
2552arguments that `compose-mail' takes. See that function's documentation.
2553
2554SENDFUNC is the command a user would run to send the message.
2555
2556Optional ABORTFUNC is the command a user would run to abort the
2557message. For mail packages that don't have a separate abort function,
2558this can be `kill-buffer' (the equivalent of omitting this argument).
2559
2560Optional HOOKVAR is a hook variable that gets run before the message
2561is actually sent. Callers that use the `mail-user-agent' may
2562install a hook function temporarily on this hook variable.
2563If HOOKVAR is nil, `mail-send-hook' is used.
2564
2565The properties used on SYMBOL are `composefunc', `sendfunc',
2566`abortfunc', and `hookvar'."
2567 (put symbol 'composefunc composefunc)
2568 (put symbol 'sendfunc sendfunc)
2569 (put symbol 'abortfunc (or abortfunc 'kill-buffer))
2570 (put symbol 'hookvar (or hookvar 'mail-send-hook)))
2571
ab5796a9 2572;;; arch-tag: f7e0e6e5-70aa-4897-ae72-7a3511ec40bc
630cc463 2573;;; subr.el ends here