* lisp/progmodes/python.el (python-shell-get-buffer): New function.
[bpt/emacs.git] / lisp / subr.el
CommitLineData
bfa3acd6 1;;; subr.el --- basic lisp subroutines for Emacs -*- coding: utf-8; lexical-binding:t -*-
630cc463 2
ab422c4d
PE
3;; Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2013 Free Software
4;; Foundation, Inc.
be9b65ac 5
30764597
PJ
6;; Maintainer: FSF
7;; Keywords: internal
bd78fa1d 8;; Package: emacs
30764597 9
be9b65ac
DL
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
be9b65ac 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
be9b65ac
DL
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
be9b65ac 24
60370d40
PJ
25;;; Commentary:
26
630cc463 27;;; Code:
d0fc47ed 28
2ee3d7f0
SM
29;; Beware: while this file has tag `utf-8', before it's compiled, it gets
30;; loaded as "raw-text", so non-ASCII chars won't work right during bootstrap.
31
77a5664f
RS
32(defvar custom-declare-variable-list nil
33 "Record `defcustom' calls made before `custom.el' is loaded to handle them.
34Each element of this list holds the arguments to one call to `defcustom'.")
35
68e3e5f5 36;; Use this, rather than defcustom, in subr.el and other files loaded
77a5664f
RS
37;; before custom.el.
38(defun custom-declare-variable-early (&rest arguments)
39 (setq custom-declare-variable-list
40 (cons arguments custom-declare-variable-list)))
2c642c03 41
bfa3acd6 42(defmacro declare-function (_fn _file &optional _arglist _fileonly)
708bb6f8 43 "Tell the byte-compiler that function FN is defined, in FILE.
fa6bc6fd
JB
44Optional ARGLIST is the argument list used by the function.
45The FILE argument is not used by the byte-compiler, but by the
708bb6f8 46`check-declare' package, which checks that FILE contains a
fa6bc6fd
JB
47definition for FN. ARGLIST is used by both the byte-compiler
48and `check-declare' to check for consistency.
708bb6f8
RS
49
50FILE can be either a Lisp file (in which case the \".el\"
51extension is optional), or a C file. C files are expanded
52relative to the Emacs \"src/\" directory. Lisp files are
53searched for using `locate-library', and if that fails they are
54expanded relative to the location of the file containing the
55declaration. A FILE with an \"ext:\" prefix is an external file.
56`check-declare' will check such files if they are found, and skip
57them without error if they are not.
58
59FILEONLY non-nil means that `check-declare' will only check that
60FILE exists, not that it defines FN. This is intended for
61function-definitions that `check-declare' does not recognize, e.g.
62`defstruct'.
63
64To specify a value for FILEONLY without passing an argument list,
3fa173b4 65set ARGLIST to t. This is necessary because nil means an
708bb6f8
RS
66empty argument list, rather than an unspecified one.
67
68Note that for the purposes of `check-declare', this statement
a4d2c321 69must be the first non-whitespace on a line.
708bb6f8 70
83031738 71For more information, see Info node `(elisp)Declaring Functions'."
708bb6f8
RS
72 ;; Does nothing - byte-compile-declare-function does the work.
73 nil)
e224699a 74
2c642c03 75\f
c4f484f2 76;;;; Basic Lisp macros.
9a5336ae 77
0764e16f
SM
78(defalias 'not 'null)
79
6b61353c 80(defmacro noreturn (form)
70c6db6c
LT
81 "Evaluate FORM, expecting it not to return.
82If FORM does return, signal an error."
2de39f08 83 (declare (debug t))
6b61353c
KH
84 `(prog1 ,form
85 (error "Form marked with `noreturn' did return")))
86
87(defmacro 1value (form)
70c6db6c
LT
88 "Evaluate FORM, expecting a constant return value.
89This is the global do-nothing version. There is also `testcover-1value'
90that complains if FORM ever does return differing values."
2de39f08 91 (declare (debug t))
6b61353c
KH
92 form)
93
8285ccd2
RS
94(defmacro def-edebug-spec (symbol spec)
95 "Set the `edebug-form-spec' property of SYMBOL according to SPEC.
e32721f5
GM
96Both SYMBOL and SPEC are unevaluated. The SPEC can be:
970 (instrument no arguments); t (instrument all arguments);
98a symbol (naming a function with an Edebug specification); or a list.
99The elements of the list describe the argument types; see
2b1e1a22 100Info node `(elisp)Specification List' for details."
8285ccd2
RS
101 `(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))
102
9a5336ae
JB
103(defmacro lambda (&rest cdr)
104 "Return a lambda expression.
105A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
106self-quoting; the result of evaluating the lambda expression is the
107expression itself. The lambda expression may then be treated as a
bec0d7f9 108function, i.e., stored as the function value of a symbol, passed to
265b3f2a 109`funcall' or `mapcar', etc.
bec0d7f9 110
9a5336ae 111ARGS should take the same form as an argument list for a `defun'.
8fd68088
RS
112DOCSTRING is an optional documentation string.
113 If present, it should describe how to call the function.
114 But documentation strings are usually not useful in nameless functions.
9a5336ae
JB
115INTERACTIVE should be a call to the function `interactive', which see.
116It may also be omitted.
a478f3e1
JB
117BODY should be a list of Lisp expressions.
118
119\(fn ARGS [DOCSTRING] [INTERACTIVE] BODY)"
a179e3f7
SM
120 (declare (doc-string 2) (indent defun)
121 (debug (&define lambda-list
122 [&optional stringp]
123 [&optional ("interactive" interactive)]
124 def-body)))
9a5336ae
JB
125 ;; Note that this definition should not use backquotes; subr.el should not
126 ;; depend on backquote.el.
127 (list 'function (cons 'lambda cdr)))
128
f95e9344
SM
129(defmacro setq-local (var val)
130 "Set variable VAR to value VAL in current buffer."
131 ;; Can't use backquote here, it's too early in the bootstrap.
132 (list 'set (list 'make-local-variable (list 'quote var)) val))
133
134(defmacro defvar-local (var val &optional docstring)
135 "Define VAR as a buffer-local variable with default value VAL.
136Like `defvar' but additionally marks the variable as being automatically
137buffer-local wherever it is set."
8bba5a75 138 (declare (debug defvar) (doc-string 3))
f95e9344
SM
139 ;; Can't use backquote here, it's too early in the bootstrap.
140 (list 'progn (list 'defvar var val docstring)
141 (list 'make-variable-buffer-local (list 'quote var))))
142
2ec42da9
SM
143(defun apply-partially (fun &rest args)
144 "Return a function that is a partial application of FUN to ARGS.
145ARGS is a list of the first N arguments to pass to FUN.
146The result is a new function which does the same as FUN, except that
147the first N arguments are fixed at the values with which this function
148was called."
f488fb65 149 `(closure (t) (&rest args)
2ec42da9
SM
150 (apply ',fun ,@(mapcar (lambda (arg) `',arg) args) args)))
151
2ee3d7f0
SM
152(defmacro push (newelt place)
153 "Add NEWELT to the list stored in the generalized variable PLACE.
154This is morally equivalent to (setf PLACE (cons NEWELT PLACE)),
155except that PLACE is only evaluated once (after NEWELT)."
156 (declare (debug (form gv-place)))
157 (if (symbolp place)
158 ;; Important special case, to avoid triggering GV too early in
159 ;; the bootstrap.
160 (list 'setq place
161 (list 'cons newelt place))
162 (require 'macroexp)
163 (macroexp-let2 macroexp-copyable-p v newelt
164 (gv-letplace (getter setter) place
165 (funcall setter `(cons ,v ,getter))))))
166
167(defmacro pop (place)
168 "Return the first element of PLACE's value, and remove it from the list.
169PLACE must be a generalized variable whose value is a list.
d270117a
RS
170If the value is nil, `pop' returns nil but does not actually
171change the list."
2ee3d7f0 172 (declare (debug (gv-place)))
c0458e0b
SM
173 ;; We use `car-safe' here instead of `car' because the behavior is the same
174 ;; (if it's not a cons cell, the `cdr' would have signaled an error already),
175 ;; but `car-safe' is total, so the byte-compiler can safely remove it if the
176 ;; result is not used.
177 `(car-safe
178 ,(if (symbolp place)
179 ;; So we can use `pop' in the bootstrap before `gv' can be used.
180 (list 'prog1 place (list 'setq place (list 'cdr place)))
181 (gv-letplace (getter setter) place
182 `(prog1 ,getter ,(funcall setter `(cdr ,getter)))))))
d270117a 183
debff3c3 184(defmacro when (cond &rest body)
7f67eea0
KS
185 "If COND yields non-nil, do BODY, else return nil.
186When COND yields non-nil, eval BODY forms sequentially and return
187value of last one, or nil if there are none.
188
ebc3ae14 189\(fn COND BODY...)"
d47f7515 190 (declare (indent 1) (debug t))
debff3c3 191 (list 'if cond (cons 'progn body)))
9a5336ae 192
debff3c3 193(defmacro unless (cond &rest body)
7f67eea0
KS
194 "If COND yields nil, do BODY, else return nil.
195When COND yields nil, eval BODY forms sequentially and return
196value of last one, or nil if there are none.
197
ebc3ae14 198\(fn COND BODY...)"
d47f7515 199 (declare (indent 1) (debug t))
debff3c3 200 (cons 'if (cons cond (cons nil body))))
d370591d 201
a0b0756a 202(defmacro dolist (spec &rest body)
d47f7515 203 "Loop over a list.
a0b0756a 204Evaluate BODY with VAR bound to each car from LIST, in turn.
d47f7515
SM
205Then evaluate RESULT to get return value, default nil.
206
d775d486 207\(fn (VAR LIST [RESULT]) BODY...)"
d47f7515 208 (declare (indent 1) (debug ((symbolp form &optional form) body)))
01d16e16
RS
209 ;; It would be cleaner to create an uninterned symbol,
210 ;; but that uses a lot more space when many functions in many files
211 ;; use dolist.
ca105506 212 ;; FIXME: This cost disappears in byte-compiled lexical-binding files.
01d16e16 213 (let ((temp '--dolist-tail--))
f488fb65
SM
214 ;; This is not a reliable test, but it does not matter because both
215 ;; semantics are acceptable, tho one is slightly faster with dynamic
216 ;; scoping and the other is slightly faster (and has cleaner semantics)
217 ;; with lexical scoping.
218 (if lexical-binding
219 `(let ((,temp ,(nth 1 spec)))
220 (while ,temp
221 (let ((,(car spec) (car ,temp)))
222 ,@body
223 (setq ,temp (cdr ,temp))))
da03ef8a 224 ,@(cdr (cdr spec)))
f488fb65
SM
225 `(let ((,temp ,(nth 1 spec))
226 ,(car spec))
227 (while ,temp
228 (setq ,(car spec) (car ,temp))
229 ,@body
230 (setq ,temp (cdr ,temp)))
231 ,@(if (cdr (cdr spec))
232 `((setq ,(car spec) nil) ,@(cdr (cdr spec))))))))
01d16e16 233
a0b0756a 234(defmacro dotimes (spec &rest body)
d47f7515 235 "Loop a certain number of times.
a0b0756a
RS
236Evaluate BODY with VAR bound to successive integers running from 0,
237inclusive, to COUNT, exclusive. Then evaluate RESULT to get
d47f7515
SM
238the return value (nil if RESULT is omitted).
239
d775d486 240\(fn (VAR COUNT [RESULT]) BODY...)"
d47f7515 241 (declare (indent 1) (debug dolist))
01d16e16
RS
242 ;; It would be cleaner to create an uninterned symbol,
243 ;; but that uses a lot more space when many functions in many files
244 ;; use dotimes.
f488fb65 245 ;; FIXME: This cost disappears in byte-compiled lexical-binding files.
01d16e16 246 (let ((temp '--dotimes-limit--)
d47f7515
SM
247 (start 0)
248 (end (nth 1 spec)))
f488fb65
SM
249 ;; This is not a reliable test, but it does not matter because both
250 ;; semantics are acceptable, tho one is slightly faster with dynamic
251 ;; scoping and the other has cleaner semantics.
252 (if lexical-binding
253 (let ((counter '--dotimes-counter--))
254 `(let ((,temp ,end)
255 (,counter ,start))
256 (while (< ,counter ,temp)
257 (let ((,(car spec) ,counter))
258 ,@body)
259 (setq ,counter (1+ ,counter)))
260 ,@(if (cddr spec)
261 ;; FIXME: This let often leads to "unused var" warnings.
262 `((let ((,(car spec) ,counter)) ,@(cddr spec))))))
263 `(let ((,temp ,end)
264 (,(car spec) ,start))
265 (while (< ,(car spec) ,temp)
266 ,@body
267 (setq ,(car spec) (1+ ,(car spec))))
268 ,@(cdr (cdr spec))))))
a0b0756a 269
06b60517 270(defmacro declare (&rest _specs)
863666eb
CY
271 "Do not evaluate any arguments, and return nil.
272If a `declare' form appears as the first form in the body of a
273`defun' or `defmacro' form, SPECS specifies various additional
274information about the function or macro; these go into effect
275during the evaluation of the `defun' or `defmacro' form.
276
277The possible values of SPECS are specified by
278`defun-declarations-alist' and `macro-declarations-alist'."
36cec983 279 ;; FIXME: edebug spec should pay attention to defun-declarations-alist.
a69c67e8 280 nil)
6b5de136
GM
281
282(defmacro ignore-errors (&rest body)
283 "Execute BODY; if an error occurs, return nil.
d02e58f8
LL
284Otherwise, return result of last form in BODY.
285See also `with-demoted-errors' that does something similar
286without silencing all errors."
7467d0a8 287 (declare (debug t) (indent 0))
6b5de136 288 `(condition-case nil (progn ,@body) (error nil)))
c4f484f2
RS
289\f
290;;;; Basic Lisp functions.
291
06b60517 292(defun ignore (&rest _ignore)
c4f484f2
RS
293 "Do nothing and return nil.
294This function accepts any number of arguments, but ignores them."
295 (interactive)
296 nil)
297
fd6c5134 298;; Signal a compile-error if the first arg is missing.
c4f484f2
RS
299(defun error (&rest args)
300 "Signal an error, making error message by passing all args to `format'.
301In Emacs, the convention is that error messages start with a capital
302letter but *do not* end with a period. Please follow this convention
fd6c5134 303for the sake of consistency."
328a8179 304 (declare (advertised-calling-convention (string &rest args) "23.1"))
c4f484f2
RS
305 (while t
306 (signal 'error (list (apply 'format args)))))
307
71873e2b
SM
308(defun user-error (format &rest args)
309 "Signal a pilot error, making error message by passing all args to `format'.
310In Emacs, the convention is that error messages start with a capital
311letter but *do not* end with a period. Please follow this convention
312for the sake of consistency.
313This is just like `error' except that `user-error's are expected to be the
314result of an incorrect manipulation on the part of the user, rather than the
315result of an actual problem."
316 (while t
317 (signal 'user-error (list (apply #'format format args)))))
318
54bd972f
SM
319(defun define-error (name message &optional parent)
320 "Define NAME as a new error signal.
321MESSAGE is a string that will be output to the echo area if such an error
322is signaled without being caught by a `condition-case'.
323PARENT is either a signal or a list of signals from which it inherits.
324Defaults to `error'."
325 (unless parent (setq parent 'error))
326 (let ((conditions
327 (if (consp parent)
328 (apply #'nconc
329 (mapcar (lambda (parent)
330 (cons parent
331 (or (get parent 'error-conditions)
332 (error "Unknown signal `%s'" parent))))
333 parent))
334 (cons parent (get parent 'error-conditions)))))
335 (put name 'error-conditions
336 (delete-dups (copy-sequence (cons name conditions))))
337 (when message (put name 'error-message message))))
338
c4f484f2
RS
339;; We put this here instead of in frame.el so that it's defined even on
340;; systems where frame.el isn't loaded.
341(defun frame-configuration-p (object)
342 "Return non-nil if OBJECT seems to be a frame configuration.
343Any list whose car is `frame-configuration' is assumed to be a frame
344configuration."
345 (and (consp object)
346 (eq (car object) 'frame-configuration)))
c4f484f2
RS
347\f
348;;;; List functions.
6b61353c 349
d370591d
RS
350(defsubst caar (x)
351 "Return the car of the car of X."
352 (car (car x)))
353
354(defsubst cadr (x)
355 "Return the car of the cdr of X."
356 (car (cdr x)))
357
358(defsubst cdar (x)
359 "Return the cdr of the car of X."
360 (cdr (car x)))
361
362(defsubst cddr (x)
363 "Return the cdr of the cdr of X."
364 (cdr (cdr x)))
e8c32c99 365
a478f3e1
JB
366(defun last (list &optional n)
367 "Return the last link of LIST. Its car is the last element.
368If LIST is nil, return nil.
369If N is non-nil, return the Nth-to-last link of LIST.
370If N is bigger than the length of LIST, return LIST."
369fba5f 371 (if n
10e4702a 372 (and (>= n 0)
88f427d5 373 (let ((m (safe-length list)))
35744400
IS
374 (if (< n m) (nthcdr (- m n) list) list)))
375 (and list
88f427d5 376 (nthcdr (1- (safe-length list)) list))))
526d204e 377
a478f3e1 378(defun butlast (list &optional n)
a3111ae4 379 "Return a copy of LIST with the last N elements removed."
a478f3e1
JB
380 (if (and n (<= n 0)) list
381 (nbutlast (copy-sequence list) n)))
1c1c65de 382
a478f3e1 383(defun nbutlast (list &optional n)
1c1c65de 384 "Modifies LIST to remove the last N elements."
a478f3e1 385 (let ((m (length list)))
1c1c65de
KH
386 (or n (setq n 1))
387 (and (< n m)
388 (progn
a478f3e1
JB
389 (if (> n 0) (setcdr (nthcdr (- (1- m) n) list) nil))
390 list))))
1c1c65de 391
6b61353c
KH
392(defun delete-dups (list)
393 "Destructively remove `equal' duplicates from LIST.
394Store the result in LIST and return it. LIST must be a proper list.
395Of several `equal' occurrences of an element in LIST, the first
396one is kept."
397 (let ((tail list))
398 (while tail
399 (setcdr tail (delete (car tail) (cdr tail)))
400 (setq tail (cdr tail))))
401 list)
402
c7a8fcac
LL
403;; See http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00204.html
404(defun delete-consecutive-dups (list &optional circular)
405 "Destructively remove `equal' consecutive duplicates from LIST.
406First and last elements are considered consecutive if CIRCULAR is
407non-nil."
408 (let ((tail list) last)
409 (while (consp tail)
410 (if (equal (car tail) (cadr tail))
411 (setcdr tail (cddr tail))
412 (setq last (car tail)
413 tail (cdr tail))))
414 (if (and circular
415 (cdr list)
416 (equal last (car list)))
417 (nbutlast list)
418 list)))
419
0ed2c9b6 420(defun number-sequence (from &optional to inc)
abd9177a 421 "Return a sequence of numbers from FROM to TO (both inclusive) as a list.
6b61353c 422INC is the increment used between numbers in the sequence and defaults to 1.
fa6bc6fd 423So, the Nth element of the list is (+ FROM (* N INC)) where N counts from
6b61353c 424zero. TO is only included if there is an N for which TO = FROM + N * INC.
fa6bc6fd 425If TO is nil or numerically equal to FROM, return (FROM).
6b61353c
KH
426If INC is positive and TO is less than FROM, or INC is negative
427and TO is larger than FROM, return nil.
428If INC is zero and TO is neither nil nor numerically equal to
429FROM, signal an error.
430
431This function is primarily designed for integer arguments.
432Nevertheless, FROM, TO and INC can be integer or float. However,
433floating point arithmetic is inexact. For instance, depending on
434the machine, it may quite well happen that
fa6bc6fd
JB
435\(number-sequence 0.4 0.6 0.2) returns the one element list (0.4),
436whereas (number-sequence 0.4 0.8 0.2) returns a list with three
6b61353c
KH
437elements. Thus, if some of the arguments are floats and one wants
438to make sure that TO is included, one may have to explicitly write
fa6bc6fd 439TO as (+ FROM (* N INC)) or use a variable whose value was
6b61353c
KH
440computed with this exact expression. Alternatively, you can,
441of course, also replace TO with a slightly larger value
442\(or a slightly more negative value if INC is negative)."
443 (if (or (not to) (= from to))
0ed2c9b6
VJL
444 (list from)
445 (or inc (setq inc 1))
6b61353c
KH
446 (when (zerop inc) (error "The increment can not be zero"))
447 (let (seq (n 0) (next from))
448 (if (> inc 0)
449 (while (<= next to)
450 (setq seq (cons next seq)
451 n (1+ n)
452 next (+ from (* n inc))))
453 (while (>= next to)
454 (setq seq (cons next seq)
455 n (1+ n)
456 next (+ from (* n inc)))))
0ed2c9b6 457 (nreverse seq))))
abd9177a 458
a176c9eb
CW
459(defun copy-tree (tree &optional vecp)
460 "Make a copy of TREE.
461If TREE is a cons cell, this recursively copies both its car and its cdr.
cfebd4db 462Contrast to `copy-sequence', which copies only along the cdrs. With second
a176c9eb
CW
463argument VECP, this copies vectors as well as conses."
464 (if (consp tree)
cfebd4db
RS
465 (let (result)
466 (while (consp tree)
467 (let ((newcar (car tree)))
468 (if (or (consp (car tree)) (and vecp (vectorp (car tree))))
469 (setq newcar (copy-tree (car tree) vecp)))
470 (push newcar result))
471 (setq tree (cdr tree)))
68b08950 472 (nconc (nreverse result) tree))
a176c9eb
CW
473 (if (and vecp (vectorp tree))
474 (let ((i (length (setq tree (copy-sequence tree)))))
475 (while (>= (setq i (1- i)) 0)
cfebd4db
RS
476 (aset tree i (copy-tree (aref tree i) vecp)))
477 tree)
478 tree)))
c4f484f2
RS
479\f
480;;;; Various list-search functions.
a176c9eb 481
8a288450
RS
482(defun assoc-default (key alist &optional test default)
483 "Find object KEY in a pseudo-alist ALIST.
753bc4f6
CY
484ALIST is a list of conses or objects. Each element
485 (or the element's car, if it is a cons) is compared with KEY by
486 calling TEST, with two arguments: (i) the element or its car,
487 and (ii) KEY.
488If that is non-nil, the element matches; then `assoc-default'
489 returns the element's cdr, if it is a cons, or DEFAULT if the
490 element is not a cons.
8a288450
RS
491
492If no element matches, the value is nil.
493If TEST is omitted or nil, `equal' is used."
494 (let (found (tail alist) value)
495 (while (and tail (not found))
496 (let ((elt (car tail)))
497 (when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key)
498 (setq found t value (if (consp elt) (cdr elt) default))))
499 (setq tail (cdr tail)))
500 value))
98aae5f6
KH
501
502(defun assoc-ignore-case (key alist)
503 "Like `assoc', but ignores differences in case and text representation.
504KEY must be a string. Upper-case and lower-case letters are treated as equal.
505Unibyte strings are converted to multibyte for comparison."
59f7af81 506 (declare (obsolete assoc-string "22.1"))
6b61353c 507 (assoc-string key alist t))
98aae5f6
KH
508
509(defun assoc-ignore-representation (key alist)
510 "Like `assoc', but ignores differences in text representation.
264ef586 511KEY must be a string.
98aae5f6 512Unibyte strings are converted to multibyte for comparison."
59f7af81 513 (declare (obsolete assoc-string "22.1"))
6b61353c 514 (assoc-string key alist nil))
cbbc3205
GM
515
516(defun member-ignore-case (elt list)
5612fd08 517 "Like `member', but ignore differences in case and text representation.
cbbc3205 518ELT must be a string. Upper-case and lower-case letters are treated as equal.
d86a3084
RS
519Unibyte strings are converted to multibyte for comparison.
520Non-strings in LIST are ignored."
521 (while (and list
522 (not (and (stringp (car list))
523 (eq t (compare-strings elt 0 nil (car list) 0 nil t)))))
242c13e8
MB
524 (setq list (cdr list)))
525 list)
cbbc3205 526
c4f484f2
RS
527(defun assq-delete-all (key alist)
528 "Delete from ALIST all elements whose car is `eq' to KEY.
529Return the modified alist.
530Elements of ALIST that are not conses are ignored."
531 (while (and (consp (car alist))
532 (eq (car (car alist)) key))
533 (setq alist (cdr alist)))
534 (let ((tail alist) tail-cdr)
535 (while (setq tail-cdr (cdr tail))
536 (if (and (consp (car tail-cdr))
537 (eq (car (car tail-cdr)) key))
538 (setcdr tail (cdr tail-cdr))
539 (setq tail tail-cdr))))
540 alist)
541
542(defun rassq-delete-all (value alist)
543 "Delete from ALIST all elements whose cdr is `eq' to VALUE.
544Return the modified alist.
545Elements of ALIST that are not conses are ignored."
546 (while (and (consp (car alist))
547 (eq (cdr (car alist)) value))
548 (setq alist (cdr alist)))
549 (let ((tail alist) tail-cdr)
550 (while (setq tail-cdr (cdr tail))
551 (if (and (consp (car tail-cdr))
552 (eq (cdr (car tail-cdr)) value))
553 (setcdr tail (cdr tail-cdr))
554 (setq tail tail-cdr))))
555 alist)
556
557(defun remove (elt seq)
558 "Return a copy of SEQ with all occurrences of ELT removed.
559SEQ must be a list, vector, or string. The comparison is done with `equal'."
560 (if (nlistp seq)
561 ;; If SEQ isn't a list, there's no need to copy SEQ because
562 ;; `delete' will return a new object.
563 (delete elt seq)
564 (delete elt (copy-sequence seq))))
565
566(defun remq (elt list)
567 "Return LIST with all occurrences of ELT removed.
568The comparison is done with `eq'. Contrary to `delq', this does not use
569side-effects, and the argument LIST is not modified."
7f9b7c53 570 (while (and (eq elt (car list)) (setq list (cdr list))))
c4f484f2
RS
571 (if (memq elt list)
572 (delq elt (copy-sequence list))
573 list))
9a5336ae 574\f
9a5336ae 575;;;; Keymap support.
be9b65ac 576
ed8bd4d7
SM
577(defun kbd (keys)
578 "Convert KEYS to the internal Emacs key representation.
579KEYS should be a string constant in the format used for
580saving keyboard macros (see `edmacro-mode')."
581 ;; Don't use a defalias, since the `pure' property is only true for
582 ;; the calling convention of `kbd'.
583 (read-kbd-macro keys))
f95e9344 584(put 'kbd 'pure t)
c4f484f2 585
be9b65ac 586(defun undefined ()
3fa173b4 587 "Beep to tell the user this binding is undefined."
be9b65ac 588 (interactive)
4c9797cb
SM
589 (ding)
590 (message "%s is undefined" (key-description (this-single-command-keys)))
591 (setq defining-kbd-macro nil)
592 (force-mode-line-update)
593 ;; If this is a down-mouse event, don't reset prefix-arg;
594 ;; pass it to the command run by the up event.
595 (setq prefix-arg
596 (when (memq 'down (event-modifiers last-command-event))
597 current-prefix-arg)))
be9b65ac 598
c4f484f2
RS
599;; Prevent the \{...} documentation construct
600;; from mentioning keys that run this command.
be9b65ac
DL
601(put 'undefined 'suppress-keymap t)
602
603(defun suppress-keymap (map &optional nodigits)
604 "Make MAP override all normally self-inserting keys to be undefined.
605Normally, as an exception, digits and minus-sign are set to make prefix args,
606but optional second arg NODIGITS non-nil treats them like other chars."
098ba983 607 (define-key map [remap self-insert-command] 'undefined)
be9b65ac
DL
608 (or nodigits
609 (let (loop)
610 (define-key map "-" 'negative-argument)
611 ;; Make plain numbers do numeric args.
612 (setq loop ?0)
613 (while (<= loop ?9)
614 (define-key map (char-to-string loop) 'digit-argument)
615 (setq loop (1+ loop))))))
616
640c8776
SM
617(defun make-composed-keymap (maps &optional parent)
618 "Construct a new keymap composed of MAPS and inheriting from PARENT.
619When looking up a key in the returned map, the key is looked in each
620keymap of MAPS in turn until a binding is found.
621If no binding is found in MAPS, the lookup continues in PARENT, if non-nil.
622As always with keymap inheritance, a nil binding in MAPS overrides
623any corresponding binding in PARENT, but it does not override corresponding
624bindings in other keymaps of MAPS.
625MAPS can be a list of keymaps or a single keymap.
626PARENT if non-nil should be a keymap."
627 `(keymap
628 ,@(if (keymapp maps) (list maps) maps)
629 ,@parent))
630
4ced66fd 631(defun define-key-after (keymap key definition &optional after)
4434d61b
RS
632 "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
633This is like `define-key' except that the binding for KEY is placed
634just after the binding for the event AFTER, instead of at the beginning
c34a9d34
RS
635of the map. Note that AFTER must be an event type (like KEY), NOT a command
636\(like DEFINITION).
637
4ced66fd 638If AFTER is t or omitted, the new binding goes at the end of the keymap.
08b1f8a1 639AFTER should be a single event type--a symbol or a character, not a sequence.
c34a9d34 640
4ced66fd 641Bindings are always added before any inherited map.
c34a9d34 642
0181e193
LMI
643The order of bindings in a keymap only matters when it is used as
644a menu, so this function is not useful for non-menu keymaps."
4ced66fd 645 (unless after (setq after t))
4434d61b
RS
646 (or (keymapp keymap)
647 (signal 'wrong-type-argument (list 'keymapp keymap)))
08b1f8a1
GM
648 (setq key
649 (if (<= (length key) 1) (aref key 0)
650 (setq keymap (lookup-key keymap
651 (apply 'vector
652 (butlast (mapcar 'identity key)))))
653 (aref key (1- (length key)))))
654 (let ((tail keymap) done inserted)
4434d61b
RS
655 (while (and (not done) tail)
656 ;; Delete any earlier bindings for the same key.
08b1f8a1 657 (if (eq (car-safe (car (cdr tail))) key)
4434d61b 658 (setcdr tail (cdr (cdr tail))))
08b1f8a1
GM
659 ;; If we hit an included map, go down that one.
660 (if (keymapp (car tail)) (setq tail (car tail)))
4434d61b
RS
661 ;; When we reach AFTER's binding, insert the new binding after.
662 ;; If we reach an inherited keymap, insert just before that.
113d28a8 663 ;; If we reach the end of this keymap, insert at the end.
c34a9d34
RS
664 (if (or (and (eq (car-safe (car tail)) after)
665 (not (eq after t)))
113d28a8
RS
666 (eq (car (cdr tail)) 'keymap)
667 (null (cdr tail)))
4434d61b 668 (progn
113d28a8
RS
669 ;; Stop the scan only if we find a parent keymap.
670 ;; Keep going past the inserted element
671 ;; so we can delete any duplications that come later.
672 (if (eq (car (cdr tail)) 'keymap)
673 (setq done t))
674 ;; Don't insert more than once.
675 (or inserted
08b1f8a1 676 (setcdr tail (cons (cons key definition) (cdr tail))))
113d28a8 677 (setq inserted t)))
4434d61b
RS
678 (setq tail (cdr tail)))))
679
a10cca6c 680(defun map-keymap-sorted (function keymap)
14694a59
RS
681 "Implement `map-keymap' with sorting.
682Don't call this function; it is for internal use only."
a10cca6c
SM
683 (let (list)
684 (map-keymap (lambda (a b) (push (cons a b) list))
685 keymap)
686 (setq list (sort list
687 (lambda (a b)
688 (setq a (car a) b (car b))
689 (if (integerp a)
690 (if (integerp b) (< a b)
691 t)
692 (if (integerp b) t
693 ;; string< also accepts symbols.
694 (string< a b))))))
695 (dolist (p list)
696 (funcall function (car p) (cdr p)))))
51fa3961 697
3349e122
SM
698(defun keymap--menu-item-binding (val)
699 "Return the binding part of a menu-item."
700 (cond
701 ((not (consp val)) val) ;Not a menu-item.
702 ((eq 'menu-item (car val))
703 (let* ((binding (nth 2 val))
704 (plist (nthcdr 3 val))
705 (filter (plist-get plist :filter)))
706 (if filter (funcall filter binding)
707 binding)))
708 ((and (consp (cdr val)) (stringp (cadr val)))
709 (cddr val))
710 ((stringp (car val))
711 (cdr val))
712 (t val))) ;Not a menu-item either.
713
714(defun keymap--menu-item-with-binding (item binding)
715 "Build a menu-item like ITEM but with its binding changed to BINDING."
716 (cond
08e1d82c 717 ((not (consp item)) binding) ;Not a menu-item.
3349e122
SM
718 ((eq 'menu-item (car item))
719 (setq item (copy-sequence item))
720 (let ((tail (nthcdr 2 item)))
721 (setcar tail binding)
722 ;; Remove any potential filter.
723 (if (plist-get (cdr tail) :filter)
724 (setcdr tail (plist-put (cdr tail) :filter nil))))
725 item)
726 ((and (consp (cdr item)) (stringp (cadr item)))
727 (cons (car item) (cons (cadr item) binding)))
728 (t (cons (car item) binding))))
729
730(defun keymap--merge-bindings (val1 val2)
731 "Merge bindings VAL1 and VAL2."
732 (let ((map1 (keymap--menu-item-binding val1))
733 (map2 (keymap--menu-item-binding val2)))
734 (if (not (and (keymapp map1) (keymapp map2)))
735 ;; There's nothing to merge: val1 takes precedence.
736 val1
737 (let ((map (list 'keymap map1 map2))
738 (item (if (keymapp val1) (if (keymapp val2) nil val2) val1)))
739 (keymap--menu-item-with-binding item map)))))
740
00f7c5ed 741(defun keymap-canonicalize (map)
3349e122
SM
742 "Return a simpler equivalent keymap.
743This resolves inheritance and redefinitions. The returned keymap
744should behave identically to a copy of KEYMAP w.r.t `lookup-key'
745and use in active keymaps and menus.
746Subkeymaps may be modified but are not canonicalized."
747 ;; FIXME: Problem with the difference between a nil binding
748 ;; that hides a binding in an inherited map and a nil binding that's ignored
749 ;; to let some further binding visible. Currently a nil binding hides all.
750 ;; FIXME: we may want to carefully (re)order elements in case they're
751 ;; menu-entries.
00f7c5ed 752 (let ((bindings ())
c099a588
AS
753 (ranges ())
754 (prompt (keymap-prompt map)))
00f7c5ed 755 (while (keymapp map)
3349e122 756 (setq map (map-keymap ;; -internal
00f7c5ed
SM
757 (lambda (key item)
758 (if (consp key)
759 ;; Treat char-ranges specially.
760 (push (cons key item) ranges)
761 (push (cons key item) bindings)))
762 map)))
3349e122 763 ;; Create the new map.
c099a588 764 (setq map (funcall (if ranges 'make-keymap 'make-sparse-keymap) prompt))
00f7c5ed 765 (dolist (binding ranges)
3349e122 766 ;; Treat char-ranges specially. FIXME: need to merge as well.
64981d1a 767 (define-key map (vector (car binding)) (cdr binding)))
3349e122 768 ;; Process the bindings starting from the end.
00f7c5ed
SM
769 (dolist (binding (prog1 bindings (setq bindings ())))
770 (let* ((key (car binding))
00f7c5ed 771 (oldbind (assq key bindings)))
3349e122
SM
772 (push (if (not oldbind)
773 ;; The normal case: no duplicate bindings.
774 binding
775 ;; This is the second binding for this key.
776 (setq bindings (delq oldbind bindings))
777 (cons key (keymap--merge-bindings (cdr binding)
778 (cdr oldbind))))
779 bindings)))
00f7c5ed
SM
780 (nconc map bindings)))
781
8bed5e3d
RS
782(put 'keyboard-translate-table 'char-table-extra-slots 0)
783
9a5336ae 784(defun keyboard-translate (from to)
9aeb25a6 785 "Translate character FROM to TO on the current terminal.
9a5336ae
JB
786This function creates a `keyboard-translate-table' if necessary
787and then modifies one entry in it."
8bed5e3d
RS
788 (or (char-table-p keyboard-translate-table)
789 (setq keyboard-translate-table
790 (make-char-table 'keyboard-translate-table nil)))
9a5336ae 791 (aset keyboard-translate-table from to))
9a5336ae 792\f
c4f484f2 793;;;; Key binding commands.
9a5336ae 794
c4f484f2
RS
795(defun global-set-key (key command)
796 "Give KEY a global binding as COMMAND.
797COMMAND is the command definition to use; usually it is
798a symbol naming an interactively-callable function.
799KEY is a key sequence; noninteractively, it is a string or vector
800of characters or event types, and non-ASCII characters with codes
801above 127 (such as ISO Latin-1) can be included if you use a vector.
9a5336ae 802
c4f484f2
RS
803Note that if KEY has a local binding in the current buffer,
804that local binding will continue to shadow any global binding
805that you make with this function."
806 (interactive "KSet key globally: \nCSet key %s to command: ")
807 (or (vectorp key) (stringp key)
808 (signal 'wrong-type-argument (list 'arrayp key)))
809 (define-key (current-global-map) key command))
9a5336ae 810
c4f484f2
RS
811(defun local-set-key (key command)
812 "Give KEY a local binding as COMMAND.
813COMMAND is the command definition to use; usually it is
814a symbol naming an interactively-callable function.
815KEY is a key sequence; noninteractively, it is a string or vector
816of characters or event types, and non-ASCII characters with codes
817above 127 (such as ISO Latin-1) can be included if you use a vector.
9a5336ae 818
fa6bc6fd
JB
819The binding goes in the current buffer's local map, which in most
820cases is shared with all other buffers in the same major mode."
c4f484f2
RS
821 (interactive "KSet key locally: \nCSet key %s locally to command: ")
822 (let ((map (current-local-map)))
823 (or map
824 (use-local-map (setq map (make-sparse-keymap))))
825 (or (vectorp key) (stringp key)
826 (signal 'wrong-type-argument (list 'arrayp key)))
827 (define-key map key command)))
9a5336ae 828
c4f484f2
RS
829(defun global-unset-key (key)
830 "Remove global binding of KEY.
831KEY is a string or vector representing a sequence of keystrokes."
832 (interactive "kUnset key globally: ")
833 (global-set-key key nil))
9a5336ae 834
c4f484f2
RS
835(defun local-unset-key (key)
836 "Remove local binding of KEY.
837KEY is a string or vector representing a sequence of keystrokes."
838 (interactive "kUnset key locally: ")
839 (if (current-local-map)
840 (local-set-key key nil))
841 nil)
842\f
843;;;; substitute-key-definition and its subroutines.
844
845(defvar key-substitution-in-progress nil
c8227332 846 "Used internally by `substitute-key-definition'.")
c4f484f2
RS
847
848(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
849 "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
850In other words, OLDDEF is replaced with NEWDEF where ever it appears.
851Alternatively, if optional fourth argument OLDMAP is specified, we redefine
852in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP.
853
fda11e85
RS
854If you don't specify OLDMAP, you can usually get the same results
855in a cleaner way with command remapping, like this:
fa6bc6fd 856 (define-key KEYMAP [remap OLDDEF] NEWDEF)
50d16788 857\n(fn OLDDEF NEWDEF KEYMAP &optional OLDMAP)"
c4f484f2
RS
858 ;; Don't document PREFIX in the doc string because we don't want to
859 ;; advertise it. It's meant for recursive calls only. Here's its
860 ;; meaning
861
862 ;; If optional argument PREFIX is specified, it should be a key
863 ;; prefix, a string. Redefined bindings will then be bound to the
864 ;; original key, with PREFIX added at the front.
865 (or prefix (setq prefix ""))
866 (let* ((scan (or oldmap keymap))
867 (prefix1 (vconcat prefix [nil]))
868 (key-substitution-in-progress
869 (cons scan key-substitution-in-progress)))
870 ;; Scan OLDMAP, finding each char or event-symbol that
871 ;; has any definition, and act on it with hack-key.
872 (map-keymap
873 (lambda (char defn)
874 (aset prefix1 (length prefix) char)
875 (substitute-key-definition-key defn olddef newdef prefix1 keymap))
876 scan)))
877
878(defun substitute-key-definition-key (defn olddef newdef prefix keymap)
879 (let (inner-def skipped menu-item)
880 ;; Find the actual command name within the binding.
881 (if (eq (car-safe defn) 'menu-item)
882 (setq menu-item defn defn (nth 2 defn))
883 ;; Skip past menu-prompt.
884 (while (stringp (car-safe defn))
885 (push (pop defn) skipped))
886 ;; Skip past cached key-equivalence data for menu items.
887 (if (consp (car-safe defn))
888 (setq defn (cdr defn))))
889 (if (or (eq defn olddef)
890 ;; Compare with equal if definition is a key sequence.
891 ;; That is useful for operating on function-key-map.
892 (and (or (stringp defn) (vectorp defn))
893 (equal defn olddef)))
894 (define-key keymap prefix
895 (if menu-item
896 (let ((copy (copy-sequence menu-item)))
897 (setcar (nthcdr 2 copy) newdef)
898 copy)
899 (nconc (nreverse skipped) newdef)))
900 ;; Look past a symbol that names a keymap.
901 (setq inner-def
cf25c647 902 (or (indirect-function defn t) defn))
c4f484f2
RS
903 ;; For nested keymaps, we use `inner-def' rather than `defn' so as to
904 ;; avoid autoloading a keymap. This is mostly done to preserve the
905 ;; original non-autoloading behavior of pre-map-keymap times.
906 (if (and (keymapp inner-def)
907 ;; Avoid recursively scanning
908 ;; where KEYMAP does not have a submap.
909 (let ((elt (lookup-key keymap prefix)))
910 (or (null elt) (natnump elt) (keymapp elt)))
911 ;; Avoid recursively rescanning keymap being scanned.
912 (not (memq inner-def key-substitution-in-progress)))
913 ;; If this one isn't being scanned already, scan it now.
914 (substitute-key-definition olddef newdef keymap inner-def prefix)))))
9a5336ae
JB
915
916\f
264ef586 917;;;; The global keymap tree.
9a5336ae 918
354f0faf
SM
919;; global-map, esc-map, and ctl-x-map have their values set up in
920;; keymap.c; we just give them docstrings here.
9a5336ae
JB
921
922(defvar global-map nil
923 "Default global keymap mapping Emacs keyboard input into commands.
924The value is a keymap which is usually (but not necessarily) Emacs's
925global map.")
926
927(defvar esc-map nil
928 "Default keymap for ESC (meta) commands.
929The normal global definition of the character ESC indirects to this keymap.")
930
931(defvar ctl-x-map nil
932 "Default keymap for C-x commands.
933The normal global definition of the character C-x indirects to this keymap.")
934
935(defvar ctl-x-4-map (make-sparse-keymap)
03eeb110 936 "Keymap for subcommands of C-x 4.")
059184dd 937(defalias 'ctl-x-4-prefix ctl-x-4-map)
9a5336ae
JB
938(define-key ctl-x-map "4" 'ctl-x-4-prefix)
939
940(defvar ctl-x-5-map (make-sparse-keymap)
941 "Keymap for frame commands.")
059184dd 942(defalias 'ctl-x-5-prefix ctl-x-5-map)
9a5336ae
JB
943(define-key ctl-x-map "5" 'ctl-x-5-prefix)
944
0f03054a 945\f
9a5336ae
JB
946;;;; Event manipulation functions.
947
03a74b84 948(defconst listify-key-sequence-1 (logior 128 ?\M-\C-@))
114137b8 949
cde6d7e3
RS
950(defun listify-key-sequence (key)
951 "Convert a key sequence to a list of events."
952 (if (vectorp key)
953 (append key nil)
954 (mapcar (function (lambda (c)
955 (if (> c 127)
114137b8 956 (logxor c listify-key-sequence-1)
cde6d7e3 957 c)))
d47f7515 958 key)))
cde6d7e3 959
e1894109 960(defun eventp (obj)
53e5a4e8 961 "True if the argument is an event object."
e1894109
SM
962 (when obj
963 (or (integerp obj)
964 (and (symbolp obj) obj (not (keywordp obj)))
965 (and (consp obj) (symbolp (car obj))))))
53e5a4e8
RS
966
967(defun event-modifiers (event)
a3111ae4 968 "Return a list of symbols representing the modifier keys in event EVENT.
53e5a4e8 969The elements of the list may include `meta', `control',
32295976 970`shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
0e91dc92
LT
971and `down'.
972EVENT may be an event or an event type. If EVENT is a symbol
973that has never been used in an event that has been read as input
b1a4f8e1
SM
974in the current Emacs session, then this function may fail to include
975the `click' modifier."
53e5a4e8
RS
976 (let ((type event))
977 (if (listp type)
978 (setq type (car type)))
979 (if (symbolp type)
58da34c7
SM
980 ;; Don't read event-symbol-elements directly since we're not
981 ;; sure the symbol has already been parsed.
982 (cdr (internal-event-symbol-parse-modifiers type))
5572c97f
RS
983 (let ((list nil)
984 (char (logand type (lognot (logior ?\M-\^@ ?\C-\^@ ?\S-\^@
985 ?\H-\^@ ?\s-\^@ ?\A-\^@)))))
986 (if (not (zerop (logand type ?\M-\^@)))
9166dbf6 987 (push 'meta list))
5572c97f
RS
988 (if (or (not (zerop (logand type ?\C-\^@)))
989 (< char 32))
9166dbf6 990 (push 'control list))
5572c97f
RS
991 (if (or (not (zerop (logand type ?\S-\^@)))
992 (/= char (downcase char)))
9166dbf6 993 (push 'shift list))
da16e648 994 (or (zerop (logand type ?\H-\^@))
9166dbf6 995 (push 'hyper list))
da16e648 996 (or (zerop (logand type ?\s-\^@))
9166dbf6 997 (push 'super list))
da16e648 998 (or (zerop (logand type ?\A-\^@))
9166dbf6 999 (push 'alt list))
53e5a4e8
RS
1000 list))))
1001
d63de416 1002(defun event-basic-type (event)
a3111ae4 1003 "Return the basic type of the given event (all modifiers removed).
0e91dc92
LT
1004The value is a printing character (not upper case) or a symbol.
1005EVENT may be an event or an event type. If EVENT is a symbol
1006that has never been used in an event that has been read as input
1007in the current Emacs session, then this function may return nil."
2b0f4ba5
JB
1008 (if (consp event)
1009 (setq event (car event)))
d63de416
RS
1010 (if (symbolp event)
1011 (car (get event 'event-symbol-elements))
9aca2476
RS
1012 (let* ((base (logand event (1- ?\A-\^@)))
1013 (uncontrolled (if (< base 32) (logior base 64) base)))
1014 ;; There are some numbers that are invalid characters and
1015 ;; cause `downcase' to get an error.
1016 (condition-case ()
1017 (downcase uncontrolled)
1018 (error uncontrolled)))))
d63de416 1019
0f03054a
RS
1020(defsubst mouse-movement-p (object)
1021 "Return non-nil if OBJECT is a mouse movement event."
9166dbf6 1022 (eq (car-safe object) 'mouse-movement))
0f03054a 1023
5ad4f91c
SS
1024(defun mouse-event-p (object)
1025 "Return non-nil if OBJECT is a mouse click event."
1026 ;; is this really correct? maybe remove mouse-movement?
1027 (memq (event-basic-type object) '(mouse-1 mouse-2 mouse-3 mouse-movement)))
1028
e1894109 1029(defun event-start (event)
0f03054a 1030 "Return the starting position of EVENT.
c88aaf48
CY
1031EVENT should be a click, drag, or key press event.
1032If it is a key press event, the return value has the form
1033 (WINDOW POS (0 . 0) 0)
1034If it is a click or drag event, it has the form
6b61353c
KH
1035 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
1036 IMAGE (DX . DY) (WIDTH . HEIGHT))
c88aaf48
CY
1037The `posn-' functions access elements of such lists.
1038For more information, see Info node `(elisp)Click Events'.
1039
1040If EVENT is a mouse or key press or a mouse click, this is the
1041position of the event. If EVENT is a drag, this is the starting
1042position of the drag."
5ef6a86d 1043 (if (consp event) (nth 1 event)
e1894109
SM
1044 (or (posn-at-point)
1045 (list (selected-window) (point) '(0 . 0) 0))))
0f03054a 1046
e1894109 1047(defun event-end (event)
6b61353c
KH
1048 "Return the ending location of EVENT.
1049EVENT should be a click, drag, or key press event.
c88aaf48
CY
1050If EVENT is a key press event, the return value has the form
1051 (WINDOW POS (0 . 0) 0)
1052If EVENT is a click event, this function is the same as
1053`event-start'. For click and drag events, the return value has
1054the form
6b61353c
KH
1055 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
1056 IMAGE (DX . DY) (WIDTH . HEIGHT))
c88aaf48
CY
1057The `posn-' functions access elements of such lists.
1058For more information, see Info node `(elisp)Click Events'.
1059
1060If EVENT is a mouse or key press or a mouse click, this is the
1061position of the event. If EVENT is a drag, this is the starting
1062position of the drag."
5ef6a86d 1063 (if (consp event) (nth (if (consp (nth 2 event)) 2 1) event)
e1894109
SM
1064 (or (posn-at-point)
1065 (list (selected-window) (point) '(0 . 0) 0))))
0f03054a 1066
32295976
RS
1067(defsubst event-click-count (event)
1068 "Return the multi-click count of EVENT, a click or drag event.
1069The return value is a positive integer."
5ef6a86d 1070 (if (and (consp event) (integerp (nth 2 event))) (nth 2 event) 1))
c4f484f2
RS
1071\f
1072;;;; Extracting fields of the positions in an event.
32295976 1073
e1894109
SM
1074(defun posnp (obj)
1075 "Return non-nil if OBJ appears to be a valid `posn' object."
1076 (and (windowp (car-safe obj))
1077 (atom (car-safe (setq obj (cdr obj)))) ;AREA-OR-POS.
1078 (integerp (car-safe (car-safe (setq obj (cdr obj))))) ;XOFFSET.
1079 (integerp (car-safe (cdr obj))))) ;TIMESTAMP.
1080
0f03054a
RS
1081(defsubst posn-window (position)
1082 "Return the window in POSITION.
6b61353c
KH
1083POSITION should be a list of the form returned by the `event-start'
1084and `event-end' functions."
0f03054a
RS
1085 (nth 0 position))
1086
6b61353c
KH
1087(defsubst posn-area (position)
1088 "Return the window area recorded in POSITION, or nil for the text area.
1089POSITION should be a list of the form returned by the `event-start'
1090and `event-end' functions."
1091 (let ((area (if (consp (nth 1 position))
1092 (car (nth 1 position))
1093 (nth 1 position))))
1094 (and (symbolp area) area)))
1095
9a1ff164 1096(defun posn-point (position)
0f03054a 1097 "Return the buffer location in POSITION.
6b61353c 1098POSITION should be a list of the form returned by the `event-start'
9a1ff164
SM
1099and `event-end' functions.
1100Returns nil if POSITION does not correspond to any buffer location (e.g.
1101a click on a scroll bar)."
6b61353c 1102 (or (nth 5 position)
9a1ff164
SM
1103 (let ((pt (nth 1 position)))
1104 (or (car-safe pt)
1105 ;; Apparently this can also be `vertical-scroll-bar' (bug#13979).
1106 (if (integerp pt) pt)))))
6b61353c
KH
1107
1108(defun posn-set-point (position)
1109 "Move point to POSITION.
1110Select the corresponding window as well."
c8227332
VJL
1111 (if (not (windowp (posn-window position)))
1112 (error "Position not in text area of window"))
1113 (select-window (posn-window position))
1114 (if (numberp (posn-point position))
1115 (goto-char (posn-point position))))
0f03054a 1116
e55c21be
RS
1117(defsubst posn-x-y (position)
1118 "Return the x and y coordinates in POSITION.
74194465
CY
1119The return value has the form (X . Y), where X and Y are given in
1120pixels. POSITION should be a list of the form returned by
1121`event-start' and `event-end'."
0f03054a
RS
1122 (nth 2 position))
1123
aa360da1
GM
1124(declare-function scroll-bar-scale "scroll-bar" (num-denom whole))
1125
ed627e08 1126(defun posn-col-row (position)
6b61353c
KH
1127 "Return the nominal column and row in POSITION, measured in characters.
1128The column and row values are approximations calculated from the x
1129and y coordinates in POSITION and the frame's default character width
1130and height.
ed627e08 1131For a scroll-bar event, the result column is 0, and the row
6b61353c
KH
1132corresponds to the vertical position of the click in the scroll bar.
1133POSITION should be a list of the form returned by the `event-start'
1134and `event-end' functions."
1135 (let* ((pair (posn-x-y position))
1136 (window (posn-window position))
1137 (area (posn-area position)))
1138 (cond
1139 ((null window)
1140 '(0 . 0))
1141 ((eq area 'vertical-scroll-bar)
1142 (cons 0 (scroll-bar-scale pair (1- (window-height window)))))
1143 ((eq area 'horizontal-scroll-bar)
1144 (cons (scroll-bar-scale pair (window-width window)) 0))
1145 (t
1146 (let* ((frame (if (framep window) window (window-frame window)))
7beba943
CY
1147 ;; FIXME: This should take line-spacing properties on
1148 ;; newlines into account.
1149 (spacing (when (display-graphic-p frame)
1150 (or (with-current-buffer (window-buffer window)
1151 line-spacing)
1152 (frame-parameter frame 'line-spacing)))))
1153 (cond ((floatp spacing)
1154 (setq spacing (truncate (* spacing
1155 (frame-char-height frame)))))
1156 ((null spacing)
1157 (setq spacing 0)))
1158 (cons (/ (car pair) (frame-char-width frame))
e68afd74 1159 (- (/ (cdr pair) (+ (frame-char-height frame) spacing))
11aad4e9
EZ
1160 (if (null (with-current-buffer (window-buffer window)
1161 header-line-format))
1162 0 1))))))))
6b61353c
KH
1163
1164(defun posn-actual-col-row (position)
1165 "Return the actual column and row in POSITION, measured in characters.
1166These are the actual row number in the window and character number in that row.
1167Return nil if POSITION does not contain the actual position; in that case
1168`posn-col-row' can be used to get approximate values.
1169POSITION should be a list of the form returned by the `event-start'
1170and `event-end' functions."
1171 (nth 6 position))
e55c21be 1172
0f03054a
RS
1173(defsubst posn-timestamp (position)
1174 "Return the timestamp of POSITION.
6b61353c
KH
1175POSITION should be a list of the form returned by the `event-start'
1176and `event-end' functions."
0f03054a 1177 (nth 3 position))
9a5336ae 1178
9a1ff164 1179(defun posn-string (position)
79a09c9c
KS
1180 "Return the string object of POSITION.
1181Value is a cons (STRING . STRING-POS), or nil if not a string.
6b61353c
KH
1182POSITION should be a list of the form returned by the `event-start'
1183and `event-end' functions."
9a1ff164
SM
1184 (let ((x (nth 4 position)))
1185 ;; Apparently this can also be `handle' or `below-handle' (bug#13979).
1186 (when (consp x) x)))
6b61353c
KH
1187
1188(defsubst posn-image (position)
79a09c9c 1189 "Return the image object of POSITION.
0c3f75f6 1190Value is a list (image ...), or nil if not an image.
6b61353c
KH
1191POSITION should be a list of the form returned by the `event-start'
1192and `event-end' functions."
1193 (nth 7 position))
1194
1195(defsubst posn-object (position)
1196 "Return the object (image or string) of POSITION.
79a09c9c
KS
1197Value is a list (image ...) for an image object, a cons cell
1198\(STRING . STRING-POS) for a string object, and nil for a buffer position.
6b61353c
KH
1199POSITION should be a list of the form returned by the `event-start'
1200and `event-end' functions."
1201 (or (posn-image position) (posn-string position)))
1202
1203(defsubst posn-object-x-y (position)
1204 "Return the x and y coordinates relative to the object of POSITION.
74194465
CY
1205The return value has the form (DX . DY), where DX and DY are
1206given in pixels. POSITION should be a list of the form returned
1207by `event-start' and `event-end'."
6b61353c
KH
1208 (nth 8 position))
1209
1210(defsubst posn-object-width-height (position)
1211 "Return the pixel width and height of the object of POSITION.
74194465
CY
1212The return value has the form (WIDTH . HEIGHT). POSITION should
1213be a list of the form returned by `event-start' and `event-end'."
6b61353c
KH
1214 (nth 9 position))
1215
0f03054a 1216\f
9a5336ae
JB
1217;;;; Obsolescent names for functions.
1218
9d28c33e
SM
1219(define-obsolete-function-alias 'window-dot 'window-point "22.1")
1220(define-obsolete-function-alias 'set-window-dot 'set-window-point "22.1")
1221(define-obsolete-function-alias 'read-input 'read-string "22.1")
1222(define-obsolete-function-alias 'show-buffer 'set-window-buffer "22.1")
1223(define-obsolete-function-alias 'eval-current-buffer 'eval-buffer "22.1")
1224(define-obsolete-function-alias 'string-to-int 'string-to-number "22.1")
1225
9d28c33e 1226(make-obsolete 'forward-point "use (+ (point) N) instead." "23.1")
2a1e2476 1227(make-obsolete 'buffer-has-markers-at nil "24.3")
9d28c33e
SM
1228
1229(defun insert-string (&rest args)
1230 "Mocklisp-compatibility insert function.
1231Like the function `insert' except that any argument that is a number
1232is converted into a string by expressing it in decimal."
59f7af81 1233 (declare (obsolete insert "22.1"))
9d28c33e
SM
1234 (dolist (el args)
1235 (insert (if (integerp el) (number-to-string el) el))))
9d28c33e 1236
59f7af81
CY
1237(defun makehash (&optional test)
1238 (declare (obsolete make-hash-table "22.1"))
1239 (make-hash-table :test (or test 'eql)))
9d28c33e 1240
89561f72
PE
1241(defun log10 (x)
1242 "Return (log X 10), the log base 10 of X."
1243 (declare (obsolete log "24.4"))
1244 (log x 10))
1245
9d28c33e
SM
1246;; These are used by VM and some old programs
1247(defalias 'focus-frame 'ignore "")
1248(make-obsolete 'focus-frame "it does nothing." "22.1")
1249(defalias 'unfocus-frame 'ignore "")
1250(make-obsolete 'unfocus-frame "it does nothing." "22.1")
1251(make-obsolete 'make-variable-frame-local
1252 "explicitly check for a frame-parameter instead." "22.2")
4fcc3d32 1253(set-advertised-calling-convention
f3a30a50
SM
1254 'all-completions '(string collection &optional predicate) "23.1")
1255(set-advertised-calling-convention 'unintern '(name obarray) "23.3")
2a1e2476 1256(set-advertised-calling-convention 'redirect-frame-focus '(frame focus-frame) "24.3")
328a8179
SM
1257(set-advertised-calling-convention 'decode-char '(ch charset) "21.4")
1258(set-advertised-calling-convention 'encode-char '(ch charset) "21.4")
9d28c33e
SM
1259\f
1260;;;; Obsolescence declarations for variables, and aliases.
1261
4e3b4528
SM
1262;; Special "default-FOO" variables which contain the default value of
1263;; the "FOO" variable are nasty. Their implementation is brittle, and
1264;; slows down several unrelated variable operations; furthermore, they
1265;; can lead to really odd behavior if you decide to make them
1266;; buffer-local.
1267
1268;; Not used at all in Emacs, last time I checked:
1269(make-obsolete-variable 'default-mode-line-format 'mode-line-format "23.2")
1270(make-obsolete-variable 'default-header-line-format 'header-line-format "23.2")
1271(make-obsolete-variable 'default-line-spacing 'line-spacing "23.2")
1272(make-obsolete-variable 'default-abbrev-mode 'abbrev-mode "23.2")
1273(make-obsolete-variable 'default-ctl-arrow 'ctl-arrow "23.2")
4e3b4528
SM
1274(make-obsolete-variable 'default-truncate-lines 'truncate-lines "23.2")
1275(make-obsolete-variable 'default-left-margin 'left-margin "23.2")
1276(make-obsolete-variable 'default-tab-width 'tab-width "23.2")
1277(make-obsolete-variable 'default-case-fold-search 'case-fold-search "23.2")
1278(make-obsolete-variable 'default-left-margin-width 'left-margin-width "23.2")
1279(make-obsolete-variable 'default-right-margin-width 'right-margin-width "23.2")
1280(make-obsolete-variable 'default-left-fringe-width 'left-fringe-width "23.2")
1281(make-obsolete-variable 'default-right-fringe-width 'right-fringe-width "23.2")
1282(make-obsolete-variable 'default-fringes-outside-margins 'fringes-outside-margins "23.2")
1283(make-obsolete-variable 'default-scroll-bar-width 'scroll-bar-width "23.2")
1284(make-obsolete-variable 'default-vertical-scroll-bar 'vertical-scroll-bar "23.2")
1285(make-obsolete-variable 'default-indicate-empty-lines 'indicate-empty-lines "23.2")
1286(make-obsolete-variable 'default-indicate-buffer-boundaries 'indicate-buffer-boundaries "23.2")
1287(make-obsolete-variable 'default-fringe-indicator-alist 'fringe-indicator-alist "23.2")
1288(make-obsolete-variable 'default-fringe-cursor-alist 'fringe-cursor-alist "23.2")
1289(make-obsolete-variable 'default-scroll-up-aggressively 'scroll-up-aggressively "23.2")
1290(make-obsolete-variable 'default-scroll-down-aggressively 'scroll-down-aggressively "23.2")
1291(make-obsolete-variable 'default-fill-column 'fill-column "23.2")
1292(make-obsolete-variable 'default-cursor-type 'cursor-type "23.2")
4e3b4528
SM
1293(make-obsolete-variable 'default-cursor-in-non-selected-windows 'cursor-in-non-selected-windows "23.2")
1294(make-obsolete-variable 'default-buffer-file-coding-system 'buffer-file-coding-system "23.2")
1295(make-obsolete-variable 'default-major-mode 'major-mode "23.2")
1296(make-obsolete-variable 'default-enable-multibyte-characters
1297 "use enable-multibyte-characters or set-buffer-multibyte instead" "23.2")
1298
50d4ba39 1299(make-obsolete-variable 'define-key-rebound-commands nil "23.2")
379ec02c 1300(make-obsolete-variable 'redisplay-end-trigger-functions 'jit-lock-register "23.1")
78f64af0
SM
1301(make-obsolete-variable 'deferred-action-list 'post-command-hook "24.1")
1302(make-obsolete-variable 'deferred-action-function 'post-command-hook "24.1")
379ec02c
SM
1303(make-obsolete 'window-redisplay-end-trigger nil "23.1")
1304(make-obsolete 'set-window-redisplay-end-trigger nil "23.1")
1305
1306(make-obsolete 'process-filter-multibyte-p nil "23.1")
1307(make-obsolete 'set-process-filter-multibyte nil "23.1")
1308
8ee7e9db
LT
1309;; Lisp manual only updated in 22.1.
1310(define-obsolete-variable-alias 'executing-macro 'executing-kbd-macro
c8227332 1311 "before 19.34")
8ee7e9db 1312
d1069532
SM
1313(define-obsolete-variable-alias 'x-lost-selection-hooks
1314 'x-lost-selection-functions "22.1")
1315(define-obsolete-variable-alias 'x-sent-selection-hooks
1316 'x-sent-selection-functions "22.1")
9e247d24 1317
b46957e2
EZ
1318;; This was introduced in 21.4 for pre-unicode unification. That
1319;; usage was rendered obsolete in 23.1 which uses Unicode internally.
1320;; Other uses are possible, so this variable is not _really_ obsolete,
1321;; but Stefan insists to mark it so.
1322(make-obsolete-variable 'translation-table-for-input nil "23.1")
1323
9e247d24 1324(defvaralias 'messages-buffer-max-lines 'message-log-max)
9a5336ae
JB
1325\f
1326;;;; Alternate names for functions - these are not being phased out.
1327
a18ff988
JB
1328(defalias 'send-string 'process-send-string)
1329(defalias 'send-region 'process-send-region)
059184dd
ER
1330(defalias 'string= 'string-equal)
1331(defalias 'string< 'string-lessp)
1332(defalias 'move-marker 'set-marker)
059184dd
ER
1333(defalias 'rplaca 'setcar)
1334(defalias 'rplacd 'setcdr)
eb8c3be9 1335(defalias 'beep 'ding) ;preserve lingual purity
059184dd
ER
1336(defalias 'indent-to-column 'indent-to)
1337(defalias 'backward-delete-char 'delete-backward-char)
1338(defalias 'search-forward-regexp (symbol-function 're-search-forward))
1339(defalias 'search-backward-regexp (symbol-function 're-search-backward))
1340(defalias 'int-to-string 'number-to-string)
024ae2c6 1341(defalias 'store-match-data 'set-match-data)
e6979067 1342(defalias 'chmod 'set-file-modes)
53374291 1343(defalias 'mkdir 'make-directory)
d6c22d46 1344;; These are the XEmacs names:
475fb2fb
KH
1345(defalias 'point-at-eol 'line-end-position)
1346(defalias 'point-at-bol 'line-beginning-position)
37f6661a 1347
c4f484f2
RS
1348(defalias 'user-original-login-name 'user-login-name)
1349
be9b65ac 1350\f
9a5336ae 1351;;;; Hook manipulation functions.
be9b65ac 1352
0e4d378b 1353(defun add-hook (hook function &optional append local)
32295976
RS
1354 "Add to the value of HOOK the function FUNCTION.
1355FUNCTION is not added if already present.
1356FUNCTION is added (if necessary) at the beginning of the hook list
1357unless the optional argument APPEND is non-nil, in which case
1358FUNCTION is added at the end.
1359
0e4d378b 1360The optional fourth argument, LOCAL, if non-nil, says to modify
465c5fc8
LMI
1361the hook's buffer-local value rather than its global value.
1362This makes the hook buffer-local, and it makes t a member of the
1363buffer-local value. That acts as a flag to run the hook
1364functions of the global value as well as in the local value.
0e4d378b 1365
32295976
RS
1366HOOK should be a symbol, and FUNCTION may be any valid function. If
1367HOOK is void, it is first set to nil. If HOOK's value is a single
aa09b5ca 1368function, it is changed to a list of functions."
be9b65ac 1369 (or (boundp hook) (set hook nil))
0e4d378b 1370 (or (default-boundp hook) (set-default hook nil))
08b1f8a1
GM
1371 (if local (unless (local-variable-if-set-p hook)
1372 (set (make-local-variable hook) (list t)))
8947a5e2
SM
1373 ;; Detect the case where make-local-variable was used on a hook
1374 ;; and do what we used to do.
1375 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook)))
1376 (setq local t)))
1377 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
1378 ;; If the hook value is a single function, turn it into a list.
9f25cb77 1379 (when (or (not (listp hook-value)) (functionp hook-value))
2248c40d 1380 (setq hook-value (list hook-value)))
8947a5e2
SM
1381 ;; Do the actual addition if necessary
1382 (unless (member function hook-value)
ff917d63
DN
1383 (when (stringp function)
1384 (setq function (purecopy function)))
8947a5e2
SM
1385 (setq hook-value
1386 (if append
1387 (append hook-value (list function))
1388 (cons function hook-value))))
1389 ;; Set the actual variable
35310461
RS
1390 (if local
1391 (progn
1392 ;; If HOOK isn't a permanent local,
1393 ;; but FUNCTION wants to survive a change of modes,
1394 ;; mark HOOK as partially permanent.
1395 (and (symbolp function)
1396 (get function 'permanent-local-hook)
1397 (not (get hook 'permanent-local))
1398 (put hook 'permanent-local 'permanent-local-hook))
1399 (set hook hook-value))
1400 (set-default hook hook-value))))
0e4d378b
RS
1401
1402(defun remove-hook (hook function &optional local)
24980d16
RS
1403 "Remove from the value of HOOK the function FUNCTION.
1404HOOK should be a symbol, and FUNCTION may be any valid function. If
1405FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
0e4d378b
RS
1406list of hooks to run in HOOK, then nothing is done. See `add-hook'.
1407
1408The optional third argument, LOCAL, if non-nil, says to modify
6b61353c 1409the hook's buffer-local value rather than its default value."
8947a5e2
SM
1410 (or (boundp hook) (set hook nil))
1411 (or (default-boundp hook) (set-default hook nil))
6b61353c
KH
1412 ;; Do nothing if LOCAL is t but this hook has no local binding.
1413 (unless (and local (not (local-variable-p hook)))
8947a5e2
SM
1414 ;; Detect the case where make-local-variable was used on a hook
1415 ;; and do what we used to do.
6b61353c
KH
1416 (when (and (local-variable-p hook)
1417 (not (and (consp (symbol-value hook))
1418 (memq t (symbol-value hook)))))
1419 (setq local t))
1420 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
1421 ;; Remove the function, for both the list and the non-list cases.
1422 (if (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
1423 (if (equal hook-value function) (setq hook-value nil))
1424 (setq hook-value (delete function (copy-sequence hook-value))))
1425 ;; If the function is on the global hook, we need to shadow it locally
1426 ;;(when (and local (member function (default-value hook))
1427 ;; (not (member (cons 'not function) hook-value)))
1428 ;; (push (cons 'not function) hook-value))
1429 ;; Set the actual variable
1430 (if (not local)
1431 (set-default hook hook-value)
1432 (if (equal hook-value '(t))
1433 (kill-local-variable hook)
1434 (set hook hook-value))))))
6e3af630 1435
ba83908c
SM
1436(defmacro letrec (binders &rest body)
1437 "Bind variables according to BINDERS then eval BODY.
1438The value of the last form in BODY is returned.
1439Each element of BINDERS is a list (SYMBOL VALUEFORM) which binds
1440SYMBOL to the value of VALUEFORM.
1441All symbols are bound before the VALUEFORMs are evalled."
1442 ;; Only useful in lexical-binding mode.
1443 ;; As a special-form, we could implement it more efficiently (and cleanly,
1444 ;; making the vars actually unbound during evaluation of the binders).
1445 (declare (debug let) (indent 1))
1446 `(let ,(mapcar #'car binders)
1447 ,@(mapcar (lambda (binder) `(setq ,@binder)) binders)
1448 ,@body))
1449
b1f6fa26
CY
1450(defmacro with-wrapper-hook (hook args &rest body)
1451 "Run BODY, using wrapper functions from HOOK with additional ARGS.
1452HOOK is an abnormal hook. Each hook function in HOOK \"wraps\"
1453around the preceding ones, like a set of nested `around' advices.
1454
1455Each hook function should accept an argument list consisting of a
1456function FUN, followed by the additional arguments in ARGS.
1457
c7291ad9
GM
1458The first hook function in HOOK is passed a FUN that, if it is called
1459with arguments ARGS, performs BODY (i.e., the default operation).
1460The FUN passed to each successive hook function is defined based
1461on the preceding hook functions; if called with arguments ARGS,
1462it does what the `with-wrapper-hook' call would do if the
1463preceding hook functions were the only ones present in HOOK.
1464
1465Each hook function may call its FUN argument as many times as it wishes,
1466including never. In that case, such a hook function acts to replace
1467the default definition altogether, and any preceding hook functions.
1468Of course, a subsequent hook function may do the same thing.
1469
1470Each hook function definition is used to construct the FUN passed
b1f6fa26
CY
1471to the next hook function, if any. The last (or \"outermost\")
1472FUN is then called once."
d36ed1c8
SM
1473 (declare (indent 2) (debug (form sexp body))
1474 (obsolete "use a <foo>-function variable modified by add-function."
1475 "24.4"))
ba83908c
SM
1476 ;; We need those two gensyms because CL's lexical scoping is not available
1477 ;; for function arguments :-(
1478 (let ((funs (make-symbol "funs"))
1479 (global (make-symbol "global"))
1480 (argssym (make-symbol "args"))
1481 (runrestofhook (make-symbol "runrestofhook")))
1482 ;; Since the hook is a wrapper, the loop has to be done via
1483 ;; recursion: a given hook function will call its parameter in order to
1484 ;; continue looping.
1485 `(letrec ((,runrestofhook
1486 (lambda (,funs ,global ,argssym)
1487 ;; `funs' holds the functions left on the hook and `global'
1488 ;; holds the functions left on the global part of the hook
1489 ;; (in case the hook is local).
1490 (if (consp ,funs)
1491 (if (eq t (car ,funs))
1492 (funcall ,runrestofhook
1493 (append ,global (cdr ,funs)) nil ,argssym)
1494 (apply (car ,funs)
1495 (apply-partially
1496 (lambda (,funs ,global &rest ,argssym)
1497 (funcall ,runrestofhook ,funs ,global ,argssym))
1498 (cdr ,funs) ,global)
1499 ,argssym))
1500 ;; Once there are no more functions on the hook, run
1501 ;; the original body.
1502 (apply (lambda ,args ,@body) ,argssym)))))
b1f6fa26 1503 (funcall ,runrestofhook ,hook
ba83908c 1504 ;; The global part of the hook, if any.
b1f6fa26
CY
1505 ,(if (symbolp hook)
1506 `(if (local-variable-p ',hook)
1507 (default-value ',hook)))
ba83908c
SM
1508 (list ,@args)))))
1509
62e197b1 1510(defun add-to-list (list-var element &optional append compare-fn)
4072ef25 1511 "Add ELEMENT to the value of LIST-VAR if it isn't there yet.
62e197b1
RS
1512The test for presence of ELEMENT is done with `equal',
1513or with COMPARE-FN if that's non-nil.
c8bfa689
MB
1514If ELEMENT is added, it is added at the beginning of the list,
1515unless the optional argument APPEND is non-nil, in which case
1516ELEMENT is added at the end.
508bcbca 1517
daebae3d
PJ
1518The return value is the new value of LIST-VAR.
1519
bfa3acd6
SM
1520This is handy to add some elements to configuration variables,
1521but please do not abuse it in Elisp code, where you are usually better off
1522using `push' or `cl-pushnew'.
1523
8851c1f0
RS
1524If you want to use `add-to-list' on a variable that is not defined
1525until a certain package is loaded, you should put the call to `add-to-list'
1526into a hook function that will be run only after loading the package.
1527`eval-after-load' provides one way to do this. In some cases
1528other hooks, such as major mode hooks, can do the job."
bfa3acd6
SM
1529 (declare
1530 (compiler-macro
1531 (lambda (exp)
1532 ;; FIXME: Something like this could be used for `set' as well.
1533 (if (or (not (eq 'quote (car-safe list-var)))
1534 (special-variable-p (cadr list-var))
c43a8618 1535 (not (macroexp-const-p append)))
bfa3acd6
SM
1536 exp
1537 (let* ((sym (cadr list-var))
c43a8618 1538 (append (eval append))
bfa3acd6
SM
1539 (msg (format "`add-to-list' can't use lexical var `%s'; use `push' or `cl-pushnew'"
1540 sym))
1541 ;; Big ugly hack so we only output a warning during
1542 ;; byte-compilation, and so we can use
1543 ;; byte-compile-not-lexical-var-p to silence the warning
1544 ;; when a defvar has been seen but not yet executed.
1545 (warnfun (lambda ()
1546 ;; FIXME: We should also emit a warning for let-bound
1547 ;; variables with dynamic binding.
1548 (when (assq sym byte-compile--lexical-environment)
1549 (byte-compile-log-warning msg t :error))))
1550 (code
c43a8618 1551 (macroexp-let2 macroexp-copyable-p x element
37241f62
SM
1552 `(if ,(if compare-fn
1553 (progn
1554 (require 'cl-lib)
1555 `(cl-member ,x ,sym :test ,compare-fn))
1556 ;; For bootstrapping reasons, don't rely on
1557 ;; cl--compiler-macro-member for the base case.
1558 `(member ,x ,sym))
1559 ,sym
c43a8618
SM
1560 ,(if append
1561 `(setq ,sym (append ,sym (list ,x)))
1562 `(push ,x ,sym))))))
bfa3acd6
SM
1563 (if (not (macroexp--compiling-p))
1564 code
1565 `(progn
1566 (macroexp--funcall-if-compiled ',warnfun)
1567 ,code)))))))
fb1a5d8a 1568 (if (cond
78bdfbf3 1569 ((null compare-fn)
62e197b1 1570 (member element (symbol-value list-var)))
fb1a5d8a
KS
1571 ((eq compare-fn 'eq)
1572 (memq element (symbol-value list-var)))
1573 ((eq compare-fn 'eql)
1574 (memql element (symbol-value list-var)))
78bdfbf3 1575 (t
2d1dd54d
DK
1576 (let ((lst (symbol-value list-var)))
1577 (while (and lst
1578 (not (funcall compare-fn element (car lst))))
1579 (setq lst (cdr lst)))
1580 lst)))
15171a06 1581 (symbol-value list-var)
c8bfa689
MB
1582 (set list-var
1583 (if append
1584 (append (symbol-value list-var) (list element))
1585 (cons element (symbol-value list-var))))))
448a0170 1586
cbbd0b5a
KS
1587
1588(defun add-to-ordered-list (list-var element &optional order)
4072ef25 1589 "Add ELEMENT to the value of LIST-VAR if it isn't there yet.
ef1eef06 1590The test for presence of ELEMENT is done with `eq'.
cbbd0b5a
KS
1591
1592The resulting list is reordered so that the elements are in the
ef1eef06
KS
1593order given by each element's numeric list order. Elements
1594without a numeric list order are placed at the end of the list.
cbbd0b5a 1595
4072ef25
LT
1596If the third optional argument ORDER is a number (integer or
1597float), set the element's list order to the given value. If
1598ORDER is nil or omitted, do not change the numeric order of
1599ELEMENT. If ORDER has any other value, remove the numeric order
1600of ELEMENT if it has one.
8da6c2f8 1601
219fd6cf 1602The list order for each element is stored in LIST-VAR's
8da6c2f8 1603`list-order' property.
cbbd0b5a
KS
1604
1605The return value is the new value of LIST-VAR."
219fd6cf
SM
1606 (let ((ordering (get list-var 'list-order)))
1607 (unless ordering
1608 (put list-var 'list-order
1609 (setq ordering (make-hash-table :weakness 'key :test 'eq))))
8da6c2f8 1610 (when order
ef1eef06
KS
1611 (puthash element (and (numberp order) order) ordering))
1612 (unless (memq element (symbol-value list-var))
1613 (set list-var (cons element (symbol-value list-var))))
8da6c2f8
KS
1614 (set list-var (sort (symbol-value list-var)
1615 (lambda (a b)
219fd6cf
SM
1616 (let ((oa (gethash a ordering))
1617 (ob (gethash b ordering)))
ef1eef06
KS
1618 (if (and oa ob)
1619 (< oa ob)
1620 oa)))))))
6b04bd6e 1621
d7494911 1622(defun add-to-history (history-var newelt &optional maxelt keep-all)
6b04bd6e
KS
1623 "Add NEWELT to the history list stored in the variable HISTORY-VAR.
1624Return the new history list.
1625If MAXELT is non-nil, it specifies the maximum length of the history.
1626Otherwise, the maximum history length is the value of the `history-length'
1627property on symbol HISTORY-VAR, if set, or the value of the `history-length'
1628variable.
d7494911
KS
1629Remove duplicates of NEWELT if `history-delete-duplicates' is non-nil.
1630If optional fourth arg KEEP-ALL is non-nil, add NEWELT to history even
1631if it is empty or a duplicate."
6b04bd6e
KS
1632 (unless maxelt
1633 (setq maxelt (or (get history-var 'history-length)
1634 history-length)))
1635 (let ((history (symbol-value history-var))
1636 tail)
d7494911
KS
1637 (when (and (listp history)
1638 (or keep-all
1639 (not (stringp newelt))
1640 (> (length newelt) 0))
1641 (or keep-all
1642 (not (equal (car history) newelt))))
1643 (if history-delete-duplicates
1715f2db 1644 (setq history (delete newelt history)))
d7494911
KS
1645 (setq history (cons newelt history))
1646 (when (integerp maxelt)
1647 (if (= 0 maxelt)
1648 (setq history nil)
1649 (setq tail (nthcdr (1- maxelt) history))
1650 (when (consp tail)
1651 (setcdr tail nil)))))
6b04bd6e
KS
1652 (set history-var history)))
1653
c4f484f2
RS
1654\f
1655;;;; Mode hooks.
1656
1657(defvar delay-mode-hooks nil
1658 "If non-nil, `run-mode-hooks' should delay running the hooks.")
1659(defvar delayed-mode-hooks nil
1660 "List of delayed mode hooks waiting to be run.")
1661(make-variable-buffer-local 'delayed-mode-hooks)
1662(put 'delay-mode-hooks 'permanent-local t)
cbbd0b5a 1663
15de15c6
CY
1664(defvar change-major-mode-after-body-hook nil
1665 "Normal hook run in major mode functions, before the mode hooks.")
1666
c4f484f2
RS
1667(defvar after-change-major-mode-hook nil
1668 "Normal hook run at the very end of major mode functions.")
1669
1670(defun run-mode-hooks (&rest hooks)
1671 "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS.
12f381b7
GM
1672If the variable `delay-mode-hooks' is non-nil, does not run any hooks,
1673just adds the HOOKS to the list `delayed-mode-hooks'.
1674Otherwise, runs hooks in the sequence: `change-major-mode-after-body-hook',
1675`delayed-mode-hooks' (in reverse order), HOOKS, and finally
1676`after-change-major-mode-hook'. Major mode functions should use
1677this instead of `run-hooks' when running their FOO-mode-hook."
c4f484f2
RS
1678 (if delay-mode-hooks
1679 ;; Delaying case.
1680 (dolist (hook hooks)
1681 (push hook delayed-mode-hooks))
1682 ;; Normal case, just run the hook as before plus any delayed hooks.
1683 (setq hooks (nconc (nreverse delayed-mode-hooks) hooks))
1684 (setq delayed-mode-hooks nil)
15de15c6 1685 (apply 'run-hooks (cons 'change-major-mode-after-body-hook hooks))
c4f484f2
RS
1686 (run-hooks 'after-change-major-mode-hook)))
1687
1688(defmacro delay-mode-hooks (&rest body)
1689 "Execute BODY, but delay any `run-mode-hooks'.
1690These hooks will be executed by the first following call to
1691`run-mode-hooks' that occurs outside any `delayed-mode-hooks' form.
1692Only affects hooks run in the current buffer."
1693 (declare (debug t) (indent 0))
1694 `(progn
1695 (make-local-variable 'delay-mode-hooks)
1696 (let ((delay-mode-hooks t))
1697 ,@body)))
1698
1699;; PUBLIC: find if the current mode derives from another.
1700
1701(defun derived-mode-p (&rest modes)
1702 "Non-nil if the current major mode is derived from one of MODES.
1703Uses the `derived-mode-parent' property of the symbol to trace backwards."
1704 (let ((parent major-mode))
1705 (while (and (not (memq parent modes))
1706 (setq parent (get parent 'derived-mode-parent))))
1707 parent))
1708\f
1709;;;; Minor modes.
1710
1711;; If a minor mode is not defined with define-minor-mode,
1712;; add it here explicitly.
1713;; isearch-mode is deliberately excluded, since you should
1714;; not call it yourself.
1715(defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
1716 overwrite-mode view-mode
1717 hs-minor-mode)
1718 "List of all minor mode functions.")
1719
1720(defun add-minor-mode (toggle name &optional keymap after toggle-fun)
1721 "Register a new minor mode.
1722
1723This is an XEmacs-compatibility function. Use `define-minor-mode' instead.
1724
1725TOGGLE is a symbol which is the name of a buffer-local variable that
1726is toggled on or off to say whether the minor mode is active or not.
1727
1728NAME specifies what will appear in the mode line when the minor mode
1729is active. NAME should be either a string starting with a space, or a
1730symbol whose value is such a string.
1731
1732Optional KEYMAP is the keymap for the minor mode that will be added
1733to `minor-mode-map-alist'.
1734
1735Optional AFTER specifies that TOGGLE should be added after AFTER
1736in `minor-mode-alist'.
1737
1738Optional TOGGLE-FUN is an interactive function to toggle the mode.
1739It defaults to (and should by convention be) TOGGLE.
1740
1741If TOGGLE has a non-nil `:included' property, an entry for the mode is
1742included in the mode-line minor mode menu.
1743If TOGGLE has a `:menu-tag', that is used for the menu item's label."
1744 (unless (memq toggle minor-mode-list)
1745 (push toggle minor-mode-list))
1746
1747 (unless toggle-fun (setq toggle-fun toggle))
1748 (unless (eq toggle-fun toggle)
1749 (put toggle :minor-mode-function toggle-fun))
1750 ;; Add the name to the minor-mode-alist.
1751 (when name
1752 (let ((existing (assq toggle minor-mode-alist)))
1753 (if existing
1754 (setcdr existing (list name))
1755 (let ((tail minor-mode-alist) found)
1756 (while (and tail (not found))
1757 (if (eq after (caar tail))
1758 (setq found tail)
1759 (setq tail (cdr tail))))
1760 (if found
1761 (let ((rest (cdr found)))
1762 (setcdr found nil)
1763 (nconc found (list (list toggle name)) rest))
365f8d85 1764 (push (list toggle name) minor-mode-alist))))))
c4f484f2
RS
1765 ;; Add the toggle to the minor-modes menu if requested.
1766 (when (get toggle :included)
1767 (define-key mode-line-mode-menu
1768 (vector toggle)
1769 (list 'menu-item
1770 (concat
1771 (or (get toggle :menu-tag)
1772 (if (stringp name) name (symbol-name toggle)))
1773 (let ((mode-name (if (symbolp name) (symbol-value name))))
1774 (if (and (stringp mode-name) (string-match "[^ ]+" mode-name))
1775 (concat " (" (match-string 0 mode-name) ")"))))
1776 toggle-fun
1777 :button (cons :toggle toggle))))
cbbd0b5a 1778
c4f484f2
RS
1779 ;; Add the map to the minor-mode-map-alist.
1780 (when keymap
1781 (let ((existing (assq toggle minor-mode-map-alist)))
1782 (if existing
1783 (setcdr existing keymap)
1784 (let ((tail minor-mode-map-alist) found)
1785 (while (and tail (not found))
1786 (if (eq after (caar tail))
1787 (setq found tail)
1788 (setq tail (cdr tail))))
1789 (if found
1790 (let ((rest (cdr found)))
1791 (setcdr found nil)
1792 (nconc found (list (cons toggle keymap)) rest))
365f8d85 1793 (push (cons toggle keymap) minor-mode-map-alist)))))))
448a0170 1794\f
781b4af6 1795;;;; Load history
448a0170 1796
7abaf5cc
SM
1797(defsubst autoloadp (object)
1798 "Non-nil if OBJECT is an autoload."
1799 (eq 'autoload (car-safe object)))
1800
1801;; (defun autoload-type (object)
1802;; "Returns the type of OBJECT or `function' or `command' if the type is nil.
1803;; OBJECT should be an autoload object."
1804;; (when (autoloadp object)
1805;; (let ((type (nth 3 object)))
1806;; (cond ((null type) (if (nth 2 object) 'command 'function))
1807;; ((eq 'keymap t) 'macro)
1808;; (type)))))
1809
1810;; (defalias 'autoload-file #'cadr
1811;; "Return the name of the file from which AUTOLOAD will be loaded.
1812;; \n\(fn AUTOLOAD)")
1813
9e247d24 1814(defun symbol-file (symbol &optional type)
37fda77e
MR
1815 "Return the name of the file that defined SYMBOL.
1816The value is normally an absolute file name. It can also be nil,
1817if the definition is not associated with any file. If SYMBOL
1818specifies an autoloaded function, the value can be a relative
1819file name without extension.
1820
1821If TYPE is nil, then any kind of definition is acceptable. If
1822TYPE is `defun', `defvar', or `defface', that specifies function
1823definition, variable definition, or face definition only."
9e247d24
RS
1824 (if (and (or (null type) (eq type 'defun))
1825 (symbolp symbol) (fboundp symbol)
7abaf5cc 1826 (autoloadp (symbol-function symbol)))
9e247d24 1827 (nth 1 (symbol-function symbol))
e9f13a95 1828 (let ((files load-history)
cb21744e 1829 file)
e9f13a95 1830 (while files
9e247d24
RS
1831 (if (if type
1832 (if (eq type 'defvar)
1833 ;; Variables are present just as their names.
1834 (member symbol (cdr (car files)))
1835 ;; Other types are represented as (TYPE . NAME).
1836 (member (cons type symbol) (cdr (car files))))
1837 ;; We accept all types, so look for variable def
1838 ;; and then for any other kind.
1839 (or (member symbol (cdr (car files)))
1840 (rassq symbol (cdr (car files)))))
e9f13a95
SM
1841 (setq file (car (car files)) files nil))
1842 (setq files (cdr files)))
1843 file)))
448a0170 1844
059a552c
RF
1845(defun locate-library (library &optional nosuffix path interactive-call)
1846 "Show the precise file name of Emacs library LIBRARY.
c9ae6ddd
EZ
1847LIBRARY should be a relative file name of the library, a string.
1848It can omit the suffix (a.k.a. file-name extension) if NOSUFFIX is
1849nil (which is the default, see below).
059a552c
RF
1850This command searches the directories in `load-path' like `\\[load-library]'
1851to find the file that `\\[load-library] RET LIBRARY RET' would load.
1852Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
1853to the specified name LIBRARY.
1854
1855If the optional third arg PATH is specified, that list of directories
1856is used instead of `load-path'.
1857
3ac9d254 1858When called from a program, the file name is normally returned as a
059a552c
RF
1859string. When run interactively, the argument INTERACTIVE-CALL is t,
1860and the file name is displayed in the echo area."
1861 (interactive (list (completing-read "Locate library: "
6a021917
SM
1862 (apply-partially
1863 'locate-file-completion-table
1864 load-path (get-load-suffixes)))
059a552c
RF
1865 nil nil
1866 t))
1867 (let ((file (locate-file library
1868 (or path load-path)
667b73dc
LT
1869 (append (unless nosuffix (get-load-suffixes))
1870 load-file-rep-suffixes))))
059a552c
RF
1871 (if interactive-call
1872 (if file
1873 (message "Library is file %s" (abbreviate-file-name file))
1874 (message "No library %s in search path" library)))
1875 file))
1876
be9b65ac 1877\f
c4f484f2
RS
1878;;;; Process stuff.
1879
d43c8d03
GM
1880(defun process-lines (program &rest args)
1881 "Execute PROGRAM with ARGS, returning its output as a list of lines.
1882Signal an error if the program returns with a non-zero exit status."
1883 (with-temp-buffer
1884 (let ((status (apply 'call-process program nil (current-buffer) nil args)))
1885 (unless (eq status 0)
1886 (error "%s exited with status %s" program status))
1887 (goto-char (point-min))
1888 (let (lines)
1889 (while (not (eobp))
1890 (setq lines (cons (buffer-substring-no-properties
1891 (line-beginning-position)
1892 (line-end-position))
1893 lines))
1894 (forward-line 1))
1895 (nreverse lines)))))
1896
b96e6cde 1897(defun process-live-p (process)
bcd54f83
LMI
1898 "Returns non-nil if PROCESS is alive.
1899A process is considered alive if its status is `run', `open',
1900`listen', `connect' or `stop'."
1901 (memq (process-status process)
1902 '(run open listen connect stop)))
1903
7aaacaff
RS
1904;; compatibility
1905
c8227332
VJL
1906(make-obsolete
1907 'process-kill-without-query
1908 "use `process-query-on-exit-flag' or `set-process-query-on-exit-flag'."
1909 "22.1")
06b60517 1910(defun process-kill-without-query (process &optional _flag)
7aaacaff
RS
1911 "Say no query needed if PROCESS is running when Emacs is exited.
1912Optional second argument if non-nil says to require a query.
a478f3e1 1913Value is t if a query was formerly required."
7aaacaff
RS
1914 (let ((old (process-query-on-exit-flag process)))
1915 (set-process-query-on-exit-flag process nil)
1916 old))
9a5336ae 1917
d842b103
JL
1918(defun process-kill-buffer-query-function ()
1919 "Ask before killing a buffer that has a running process."
1920 (let ((process (get-buffer-process (current-buffer))))
1921 (or (not process)
1922 (not (memq (process-status process) '(run stop open listen)))
1923 (not (process-query-on-exit-flag process))
da9fcb93
LMI
1924 (yes-or-no-p
1925 (format "Buffer %S has a running process; kill it? "
1926 (buffer-name (current-buffer)))))))
d842b103
JL
1927
1928(add-hook 'kill-buffer-query-functions 'process-kill-buffer-query-function)
1929
34368d12
KS
1930;; process plist management
1931
1932(defun process-get (process propname)
1933 "Return the value of PROCESS' PROPNAME property.
1934This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
1935 (plist-get (process-plist process) propname))
1936
1937(defun process-put (process propname value)
1938 "Change PROCESS' PROPNAME property to VALUE.
1939It can be retrieved with `(process-get PROCESS PROPNAME)'."
f1180544 1940 (set-process-plist process
34368d12
KS
1941 (plist-put (process-plist process) propname value)))
1942
9a5336ae
JB
1943\f
1944;;;; Input and display facilities.
1945
77a5664f 1946(defvar read-quoted-char-radix 8
fb7ada5f 1947 "Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
77a5664f
RS
1948Legitimate radix values are 8, 10 and 16.")
1949
1950(custom-declare-variable-early
264ef586 1951 'read-quoted-char-radix 8
77a5664f 1952 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
1ba764de 1953Legitimate radix values are 8, 10 and 16."
c8227332
VJL
1954 :type '(choice (const 8) (const 10) (const 16))
1955 :group 'editing-basics)
1ba764de 1956
03a74b84
SM
1957(defconst read-key-empty-map (make-sparse-keymap))
1958
79bd5ba1 1959(defvar read-key-delay 0.01) ;Fast enough for 100Hz repeat rate, hopefully.
03a74b84
SM
1960
1961(defun read-key (&optional prompt)
1962 "Read a key from the keyboard.
1963Contrary to `read-event' this will not return a raw event but instead will
1964obey the input decoding and translations usually done by `read-key-sequence'.
1965So escape sequences and keyboard encoding are taken into account.
1966When there's an ambiguity because the key looks like the prefix of
1967some sort of escape sequence, the ambiguity is resolved via `read-key-delay'."
088be6fb
SM
1968 ;; This overriding-terminal-local-map binding also happens to
1969 ;; disable quail's input methods, so although read-key-sequence
1970 ;; always inherits the input method, in practice read-key does not
1971 ;; inherit the input method (at least not if it's based on quail).
bfa3acd6
SM
1972 (let ((overriding-terminal-local-map nil)
1973 (overriding-local-map read-key-empty-map)
3ff78624 1974 (echo-keystrokes 0)
03a74b84
SM
1975 (old-global-map (current-global-map))
1976 (timer (run-with-idle-timer
1977 ;; Wait long enough that Emacs has the time to receive and
1978 ;; process all the raw events associated with the single-key.
1979 ;; But don't wait too long, or the user may find the delay
1980 ;; annoying (or keep hitting more keys which may then get
1981 ;; lost or misinterpreted).
1982 ;; This is only relevant for keys which Emacs perceives as
1983 ;; "prefixes", such as C-x (because of the C-x 8 map in
1984 ;; key-translate-table and the C-x @ map in function-key-map)
1985 ;; or ESC (because of terminal escape sequences in
1986 ;; input-decode-map).
1987 read-key-delay t
1988 (lambda ()
1989 (let ((keys (this-command-keys-vector)))
1990 (unless (zerop (length keys))
1991 ;; `keys' is non-empty, so the user has hit at least
1992 ;; one key; there's no point waiting any longer, even
1993 ;; though read-key-sequence thinks we should wait
1994 ;; for more input to decide how to interpret the
1995 ;; current input.
1996 (throw 'read-key keys)))))))
1997 (unwind-protect
1998 (progn
186e86db
SM
1999 (use-global-map
2000 (let ((map (make-sparse-keymap)))
2001 ;; Don't hide the menu-bar and tool-bar entries.
2002 (define-key map [menu-bar] (lookup-key global-map [menu-bar]))
c5bb7569
CY
2003 (define-key map [tool-bar]
2004 ;; This hack avoids evaluating the :filter (Bug#9922).
2005 (or (cdr (assq 'tool-bar global-map))
2006 (lookup-key global-map [tool-bar])))
186e86db 2007 map))
79bd5ba1 2008 (aref (catch 'read-key (read-key-sequence-vector prompt nil t)) 0))
03a74b84
SM
2009 (cancel-timer timer)
2010 (use-global-map old-global-map))))
2011
9a5336ae 2012(defun read-quoted-char (&optional prompt)
2444730b
RS
2013 "Like `read-char', but do not allow quitting.
2014Also, if the first character read is an octal digit,
2015we read any number of octal digits and return the
569b03f2 2016specified character code. Any nondigit terminates the sequence.
1ba764de 2017If the terminator is RET, it is discarded;
2444730b
RS
2018any other terminator is used itself as input.
2019
569b03f2
RS
2020The optional argument PROMPT specifies a string to use to prompt the user.
2021The variable `read-quoted-char-radix' controls which radix to use
2022for numeric input."
ed095bd7 2023 (let ((message-log-max nil) done (first t) (code 0) translated)
2444730b
RS
2024 (while (not done)
2025 (let ((inhibit-quit first)
42e636f0
KH
2026 ;; Don't let C-h get the help message--only help function keys.
2027 (help-char nil)
2028 (help-form
2029 "Type the special character you want to use,
2444730b 2030or the octal character code.
1ba764de 2031RET terminates the character code and is discarded;
2444730b 2032any other non-digit terminates the character code and is then used as input."))
321e1a9c 2033 (setq translated (read-key (and prompt (format "%s-" prompt))))
9a5336ae 2034 (if inhibit-quit (setq quit-flag nil)))
b8add347
SM
2035 (if (integerp translated)
2036 (setq translated (char-resolve-modifiers translated)))
c83256a0
RS
2037 (cond ((null translated))
2038 ((not (integerp translated))
321e1a9c
SM
2039 (setq unread-command-events
2040 (listify-key-sequence (this-single-command-raw-keys))
1ba764de 2041 done t))
c83256a0 2042 ((/= (logand translated ?\M-\^@) 0)
bf896a1b 2043 ;; Turn a meta-character into a character with the 0200 bit set.
c83256a0 2044 (setq code (logior (logand translated (lognot ?\M-\^@)) 128)
bf896a1b 2045 done t))
4fcc3d32
SM
2046 ((and (<= ?0 translated)
2047 (< translated (+ ?0 (min 10 read-quoted-char-radix))))
c83256a0
RS
2048 (setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
2049 (and prompt (setq prompt (message "%s %c" prompt translated))))
2050 ((and (<= ?a (downcase translated))
4fcc3d32
SM
2051 (< (downcase translated)
2052 (+ ?a -10 (min 36 read-quoted-char-radix))))
92304bc8 2053 (setq code (+ (* code read-quoted-char-radix)
c83256a0
RS
2054 (+ 10 (- (downcase translated) ?a))))
2055 (and prompt (setq prompt (message "%s %c" prompt translated))))
2056 ((and (not first) (eq translated ?\C-m))
2444730b
RS
2057 (setq done t))
2058 ((not first)
321e1a9c
SM
2059 (setq unread-command-events
2060 (listify-key-sequence (this-single-command-raw-keys))
2444730b 2061 done t))
c83256a0 2062 (t (setq code translated
2444730b
RS
2063 done t)))
2064 (setq first nil))
bf896a1b 2065 code))
9a5336ae 2066
795b1482
SM
2067(defvar read-passwd-map
2068 ;; BEWARE: `defconst' would purecopy it, breaking the sharing with
2069 ;; minibuffer-local-map along the way!
d39109c3
SM
2070 (let ((map (make-sparse-keymap)))
2071 (set-keymap-parent map minibuffer-local-map)
2072 (define-key map "\C-u" #'delete-minibuffer-contents) ;bug#12570
2073 map)
2074 "Keymap used while reading passwords.")
2075
266725f1
SJ
2076(defun read-passwd (prompt &optional confirm default)
2077 "Read a password, prompting with PROMPT, and return it.
2078If optional CONFIRM is non-nil, read the password twice to make sure.
2079Optional DEFAULT is a default password to use instead of empty input.
2080
2081This function echoes `.' for each character that the user types.
08640de5 2082
266725f1
SJ
2083Once the caller uses the password, it can erase the password
2084by doing (clear-string STRING)."
088be6fb
SM
2085 (if confirm
2086 (let (success)
2087 (while (not success)
2088 (let ((first (read-passwd prompt nil default))
2089 (second (read-passwd "Confirm password: " nil default)))
2090 (if (equal first second)
2091 (progn
2092 (and (arrayp second) (clear-string second))
2093 (setq success first))
2094 (and (arrayp first) (clear-string first))
2095 (and (arrayp second) (clear-string second))
2096 (message "Password not repeated accurately; please start over")
2097 (sit-for 1))))
2098 success)
99d27583
SM
2099 (let ((hide-chars-fun
2100 (lambda (beg end _len)
2101 (clear-this-command-keys)
2102 (setq beg (min end (max (minibuffer-prompt-end)
2103 beg)))
2104 (dotimes (i (- end beg))
2105 (put-text-property (+ i beg) (+ 1 i beg)
2106 'display (string ?.)))))
2107 minibuf)
088be6fb
SM
2108 (minibuffer-with-setup-hook
2109 (lambda ()
2110 (setq minibuf (current-buffer))
2111 ;; Turn off electricity.
795b1482
SM
2112 (setq-local post-self-insert-hook nil)
2113 (setq-local buffer-undo-list t)
2114 (setq-local select-active-regions nil)
d39109c3 2115 (use-local-map read-passwd-map)
258ab3bc 2116 (setq-local inhibit-modification-hooks nil) ;bug#15501.
99d27583 2117 (add-hook 'after-change-functions hide-chars-fun nil 'local))
088be6fb 2118 (unwind-protect
d39109c3
SM
2119 (let ((enable-recursive-minibuffers t))
2120 (read-string prompt nil t default)) ; t = "no history"
088be6fb 2121 (when (buffer-live-p minibuf)
99d27583
SM
2122 (with-current-buffer minibuf
2123 ;; Not sure why but it seems that there might be cases where the
2124 ;; minibuffer is not always properly reset later on, so undo
2125 ;; whatever we've done here (bug#11392).
2126 (remove-hook 'after-change-functions hide-chars-fun 'local)
2127 (kill-local-variable 'post-self-insert-hook)
2128 ;; And of course, don't keep the sensitive data around.
2129 (erase-buffer))))))))
266725f1 2130
6b61353c 2131(defun read-number (prompt &optional default)
3238cde3
RS
2132 "Read a numeric value in the minibuffer, prompting with PROMPT.
2133DEFAULT specifies a default value to return if the user just types RET.
0208ede7
JL
2134The value of DEFAULT is inserted into PROMPT.
2135This function is used by the `interactive' code letter `n'."
a5dcc929
JL
2136 (let ((n nil)
2137 (default1 (if (consp default) (car default) default)))
2138 (when default1
6b61353c 2139 (setq prompt
2d14d61e 2140 (if (string-match "\\(\\):[ \t]*\\'" prompt)
a5dcc929 2141 (replace-match (format " (default %s)" default1) t t prompt 1)
2d14d61e 2142 (replace-regexp-in-string "[ \t]*\\'"
a5dcc929 2143 (format " (default %s) " default1)
f8cf33b1 2144 prompt t t))))
6b61353c
KH
2145 (while
2146 (progn
a5dcc929
JL
2147 (let ((str (read-from-minibuffer
2148 prompt nil nil nil nil
2149 (when default
2150 (if (consp default)
2151 (mapcar 'number-to-string (delq nil default))
2152 (number-to-string default))))))
219f06f7
RS
2153 (condition-case nil
2154 (setq n (cond
a5dcc929 2155 ((zerop (length str)) default1)
e5271cf2 2156 ((stringp str) (read str))))
219f06f7 2157 (error nil)))
6b61353c
KH
2158 (unless (numberp n)
2159 (message "Please enter a number.")
2160 (sit-for 1)
2161 t)))
2162 n))
0369eb85 2163
3ef01959
CY
2164(defun read-char-choice (prompt chars &optional inhibit-keyboard-quit)
2165 "Read and return one of CHARS, prompting for PROMPT.
2166Any input that is not one of CHARS is ignored.
2167
2168If optional argument INHIBIT-KEYBOARD-QUIT is non-nil, ignore
2169keyboard-quit events while waiting for a valid input."
2170 (unless (consp chars)
2171 (error "Called `read-char-choice' without valid char choices"))
03ea5b87 2172 (let (char done show-help (helpbuf " *Char Help*"))
49c5410a 2173 (let ((cursor-in-echo-area t)
145823ec
CY
2174 (executing-kbd-macro executing-kbd-macro)
2175 (esc-flag nil))
03ea5b87
GM
2176 (save-window-excursion ; in case we call help-form-show
2177 (while (not done)
2178 (unless (get-text-property 0 'face prompt)
2179 (setq prompt (propertize prompt 'face 'minibuffer-prompt)))
2180 (setq char (let ((inhibit-quit inhibit-keyboard-quit))
2181 (read-key prompt)))
647ab967 2182 (and show-help (buffer-live-p (get-buffer helpbuf))
03ea5b87
GM
2183 (kill-buffer helpbuf))
2184 (cond
2185 ((not (numberp char)))
2186 ;; If caller has set help-form, that's enough.
2187 ;; They don't explicitly have to add help-char to chars.
2188 ((and help-form
2189 (eq char help-char)
2190 (setq show-help t)
2191 (help-form-show)))
2192 ((memq char chars)
2193 (setq done t))
2194 ((and executing-kbd-macro (= char -1))
2195 ;; read-event returns -1 if we are in a kbd macro and
2196 ;; there are no more events in the macro. Attempt to
2197 ;; get an event interactively.
2198 (setq executing-kbd-macro nil))
145823ec
CY
2199 ((not inhibit-keyboard-quit)
2200 (cond
2201 ((and (null esc-flag) (eq char ?\e))
2202 (setq esc-flag t))
2203 ((memq char '(?\C-g ?\e))
2204 (keyboard-quit))))))))
49c5410a 2205 ;; Display the question with the answer. But without cursor-in-echo-area.
3ef01959
CY
2206 (message "%s%s" prompt (char-to-string char))
2207 char))
2208
0369eb85
CY
2209(defun sit-for (seconds &optional nodisp obsolete)
2210 "Perform redisplay, then wait for SECONDS seconds or until input is available.
2211SECONDS may be a floating-point value.
2212\(On operating systems that do not support waiting for fractions of a
2213second, floating-point values are rounded down to the nearest integer.)
2214
2215If optional arg NODISP is t, don't redisplay, just wait for input.
2216Redisplay does not happen if input is available before it starts.
0369eb85
CY
2217
2218Value is t if waited the full time with no input arriving, and nil otherwise.
2219
d8120806 2220An obsolete, but still supported form is
0369eb85 2221\(sit-for SECONDS &optional MILLISECONDS NODISP)
d8120806 2222where the optional arg MILLISECONDS specifies an additional wait period,
0369eb85 2223in milliseconds; this was useful when Emacs was built without
fd6c5134 2224floating point support."
321e1a9c 2225 (declare (advertised-calling-convention (seconds &optional nodisp) "22.1"))
000b06df
GM
2226 (if (numberp nodisp)
2227 (setq seconds (+ seconds (* 1e-3 nodisp))
2228 nodisp obsolete)
2229 (if obsolete (setq nodisp obsolete)))
790e0ef7
KS
2230 (cond
2231 (noninteractive
2232 (sleep-for seconds)
2233 t)
ef566920 2234 ((input-pending-p t)
790e0ef7
KS
2235 nil)
2236 ((<= seconds 0)
2237 (or nodisp (redisplay)))
2238 (t
2239 (or nodisp (redisplay))
321e1a9c
SM
2240 ;; FIXME: we should not read-event here at all, because it's much too
2241 ;; difficult to reliably "undo" a read-event by pushing it onto
2242 ;; unread-command-events.
2243 (let ((read (read-event nil t seconds)))
790e0ef7 2244 (or (null read)
fb1a5d8a
KS
2245 (progn
2246 ;; If last command was a prefix arg, e.g. C-u, push this event onto
2247 ;; unread-command-events as (t . EVENT) so it will be added to
2248 ;; this-command-keys by read-key-sequence.
2249 (if (eq overriding-terminal-local-map universal-argument-map)
2250 (setq read (cons t read)))
2251 (push read unread-command-events)
2252 nil))))))
8c51d2a2 2253
d2f3e9f8
GM
2254;; Behind display-popup-menus-p test.
2255(declare-function x-popup-dialog "xmenu.c" (position contents &optional header))
2256
9aea757b 2257(defun y-or-n-p (prompt)
8c51d2a2 2258 "Ask user a \"y or n\" question. Return t if answer is \"y\".
9aea757b
CY
2259PROMPT is the string to display to ask the question. It should
2260end in a space; `y-or-n-p' adds \"(y or n) \" to it.
3d91e302 2261
011474aa
CY
2262No confirmation of the answer is requested; a single character is
2263enough. SPC also means yes, and DEL means no.
2264
2265To be precise, this function translates user input into responses
2266by consulting the bindings in `query-replace-map'; see the
2267documentation of that variable for more information. In this
2268case, the useful bindings are `act', `skip', `recenter',
2269`scroll-up', `scroll-down', and `quit'.
2270An `act' response means yes, and a `skip' response means no.
2271A `quit' response means to invoke `keyboard-quit'.
2272If the user enters `recenter', `scroll-up', or `scroll-down'
2273responses, perform the requested window recentering or scrolling
2274and ask again.
8c51d2a2
CY
2275
2276Under a windowing system a dialog box will be used if `last-nonmenu-event'
2277is nil and `use-dialog-box' is non-nil."
2278 ;; ¡Beware! when I tried to edebug this code, Emacs got into a weird state
2279 ;; where all the keys were unbound (i.e. it somehow got triggered
2280 ;; within read-key, apparently). I had to kill it.
2281 (let ((answer 'recenter))
aa4de341
CY
2282 (cond
2283 (noninteractive
2284 (setq prompt (concat prompt
208dee4d
GM
2285 (if (or (zerop (length prompt))
2286 (eq ?\s (aref prompt (1- (length prompt)))))
aa4de341
CY
2287 "" " ")
2288 "(y or n) "))
2289 (let ((temp-prompt prompt))
2290 (while (not (memq answer '(act skip)))
2291 (let ((str (read-string temp-prompt)))
2292 (cond ((member str '("y" "Y")) (setq answer 'act))
2293 ((member str '("n" "N")) (setq answer 'skip))
2294 (t (setq temp-prompt (concat "Please answer y or n. "
2295 prompt))))))))
2296 ((and (display-popup-menus-p)
2297 (listp last-nonmenu-event)
2298 use-dialog-box)
2299 (setq answer
2300 (x-popup-dialog t `(,prompt ("Yes" . act) ("No" . skip)))))
2301 (t
9aea757b 2302 (setq prompt (concat prompt
208dee4d
GM
2303 (if (or (zerop (length prompt))
2304 (eq ?\s (aref prompt (1- (length prompt)))))
8c51d2a2
CY
2305 "" " ")
2306 "(y or n) "))
2307 (while
011474aa
CY
2308 (let* ((scroll-actions '(recenter scroll-up scroll-down
2309 scroll-other-window scroll-other-window-down))
2310 (key
8c51d2a2
CY
2311 (let ((cursor-in-echo-area t))
2312 (when minibuffer-auto-raise
2313 (raise-frame (window-frame (minibuffer-window))))
011474aa 2314 (read-key (propertize (if (memq answer scroll-actions)
8c51d2a2
CY
2315 prompt
2316 (concat "Please answer y or n. "
2317 prompt))
2318 'face 'minibuffer-prompt)))))
2319 (setq answer (lookup-key query-replace-map (vector key) t))
2320 (cond
011474aa
CY
2321 ((memq answer '(skip act)) nil)
2322 ((eq answer 'recenter)
2323 (recenter) t)
2324 ((eq answer 'scroll-up)
2325 (ignore-errors (scroll-up-command)) t)
2326 ((eq answer 'scroll-down)
2327 (ignore-errors (scroll-down-command)) t)
2328 ((eq answer 'scroll-other-window)
2329 (ignore-errors (scroll-other-window)) t)
2330 ((eq answer 'scroll-other-window-down)
2331 (ignore-errors (scroll-other-window-down)) t)
2332 ((or (memq answer '(exit-prefix quit)) (eq key ?\e))
2333 (signal 'quit nil) t)
2334 (t t)))
8c51d2a2 2335 (ding)
aa4de341 2336 (discard-input))))
8c51d2a2
CY
2337 (let ((ret (eq answer 'act)))
2338 (unless noninteractive
c0ea08d2
GM
2339 ;; FIXME this prints one too many spaces, since prompt
2340 ;; already ends in a space. Eg "... (y or n) y".
8c51d2a2
CY
2341 (message "%s %s" prompt (if ret "y" "n")))
2342 ret)))
2343
e0e4cb7a 2344\f
2493767e
RS
2345;;; Atomic change groups.
2346
69cae2d4
RS
2347(defmacro atomic-change-group (&rest body)
2348 "Perform BODY as an atomic change group.
2349This means that if BODY exits abnormally,
2350all of its changes to the current buffer are undone.
b9ab4064 2351This works regardless of whether undo is enabled in the buffer.
69cae2d4
RS
2352
2353This mechanism is transparent to ordinary use of undo;
2354if undo is enabled in the buffer and BODY succeeds, the
2355user can undo the change normally."
6273dc68 2356 (declare (indent 0) (debug t))
69cae2d4
RS
2357 (let ((handle (make-symbol "--change-group-handle--"))
2358 (success (make-symbol "--change-group-success--")))
2359 `(let ((,handle (prepare-change-group))
cf191706
RS
2360 ;; Don't truncate any undo data in the middle of this.
2361 (undo-outer-limit nil)
2362 (undo-limit most-positive-fixnum)
2363 (undo-strong-limit most-positive-fixnum)
69cae2d4
RS
2364 (,success nil))
2365 (unwind-protect
2366 (progn
2367 ;; This is inside the unwind-protect because
2368 ;; it enables undo if that was disabled; we need
2369 ;; to make sure that it gets disabled again.
2370 (activate-change-group ,handle)
2371 ,@body
2372 (setq ,success t))
2373 ;; Either of these functions will disable undo
2374 ;; if it was disabled before.
2375 (if ,success
2376 (accept-change-group ,handle)
2377 (cancel-change-group ,handle))))))
2378
62ea1306 2379(defun prepare-change-group (&optional buffer)
69cae2d4 2380 "Return a handle for the current buffer's state, for a change group.
62ea1306 2381If you specify BUFFER, make a handle for BUFFER's state instead.
69cae2d4
RS
2382
2383Pass the handle to `activate-change-group' afterward to initiate
2384the actual changes of the change group.
2385
2386To finish the change group, call either `accept-change-group' or
2387`cancel-change-group' passing the same handle as argument. Call
2388`accept-change-group' to accept the changes in the group as final;
2389call `cancel-change-group' to undo them all. You should use
2390`unwind-protect' to make sure the group is always finished. The call
2391to `activate-change-group' should be inside the `unwind-protect'.
2392Once you finish the group, don't use the handle again--don't try to
2393finish the same group twice. For a simple example of correct use, see
2394the source code of `atomic-change-group'.
2395
2396The handle records only the specified buffer. To make a multibuffer
2397change group, call this function once for each buffer you want to
2398cover, then use `nconc' to combine the returned values, like this:
2399
2400 (nconc (prepare-change-group buffer-1)
2401 (prepare-change-group buffer-2))
2402
2403You can then activate that multibuffer change group with a single
2404call to `activate-change-group' and finish it with a single call
2405to `accept-change-group' or `cancel-change-group'."
2406
62ea1306
RS
2407 (if buffer
2408 (list (cons buffer (with-current-buffer buffer buffer-undo-list)))
2409 (list (cons (current-buffer) buffer-undo-list))))
69cae2d4
RS
2410
2411(defun activate-change-group (handle)
2412 "Activate a change group made with `prepare-change-group' (which see)."
2413 (dolist (elt handle)
2414 (with-current-buffer (car elt)
2415 (if (eq buffer-undo-list t)
2416 (setq buffer-undo-list nil)))))
2417
2418(defun accept-change-group (handle)
2419 "Finish a change group made with `prepare-change-group' (which see).
2420This finishes the change group by accepting its changes as final."
2421 (dolist (elt handle)
2422 (with-current-buffer (car elt)
7511ded8 2423 (if (eq (cdr elt) t)
69cae2d4
RS
2424 (setq buffer-undo-list t)))))
2425
2426(defun cancel-change-group (handle)
2427 "Finish a change group made with `prepare-change-group' (which see).
2428This finishes the change group by reverting all of its changes."
2429 (dolist (elt handle)
2430 (with-current-buffer (car elt)
2431 (setq elt (cdr elt))
d21cba62
MR
2432 (save-restriction
2433 ;; Widen buffer temporarily so if the buffer was narrowed within
2434 ;; the body of `atomic-change-group' all changes can be undone.
2435 (widen)
2436 (let ((old-car
2437 (if (consp elt) (car elt)))
2438 (old-cdr
2439 (if (consp elt) (cdr elt))))
2440 ;; Temporarily truncate the undo log at ELT.
2441 (when (consp elt)
2442 (setcar elt nil) (setcdr elt nil))
2443 (unless (eq last-command 'undo) (undo-start))
2444 ;; Make sure there's no confusion.
2445 (when (and (consp elt) (not (eq elt (last pending-undo-list))))
2446 (error "Undoing to some unrelated state"))
2447 ;; Undo it all.
2448 (save-excursion
2449 (while (listp pending-undo-list) (undo-more 1)))
2450 ;; Reset the modified cons cell ELT to its original content.
2451 (when (consp elt)
2452 (setcar elt old-car)
2453 (setcdr elt old-cdr))
2454 ;; Revert the undo info to what it was when we grabbed the state.
2455 (setq buffer-undo-list elt))))))
69cae2d4 2456\f
c4f484f2
RS
2457;;;; Display-related functions.
2458
a9d956be 2459;; For compatibility.
37269466 2460(define-obsolete-function-alias 'redraw-modeline
2a1e2476 2461 'force-mode-line-update "24.3")
a9d956be 2462
9a5336ae 2463(defun force-mode-line-update (&optional all)
6b61353c
KH
2464 "Force redisplay of the current buffer's mode line and header line.
2465With optional non-nil ALL, force redisplay of all mode lines and
2466header lines. This function also forces recomputation of the
2467menu bar menus and the frame title."
03a74b84 2468 (if all (with-current-buffer (other-buffer)))
9a5336ae
JB
2469 (set-buffer-modified-p (buffer-modified-p)))
2470
aa3b4ded 2471(defun momentary-string-display (string pos &optional exit-char message)
be9b65ac 2472 "Momentarily display STRING in the buffer at POS.
12092fb3 2473Display remains until next event is input.
dbf284be 2474If POS is a marker, only its position is used; its buffer is ignored.
12092fb3
EZ
2475Optional third arg EXIT-CHAR can be a character, event or event
2476description list. EXIT-CHAR defaults to SPC. If the input is
2477EXIT-CHAR it is swallowed; otherwise it is then available as
2478input (as a command if nothing else).
be9b65ac
DL
2479Display MESSAGE (optional fourth arg) in the echo area.
2480If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
b754307b 2481 (or exit-char (setq exit-char ?\s))
f70c4736 2482 (let ((ol (make-overlay pos pos))
bc91aee9 2483 (str (copy-sequence string)))
be9b65ac 2484 (unwind-protect
f70c4736
SM
2485 (progn
2486 (save-excursion
bc91aee9 2487 (overlay-put ol 'after-string str)
f70c4736
SM
2488 (goto-char pos)
2489 ;; To avoid trouble with out-of-bounds position
2490 (setq pos (point))
bc91aee9 2491 ;; If the string end is off screen, recenter now.
f70c4736
SM
2492 (if (<= (window-end nil t) pos)
2493 (recenter (/ (window-height) 2))))
2494 (message (or message "Type %s to continue editing.")
2495 (single-key-description exit-char))
321e1a9c 2496 (let ((event (read-key)))
fe40dc63
JB
2497 ;; `exit-char' can be an event, or an event description list.
2498 (or (eq event exit-char)
2499 (eq event (event-convert-list exit-char))
321e1a9c
SM
2500 (setq unread-command-events
2501 (append (this-single-command-raw-keys))))))
f70c4736 2502 (delete-overlay ol))))
be9b65ac 2503
9a5336ae 2504\f
aa3b4ded
SM
2505;;;; Overlay operations
2506
2507(defun copy-overlay (o)
2508 "Return a copy of overlay O."
48b1e7cf
SM
2509 (let ((o1 (if (overlay-buffer o)
2510 (make-overlay (overlay-start o) (overlay-end o)
2511 ;; FIXME: there's no easy way to find the
2512 ;; insertion-type of the two markers.
2513 (overlay-buffer o))
2514 (let ((o1 (make-overlay (point-min) (point-min))))
2515 (delete-overlay o1)
28f0b072 2516 o1)))
aa3b4ded
SM
2517 (props (overlay-properties o)))
2518 (while props
2519 (overlay-put o1 (pop props) (pop props)))
2520 o1))
2521
f24485f1 2522(defun remove-overlays (&optional beg end name val)
aa3b4ded 2523 "Clear BEG and END of overlays whose property NAME has value VAL.
cba61075
JB
2524Overlays might be moved and/or split.
2525BEG and END default respectively to the beginning and end of buffer."
d6f5ac10 2526 ;; This speeds up the loops over overlays.
f24485f1
MY
2527 (unless beg (setq beg (point-min)))
2528 (unless end (setq end (point-max)))
ee6bb693 2529 (overlay-recenter end)
aa3b4ded
SM
2530 (if (< end beg)
2531 (setq beg (prog1 end (setq end beg))))
2532 (save-excursion
2533 (dolist (o (overlays-in beg end))
2534 (when (eq (overlay-get o name) val)
2535 ;; Either push this overlay outside beg...end
2536 ;; or split it to exclude beg...end
2537 ;; or delete it entirely (if it is contained in beg...end).
2538 (if (< (overlay-start o) beg)
2539 (if (> (overlay-end o) end)
2540 (progn
2541 (move-overlay (copy-overlay o)
2542 (overlay-start o) beg)
2543 (move-overlay o end (overlay-end o)))
2544 (move-overlay o (overlay-start o) beg))
2545 (if (> (overlay-end o) end)
2546 (move-overlay o end (overlay-end o))
2547 (delete-overlay o)))))))
c5802acf 2548\f
9a5336ae
JB
2549;;;; Miscellanea.
2550
4fb17037
RS
2551(defvar suspend-hook nil
2552 "Normal hook run by `suspend-emacs', before suspending.")
2553
2554(defvar suspend-resume-hook nil
2555 "Normal hook run by `suspend-emacs', after Emacs is continued.")
2556
784bc7cd
RS
2557(defvar temp-buffer-show-hook nil
2558 "Normal hook run by `with-output-to-temp-buffer' after displaying the buffer.
2559When the hook runs, the temporary buffer is current, and the window it
5247a8e6 2560was displayed in is selected.")
784bc7cd
RS
2561
2562(defvar temp-buffer-setup-hook nil
2563 "Normal hook run by `with-output-to-temp-buffer' at the start.
2564When the hook runs, the temporary buffer is current.
2565This hook is normally set up with a function to put the buffer in Help
2566mode.")
2567
d8869c65
CY
2568(defconst user-emacs-directory
2569 (if (eq system-type 'ms-dos)
2570 ;; MS-DOS cannot have initial dot.
2571 "~/_emacs.d/"
2572 "~/.emacs.d/")
2573 "Directory beneath which additional per-user Emacs-specific files are placed.
2574Various programs in Emacs store information in this directory.
d6c180c4
JB
2575Note that this should end with a directory separator.
2576See also `locate-user-emacs-file'.")
2577
0114073a
GM
2578(custom-declare-variable-early 'user-emacs-directory-warning t
2579 "Non-nil means warn if cannot access `user-emacs-directory'.
2580Set this to nil at your own risk..."
2581 :type 'boolean
2582 :group 'initialization
2583 :version "24.4")
2584
d6c180c4
JB
2585(defun locate-user-emacs-file (new-name &optional old-name)
2586 "Return an absolute per-user Emacs-specific file name.
85e55412 2587If NEW-NAME exists in `user-emacs-directory', return it.
fa6bc6fd 2588Else if OLD-NAME is non-nil and ~/OLD-NAME exists, return ~/OLD-NAME.
d6c180c4
JB
2589Else return NEW-NAME in `user-emacs-directory', creating the
2590directory if it does not exist."
2591 (convert-standard-filename
2592 (let* ((home (concat "~" (or init-file-user "")))
85e55412
SM
2593 (at-home (and old-name (expand-file-name old-name home)))
2594 (bestname (abbreviate-file-name
2595 (expand-file-name new-name user-emacs-directory))))
2596 (if (and at-home (not (file-readable-p bestname))
2597 (file-readable-p at-home))
d6c180c4 2598 at-home
2bea2795 2599 ;; Make sure `user-emacs-directory' exists,
0114073a 2600 ;; unless we're in batch mode or dumping Emacs.
2bea2795
JB
2601 (or noninteractive
2602 purify-flag
0114073a
GM
2603 (let (errtype)
2604 (if (file-directory-p user-emacs-directory)
2605 (or (file-accessible-directory-p user-emacs-directory)
2606 (setq errtype "access"))
2607 (let ((umask (default-file-modes)))
2608 (unwind-protect
2609 (progn
2610 (set-default-file-modes ?\700)
2611 (condition-case nil
2612 (make-directory user-emacs-directory)
2613 (error (setq errtype "create"))))
2614 (set-default-file-modes umask))))
2615 (when (and errtype
2616 user-emacs-directory-warning
2617 (not (get 'user-emacs-directory-warning 'this-session)))
2618 ;; Only warn once per Emacs session.
2619 (put 'user-emacs-directory-warning 'this-session t)
2620 (display-warning 'initialization
2621 (format "\
2622Unable to %s `user-emacs-directory' (%s).
2623Any data that would normally be written there may be lost!
2624If you never want to see this message again,
2625customize the variable `user-emacs-directory-warning'."
2626 errtype user-emacs-directory)))))
85e55412 2627 bestname))))
c4f484f2
RS
2628\f
2629;;;; Misc. useful functions.
448b61c9 2630
e5c2edf7
CY
2631(defsubst buffer-narrowed-p ()
2632 "Return non-nil if the current buffer is narrowed."
2633 (/= (- (point-max) (point-min)) (buffer-size)))
2634
e5e4a942
JL
2635(defun find-tag-default-bounds ()
2636 "Determine the boundaries of the default tag, based on text at point.
2637Return a cons cell with the beginning and end of the found tag.
c4f484f2 2638If there is no plausible default, return nil."
9db3bfae
MR
2639 (let (from to bound)
2640 (when (or (progn
2641 ;; Look at text around `point'.
2642 (save-excursion
2643 (skip-syntax-backward "w_") (setq from (point)))
2644 (save-excursion
2645 (skip-syntax-forward "w_") (setq to (point)))
2646 (> to from))
2647 ;; Look between `line-beginning-position' and `point'.
2648 (save-excursion
2649 (and (setq bound (line-beginning-position))
2650 (skip-syntax-backward "^w_" bound)
2651 (> (setq to (point)) bound)
2652 (skip-syntax-backward "w_")
2653 (setq from (point))))
2654 ;; Look between `point' and `line-end-position'.
2655 (save-excursion
2656 (and (setq bound (line-end-position))
2657 (skip-syntax-forward "^w_" bound)
2658 (< (setq from (point)) bound)
2659 (skip-syntax-forward "w_")
2660 (setq to (point)))))
e5e4a942
JL
2661 (cons from to))))
2662
2663(defun find-tag-default ()
2664 "Determine default tag to search for, based on text at point.
2665If there is no plausible default, return nil."
2666 (let ((bounds (find-tag-default-bounds)))
2667 (when bounds
2668 (buffer-substring-no-properties (car bounds) (cdr bounds)))))
a860d25f 2669
eb1a6e15
J
2670(defun find-tag-default-as-regexp ()
2671 "Return regexp that matches the default tag at point.
2672If there is no tag at point, return nil.
2673
48c6afa6 2674When in a major mode that does not provide its own
eb1a6e15
J
2675`find-tag-default-function', return a regexp that matches the
2676symbol at point exactly."
2677 (let* ((tagf (or find-tag-default-function
2678 (get major-mode 'find-tag-default-function)
2679 'find-tag-default))
2680 (tag (funcall tagf)))
180ed218 2681 (cond ((null tag) nil)
eb1a6e15
J
2682 ((eq tagf 'find-tag-default)
2683 (format "\\_<%s\\_>" (regexp-quote tag)))
2684 (t (regexp-quote tag)))))
2685
c4f484f2
RS
2686(defun play-sound (sound)
2687 "SOUND is a list of the form `(sound KEYWORD VALUE...)'.
2688The following keywords are recognized:
9a5336ae 2689
c4f484f2
RS
2690 :file FILE - read sound data from FILE. If FILE isn't an
2691absolute file name, it is searched in `data-directory'.
9a5336ae 2692
c4f484f2
RS
2693 :data DATA - read sound data from string DATA.
2694
2695Exactly one of :file or :data must be present.
2696
2697 :volume VOL - set volume to VOL. VOL must an integer in the
2698range 0..100 or a float in the range 0..1.0. If not specified,
2699don't change the volume setting of the sound device.
9a5336ae 2700
c4f484f2 2701 :device DEVICE - play sound on DEVICE. If not specified,
d7f90d6c
JB
2702a system-dependent default device name is used.
2703
2704Note: :data and :device are currently not supported on Windows."
c4f484f2
RS
2705 (if (fboundp 'play-sound-internal)
2706 (play-sound-internal sound)
2707 (error "This Emacs binary lacks sound support")))
9a5336ae 2708
0ef97535
GM
2709(declare-function w32-shell-dos-semantics "w32-fns" nil)
2710
c4f484f2 2711(defun shell-quote-argument (argument)
d7f90d6c 2712 "Quote ARGUMENT for passing as argument to an inferior shell."
8f91bf93
DC
2713 (cond
2714 ((eq system-type 'ms-dos)
2715 ;; Quote using double quotes, but escape any existing quotes in
2716 ;; the argument with backslashes.
2717 (let ((result "")
2718 (start 0)
2719 end)
2720 (if (or (null (string-match "[^\"]" argument))
2721 (< (match-end 0) (length argument)))
2722 (while (string-match "[\"]" argument start)
2723 (setq end (match-beginning 0)
2724 result (concat result (substring argument start end)
2725 "\\" (substring argument end (1+ end)))
2726 start (1+ end))))
2727 (concat "\"" result (substring argument start) "\"")))
2728
2729 ((and (eq system-type 'windows-nt) (w32-shell-dos-semantics))
638f053a 2730
8f91bf93
DC
2731 ;; First, quote argument so that CommandLineToArgvW will
2732 ;; understand it. See
2733 ;; http://msdn.microsoft.com/en-us/library/17w5ykft%28v=vs.85%29.aspx
2734 ;; After we perform that level of quoting, escape shell
2735 ;; metacharacters so that cmd won't mangle our argument. If the
2736 ;; argument contains no double quote characters, we can just
2737 ;; surround it with double quotes. Otherwise, we need to prefix
2738 ;; each shell metacharacter with a caret.
2739
2740 (setq argument
2741 ;; escape backslashes at end of string
2742 (replace-regexp-in-string
2743 "\\(\\\\*\\)$"
2744 "\\1\\1"
2745 ;; escape backslashes and quotes in string body
2746 (replace-regexp-in-string
2747 "\\(\\\\*\\)\""
2748 "\\1\\1\\\\\""
2749 argument)))
2750
2a782793 2751 (if (string-match "[%!\"]" argument)
8f91bf93
DC
2752 (concat
2753 "^\""
2754 (replace-regexp-in-string
2755 "\\([%!()\"<>&|^]\\)"
2756 "^\\1"
2757 argument)
2758 "^\"")
2759 (concat "\"" argument "\"")))
2760
2761 (t
4bbf6b41
JR
2762 (if (equal argument "")
2763 "''"
2764 ;; Quote everything except POSIX filename characters.
2765 ;; This should be safe enough even for really weird shells.
8f91bf93
DC
2766 (replace-regexp-in-string
2767 "\n" "'\n'"
2768 (replace-regexp-in-string "[^-0-9a-zA-Z_./\n]" "\\\\\\&" argument))))
2769 ))
3e457225
RS
2770
2771(defun string-or-null-p (object)
2772 "Return t if OBJECT is a string or nil.
2773Otherwise, return nil."
2774 (or (stringp object) (null object)))
2775
26715e1b 2776(defun booleanp (object)
ac6ca7ba
KR
2777 "Return t if OBJECT is one of the two canonical boolean values: t or nil.
2778Otherwise, return nil."
2779 (and (memq object '(nil t)) t))
26715e1b 2780
231d8498
SM
2781(defun special-form-p (object)
2782 "Non-nil if and only if OBJECT is a special form."
2783 (if (and (symbolp object) (fboundp object))
96c052a5 2784 (setq object (indirect-function object t)))
231d8498
SM
2785 (and (subrp object) (eq (cdr (subr-arity object)) 'unevalled)))
2786
671d5c16
SM
2787(defun macrop (object)
2788 "Non-nil if and only if OBJECT is a macro."
2789 (let ((def (indirect-function object t)))
2790 (when (consp def)
2791 (or (eq 'macro (car def))
400a3178 2792 (and (autoloadp def) (memq (nth 4 def) '(macro t)))))))
671d5c16 2793
1627b55f 2794(defun field-at-pos (pos)
d7f90d6c 2795 "Return the field at position POS, taking stickiness etc into account."
1ecaae6c
NR
2796 (let ((raw-field (get-char-property (field-beginning pos) 'field)))
2797 (if (eq raw-field 'boundary)
2798 (get-char-property (1- (field-end pos)) 'field)
2799 raw-field)))
2800
7f3f739f
LL
2801(defun sha1 (object &optional start end binary)
2802 "Return the SHA1 (Secure Hash Algorithm) of an OBJECT.
2803OBJECT is either a string or a buffer. Optional arguments START and
2804END are character positions specifying which portion of OBJECT for
2805computing the hash. If BINARY is non-nil, return a string in binary
2806form."
2807 (secure-hash 'sha1 object start end binary))
2808
7abaf5cc
SM
2809(defun function-get (f prop &optional autoload)
2810 "Return the value of property PROP of function F.
3c98c962
SM
2811If AUTOLOAD is non-nil and F is autoloaded, try to autoload it
2812in the hope that it will set PROP. If AUTOLOAD is `macro', only do it
2813if it's an autoloaded macro."
7abaf5cc
SM
2814 (let ((val nil))
2815 (while (and (symbolp f)
2816 (null (setq val (get f prop)))
2817 (fboundp f))
2818 (let ((fundef (symbol-function f)))
2819 (if (and autoload (autoloadp fundef)
3c98c962
SM
2820 (not (equal fundef
2821 (autoload-do-load fundef f
2822 (if (eq autoload 'macro)
2823 'macro)))))
7abaf5cc
SM
2824 nil ;Re-try `get' on the same `f'.
2825 (setq f fundef))))
2826 val))
c4f484f2
RS
2827\f
2828;;;; Support for yanking and text properties.
3472b6c6 2829;; Why here in subr.el rather than in simple.el? --Stef
9a5336ae 2830
2170b1bd 2831(defvar yank-handled-properties)
2493767e
RS
2832(defvar yank-excluded-properties)
2833
8ed59ad5 2834(defun remove-yank-excluded-properties (start end)
2170b1bd
CY
2835 "Process text properties between START and END, inserted for a `yank'.
2836Perform the handling specified by `yank-handled-properties', then
2837remove properties specified by `yank-excluded-properties'."
8ed59ad5 2838 (let ((inhibit-read-only t))
2170b1bd
CY
2839 (dolist (handler yank-handled-properties)
2840 (let ((prop (car handler))
2841 (fun (cdr handler))
2842 (run-start start))
2843 (while (< run-start end)
2844 (let ((value (get-text-property run-start prop))
2845 (run-end (next-single-property-change
2846 run-start prop nil end)))
2847 (funcall fun value run-start run-end)
2848 (setq run-start run-end)))))
8ed59ad5
KS
2849 (if (eq yank-excluded-properties t)
2850 (set-text-properties start end nil)
ebaa3349 2851 (remove-list-of-text-properties start end yank-excluded-properties))))
8ed59ad5 2852
e0e80ec9
KS
2853(defvar yank-undo-function)
2854
2855(defun insert-for-yank (string)
3fa173b4 2856 "Call `insert-for-yank-1' repetitively for each `yank-handler' segment.
6b61353c
KH
2857
2858See `insert-for-yank-1' for more details."
2859 (let (to)
2860 (while (setq to (next-single-property-change 0 'yank-handler string))
2861 (insert-for-yank-1 (substring string 0 to))
2862 (setq string (substring string to))))
2863 (insert-for-yank-1 string))
2864
2865(defun insert-for-yank-1 (string)
2170b1bd
CY
2866 "Insert STRING at point for the `yank' command.
2867This function is like `insert', except it honors the variables
2868`yank-handled-properties' and `yank-excluded-properties', and the
2869`yank-handler' text property.
2870
2871Properties listed in `yank-handled-properties' are processed,
2872then those listed in `yank-excluded-properties' are discarded.
2873
2874If STRING has a non-nil `yank-handler' property on its first
2875character, the normal insert behavior is altered. The value of
2876the `yank-handler' property must be a list of one to four
2877elements, of the form (FUNCTION PARAM NOEXCLUDE UNDO).
2878FUNCTION, if non-nil, should be a function of one argument, an
2879 object to insert; it is called instead of `insert'.
2880PARAM, if present and non-nil, replaces STRING as the argument to
2881 FUNCTION or `insert'; e.g. if FUNCTION is `yank-rectangle', PARAM
2882 may be a list of strings to insert as a rectangle.
2883If NOEXCLUDE is present and non-nil, the normal removal of
5612fd08 2884 `yank-excluded-properties' is not performed; instead FUNCTION is
2170b1bd
CY
2885 responsible for the removal. This may be necessary if FUNCTION
2886 adjusts point before or after inserting the object.
2887UNDO, if present and non-nil, should be a function to be called
e0e80ec9 2888 by `yank-pop' to undo the insertion of the current object. It is
2170b1bd
CY
2889 given two arguments, the start and end of the region. FUNCTION
2890 may set `yank-undo-function' to override UNDO."
57596fb6
KS
2891 (let* ((handler (and (stringp string)
2892 (get-text-property 0 'yank-handler string)))
2893 (param (or (nth 1 handler) string))
4f0f29aa 2894 (opoint (point))
029fd82c 2895 (inhibit-read-only inhibit-read-only)
4f0f29aa
RS
2896 end)
2897
57596fb6 2898 (setq yank-undo-function t)
2170b1bd 2899 (if (nth 0 handler) ; FUNCTION
57596fb6 2900 (funcall (car handler) param)
e0e80ec9 2901 (insert param))
4f0f29aa
RS
2902 (setq end (point))
2903
029fd82c
CY
2904 ;; Prevent read-only properties from interfering with the
2905 ;; following text property changes.
2906 (setq inhibit-read-only t)
2907
2170b1bd
CY
2908 (unless (nth 2 handler) ; NOEXCLUDE
2909 (remove-yank-excluded-properties opoint end))
631890d8
RS
2910
2911 ;; If last inserted char has properties, mark them as rear-nonsticky.
2912 (if (and (> end opoint)
2913 (text-properties-at (1- end)))
2914 (put-text-property (1- end) end 'rear-nonsticky t))
2915
2170b1bd
CY
2916 (if (eq yank-undo-function t) ; not set by FUNCTION
2917 (setq yank-undo-function (nth 3 handler))) ; UNDO
2918 (if (nth 4 handler) ; COMMAND
57596fb6 2919 (setq this-command (nth 4 handler)))))
f1180544 2920
a478f3e1
JB
2921(defun insert-buffer-substring-no-properties (buffer &optional start end)
2922 "Insert before point a substring of BUFFER, without text properties.
3b8690f6 2923BUFFER may be a buffer or a buffer name.
f8cf33b1
JB
2924Arguments START and END are character positions specifying the substring.
2925They default to the values of (point-min) and (point-max) in BUFFER."
3b8690f6 2926 (let ((opoint (point)))
a478f3e1 2927 (insert-buffer-substring buffer start end)
3b8690f6
KS
2928 (let ((inhibit-read-only t))
2929 (set-text-properties opoint (point) nil))))
2930
a478f3e1
JB
2931(defun insert-buffer-substring-as-yank (buffer &optional start end)
2932 "Insert before point a part of BUFFER, stripping some text properties.
2933BUFFER may be a buffer or a buffer name.
f8cf33b1
JB
2934Arguments START and END are character positions specifying the substring.
2935They default to the values of (point-min) and (point-max) in BUFFER.
05b621a6
CY
2936Before insertion, process text properties according to
2937`yank-handled-properties' and `yank-excluded-properties'."
6b61353c
KH
2938 ;; Since the buffer text should not normally have yank-handler properties,
2939 ;; there is no need to handle them here.
3b8690f6 2940 (let ((opoint (point)))
a478f3e1 2941 (insert-buffer-substring buffer start end)
8ed59ad5 2942 (remove-yank-excluded-properties opoint (point))))
3b8690f6 2943
2170b1bd
CY
2944(defun yank-handle-font-lock-face-property (face start end)
2945 "If `font-lock-defaults' is nil, apply FACE as a `face' property.
2946START and END denote the start and end of the text to act on.
2947Do nothing if FACE is nil."
2948 (and face
2949 (null font-lock-defaults)
2950 (put-text-property start end 'face face)))
2951
2952;; This removes `mouse-face' properties in *Help* buffer buttons:
2953;; http://lists.gnu.org/archive/html/emacs-devel/2002-04/msg00648.html
2954(defun yank-handle-category-property (category start end)
2955 "Apply property category CATEGORY's properties between START and END."
2956 (when category
2957 (let ((start2 start))
2958 (while (< start2 end)
2959 (let ((end2 (next-property-change start2 nil end))
2960 (original (text-properties-at start2)))
2961 (set-text-properties start2 end2 (symbol-plist category))
2962 (add-text-properties start2 end2 original)
2963 (setq start2 end2))))))
2964
2493767e 2965\f
c4f484f2 2966;;;; Synchronous shell commands.
2493767e 2967
be9b65ac
DL
2968(defun start-process-shell-command (name buffer &rest args)
2969 "Start a program in a subprocess. Return the process object for it.
be9b65ac 2970NAME is name for process. It is modified if necessary to make it unique.
54ce7cbf 2971BUFFER is the buffer (or buffer name) to associate with the process.
be9b65ac
DL
2972 Process output goes at end of that buffer, unless you specify
2973 an output stream or filter function to handle the output.
2974 BUFFER may be also nil, meaning that this process is not associated
2975 with any buffer
03a74b84
SM
2976COMMAND is the shell command to run.
2977
2978An old calling convention accepted any number of arguments after COMMAND,
2979which were just concatenated to COMMAND. This is still supported but strongly
fd6c5134 2980discouraged."
b59f6d7a
RS
2981 ;; We used to use `exec' to replace the shell with the command,
2982 ;; but that failed to handle (...) and semicolon, etc.
7c2fb837
DN
2983 (start-process name buffer shell-file-name shell-command-switch
2984 (mapconcat 'identity args " ")))
f3ed9aca 2985(set-advertised-calling-convention 'start-process-shell-command
f3a30a50 2986 '(name buffer command) "23.1")
f3ed9aca 2987
a9e11582
MA
2988(defun start-file-process-shell-command (name buffer &rest args)
2989 "Start a program in a subprocess. Return the process object for it.
fd6c5134 2990Similar to `start-process-shell-command', but calls `start-file-process'."
a9e11582
MA
2991 (start-file-process
2992 name buffer
2993 (if (file-remote-p default-directory) "/bin/sh" shell-file-name)
2994 (if (file-remote-p default-directory) "-c" shell-command-switch)
2995 (mapconcat 'identity args " ")))
f3ed9aca 2996(set-advertised-calling-convention 'start-file-process-shell-command
f3a30a50 2997 '(name buffer command) "23.1")
a9e11582 2998
93aca633
MB
2999(defun call-process-shell-command (command &optional infile buffer display
3000 &rest args)
3001 "Execute the shell command COMMAND synchronously in separate process.
3002The remaining arguments are optional.
3003The program's input comes from file INFILE (nil means `/dev/null').
3004Insert output in BUFFER before point; t means current buffer;
3005 nil for BUFFER means discard it; 0 means discard and don't wait.
3006BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
3007REAL-BUFFER says what to do with standard output, as above,
3008while STDERR-FILE says what to do with standard error in the child.
3009STDERR-FILE may be nil (discard standard error output),
3010t (mix it with ordinary output), or a file name string.
3011
3012Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
3013Remaining arguments are strings passed as additional arguments for COMMAND.
3014Wildcards and redirection are handled as usual in the shell.
3015
3016If BUFFER is 0, `call-process-shell-command' returns immediately with value nil.
3017Otherwise it waits for COMMAND to terminate and returns a numeric exit
3018status or a signal description string.
3019If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
7c2fb837
DN
3020 ;; We used to use `exec' to replace the shell with the command,
3021 ;; but that failed to handle (...) and semicolon, etc.
3022 (call-process shell-file-name
3023 infile buffer display
3024 shell-command-switch
3025 (mapconcat 'identity (cons command args) " ")))
a9e11582
MA
3026
3027(defun process-file-shell-command (command &optional infile buffer display
3028 &rest args)
3029 "Process files synchronously in a separate process.
3030Similar to `call-process-shell-command', but calls `process-file'."
3031 (process-file
3032 (if (file-remote-p default-directory) "/bin/sh" shell-file-name)
3033 infile buffer display
3034 (if (file-remote-p default-directory) "-c" shell-command-switch)
3035 (mapconcat 'identity (cons command args) " ")))
a7ed4c2a 3036\f
c4f484f2
RS
3037;;;; Lisp macros to do various things temporarily.
3038
83f57f49
MR
3039(defmacro with-current-buffer (buffer-or-name &rest body)
3040 "Execute the forms in BODY with BUFFER-OR-NAME temporarily current.
3041BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3042The value returned is the value of the last form in BODY. See
3043also `with-temp-buffer'."
d47f7515
SM
3044 (declare (indent 1) (debug t))
3045 `(save-current-buffer
83f57f49 3046 (set-buffer ,buffer-or-name)
d47f7515
SM
3047 ,@body))
3048
89660017 3049(defun internal--before-with-selected-window (window)
1439443b
SM
3050 (let ((other-frame (window-frame window)))
3051 (list window (selected-window)
3052 ;; Selecting a window on another frame also changes that
3053 ;; frame's frame-selected-window. We must save&restore it.
3054 (unless (eq (selected-frame) other-frame)
3055 (frame-selected-window other-frame))
3056 ;; Also remember the top-frame if on ttys.
3057 (unless (eq (selected-frame) other-frame)
3058 (tty-top-frame other-frame)))))
3059
89660017 3060(defun internal--after-with-selected-window (state)
1439443b
SM
3061 ;; First reset frame-selected-window.
3062 (when (window-live-p (nth 2 state))
3063 ;; We don't use set-frame-selected-window because it does not
3064 ;; pass the `norecord' argument to Fselect_window.
3065 (select-window (nth 2 state) 'norecord)
3066 (and (frame-live-p (nth 3 state))
3067 (not (eq (tty-top-frame) (nth 3 state)))
3068 (select-frame (nth 3 state) 'norecord)))
3069 ;; Then reset the actual selected-window.
7d806b1e
DU
3070 (when (window-live-p (nth 1 state))
3071 (select-window (nth 1 state) 'norecord)))
1439443b 3072
d47f7515
SM
3073(defmacro with-selected-window (window &rest body)
3074 "Execute the forms in BODY with WINDOW as the selected window.
3075The value returned is the value of the last form in BODY.
4c6d1e16 3076
a5094f72
MR
3077This macro saves and restores the selected window, as well as the
3078selected window of each frame. It does not change the order of
3079recently selected windows. If the previously selected window of
3080some frame is no longer live at the end of BODY, that frame's
3081selected window is left alone. If the selected window is no
3082longer live, then whatever window is selected at the end of BODY
3083remains selected.
3084
3085This macro uses `save-current-buffer' to save and restore the
3086current buffer, since otherwise its normal operation could
3087potentially make a different buffer current. It does not alter
3088the buffer list ordering."
d47f7515 3089 (declare (indent 1) (debug t))
1439443b 3090 `(let ((save-selected-window--state
89660017 3091 (internal--before-with-selected-window ,window)))
4c6d1e16
RS
3092 (save-current-buffer
3093 (unwind-protect
1439443b 3094 (progn (select-window (car save-selected-window--state) 'norecord)
4c6d1e16 3095 ,@body)
89660017 3096 (internal--after-with-selected-window save-selected-window--state)))))
a7f284ec 3097
c3e242d3
KL
3098(defmacro with-selected-frame (frame &rest body)
3099 "Execute the forms in BODY with FRAME as the selected frame.
3100The value returned is the value of the last form in BODY.
a5094f72 3101
4e5d086d
LMI
3102This macro saves and restores the selected frame, and changes the
3103order of neither the recently selected windows nor the buffers in
3104the buffer list."
c3e242d3 3105 (declare (indent 1) (debug t))
632210dd
KL
3106 (let ((old-frame (make-symbol "old-frame"))
3107 (old-buffer (make-symbol "old-buffer")))
3108 `(let ((,old-frame (selected-frame))
3109 (,old-buffer (current-buffer)))
3110 (unwind-protect
a5094f72 3111 (progn (select-frame ,frame 'norecord)
632210dd 3112 ,@body)
a5094f72
MR
3113 (when (frame-live-p ,old-frame)
3114 (select-frame ,old-frame 'norecord))
3115 (when (buffer-live-p ,old-buffer)
3116 (set-buffer ,old-buffer))))))
c3e242d3 3117
e0f57e65 3118(defmacro save-window-excursion (&rest body)
2cc775f9 3119 "Execute BODY, then restore previous window configuration.
d3760c4b
CY
3120This macro saves the window configuration on the selected frame,
3121executes BODY, then calls `set-window-configuration' to restore
3122the saved window configuration. The return value is the last
3123form in BODY. The window configuration is also restored if BODY
3124exits nonlocally.
e0f57e65
SM
3125
3126BEWARE: Most uses of this macro introduce bugs.
3127E.g. it should not be used to try and prevent some code from opening
3128a new window, since that window may sometimes appear in another frame,
3129in which case `save-window-excursion' cannot help."
3130 (declare (indent 0) (debug t))
3131 (let ((c (make-symbol "wconfig")))
3132 `(let ((,c (current-window-configuration)))
3133 (unwind-protect (progn ,@body)
3134 (set-window-configuration ,c)))))
3135
4ff5b1b2 3136(defun internal-temp-output-buffer-show (buffer)
43bf5e8e
MR
3137 "Internal function for `with-output-to-temp-buffer'."
3138 (with-current-buffer buffer
3139 (set-buffer-modified-p nil)
3140 (goto-char (point-min)))
3141
3142 (if temp-buffer-show-function
3143 (funcall temp-buffer-show-function buffer)
3144 (with-current-buffer buffer
3145 (let* ((window
3146 (let ((window-combination-limit
3147 ;; When `window-combination-limit' equals
3148 ;; `temp-buffer' or `temp-buffer-resize' and
3149 ;; `temp-buffer-resize-mode' is enabled in this
3150 ;; buffer bind it to t so resizing steals space
3151 ;; preferably from the window that was split.
3152 (if (or (eq window-combination-limit 'temp-buffer)
3153 (and (eq window-combination-limit
3154 'temp-buffer-resize)
3155 temp-buffer-resize-mode))
3156 t
3157 window-combination-limit)))
3158 (display-buffer buffer)))
3159 (frame (and window (window-frame window))))
3160 (when window
3161 (unless (eq frame (selected-frame))
3162 (make-frame-visible frame))
3163 (setq minibuffer-scroll-window window)
3164 (set-window-hscroll window 0)
3165 ;; Don't try this with NOFORCE non-nil!
3166 (set-window-start window (point-min) t)
735135f9 3167 ;; This should not be necessary.
43bf5e8e
MR
3168 (set-window-point window (point-min))
3169 ;; Run `temp-buffer-show-hook', with the chosen window selected.
3170 (with-selected-window window
3171 (run-hooks 'temp-buffer-show-hook))))))
3172 ;; Return nil.
3173 nil)
3174
95f0501e 3175;; Doc is very similar to with-temp-buffer-window.
3e21b6a7
SM
3176(defmacro with-output-to-temp-buffer (bufname &rest body)
3177 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.
3178
3179This construct makes buffer BUFNAME empty before running BODY.
3180It does not make the buffer current for BODY.
3181Instead it binds `standard-output' to that buffer, so that output
3182generated with `prin1' and similar functions in BODY goes into
3183the buffer.
3184
a239d4e9 3185At the end of BODY, this marks buffer BUFNAME unmodified and displays
3e21b6a7
SM
3186it in a window, but does not select it. The normal way to do this is
3187by calling `display-buffer', then running `temp-buffer-show-hook'.
3188However, if `temp-buffer-show-function' is non-nil, it calls that
3189function instead (and does not run `temp-buffer-show-hook'). The
3190function gets one argument, the buffer to display.
3191
3192The return value of `with-output-to-temp-buffer' is the value of the
3193last form in BODY. If BODY does not finish normally, the buffer
3194BUFNAME is not displayed.
3195
3196This runs the hook `temp-buffer-setup-hook' before BODY,
3197with the buffer BUFNAME temporarily current. It runs the hook
3198`temp-buffer-show-hook' after displaying buffer BUFNAME, with that
3199buffer temporarily current, and the window that was used to display it
3200temporarily selected. But it doesn't run `temp-buffer-show-hook'
95f0501e
GM
3201if it uses `temp-buffer-show-function'.
3202
3203See the related form `with-temp-buffer-window'."
2462470b 3204 (declare (debug t))
3e21b6a7
SM
3205 (let ((old-dir (make-symbol "old-dir"))
3206 (buf (make-symbol "buf")))
9dba2c64
SM
3207 `(let* ((,old-dir default-directory)
3208 (,buf
3209 (with-current-buffer (get-buffer-create ,bufname)
3210 (prog1 (current-buffer)
3211 (kill-all-local-variables)
3212 ;; FIXME: delete_all_overlays
3213 (setq default-directory ,old-dir)
3214 (setq buffer-read-only nil)
3215 (setq buffer-file-name nil)
3216 (setq buffer-undo-list t)
3217 (let ((inhibit-read-only t)
3218 (inhibit-modification-hooks t))
3219 (erase-buffer)
3220 (run-hooks 'temp-buffer-setup-hook)))))
3221 (standard-output ,buf))
3222 (prog1 (progn ,@body)
4ff5b1b2 3223 (internal-temp-output-buffer-show ,buf)))))
3e21b6a7 3224
e5bb8a8c
SM
3225(defmacro with-temp-file (file &rest body)
3226 "Create a new buffer, evaluate BODY there, and write the buffer to FILE.
3227The value returned is the value of the last form in BODY.
a2fdb55c 3228See also `with-temp-buffer'."
f291fe60 3229 (declare (indent 1) (debug t))
a7ed4c2a 3230 (let ((temp-file (make-symbol "temp-file"))
a2fdb55c
EN
3231 (temp-buffer (make-symbol "temp-buffer")))
3232 `(let ((,temp-file ,file)
3233 (,temp-buffer
3234 (get-buffer-create (generate-new-buffer-name " *temp file*"))))
3235 (unwind-protect
3236 (prog1
3237 (with-current-buffer ,temp-buffer
e5bb8a8c 3238 ,@body)
a2fdb55c 3239 (with-current-buffer ,temp-buffer
ab1d3835 3240 (write-region nil nil ,temp-file nil 0)))
a2fdb55c
EN
3241 (and (buffer-name ,temp-buffer)
3242 (kill-buffer ,temp-buffer))))))
3243
e5bb8a8c 3244(defmacro with-temp-message (message &rest body)
a600effe 3245 "Display MESSAGE temporarily if non-nil while BODY is evaluated.
e5bb8a8c
SM
3246The original message is restored to the echo area after BODY has finished.
3247The value returned is the value of the last form in BODY.
a600effe
SM
3248MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
3249If MESSAGE is nil, the echo area and message log buffer are unchanged.
3250Use a MESSAGE of \"\" to temporarily clear the echo area."
f291fe60 3251 (declare (debug t) (indent 1))
110201c8
SM
3252 (let ((current-message (make-symbol "current-message"))
3253 (temp-message (make-symbol "with-temp-message")))
3254 `(let ((,temp-message ,message)
3255 (,current-message))
e5bb8a8c
SM
3256 (unwind-protect
3257 (progn
110201c8
SM
3258 (when ,temp-message
3259 (setq ,current-message (current-message))
aadf7ff3 3260 (message "%s" ,temp-message))
e5bb8a8c 3261 ,@body)
cad84646
RS
3262 (and ,temp-message
3263 (if ,current-message
3264 (message "%s" ,current-message)
3265 (message nil)))))))
e5bb8a8c
SM
3266
3267(defmacro with-temp-buffer (&rest body)
3268 "Create a temporary buffer, and evaluate BODY there like `progn'.
a2fdb55c 3269See also `with-temp-file' and `with-output-to-string'."
d47f7515 3270 (declare (indent 0) (debug t))
a2fdb55c 3271 (let ((temp-buffer (make-symbol "temp-buffer")))
9166dbf6 3272 `(let ((,temp-buffer (generate-new-buffer " *temp*")))
4a5e1832
SM
3273 ;; FIXME: kill-buffer can change current-buffer in some odd cases.
3274 (with-current-buffer ,temp-buffer
3275 (unwind-protect
3276 (progn ,@body)
3277 (and (buffer-name ,temp-buffer)
3278 (kill-buffer ,temp-buffer)))))))
a2fdb55c 3279
83a5aac5 3280(defmacro with-silent-modifications (&rest body)
f291fe60 3281 "Execute BODY, pretending it does not modify the buffer.
83a5aac5
SM
3282If BODY performs real modifications to the buffer's text, other
3283than cosmetic ones, undo data may become corrupted.
a28e4607
LMI
3284
3285This macro will run BODY normally, but doesn't count its buffer
3286modifications as being buffer modifications. This affects things
fa6bc6fd 3287like `buffer-modified-p', checking whether the file is locked by
a28e4607
LMI
3288someone else, running buffer modification hooks, and other things
3289of that nature.
3290
3291Typically used around modifications of text-properties which do
3292not really affect the buffer's content."
83a5aac5
SM
3293 (declare (debug t) (indent 0))
3294 (let ((modified (make-symbol "modified")))
3295 `(let* ((,modified (buffer-modified-p))
3296 (buffer-undo-list t)
3297 (inhibit-read-only t)
3298 (inhibit-modification-hooks t)
3299 deactivate-mark
3300 ;; Avoid setting and removing file locks and checking
3301 ;; buffer's uptodate-ness w.r.t the underlying file.
3302 buffer-file-name
3303 buffer-file-truename)
3304 (unwind-protect
3305 (progn
3306 ,@body)
3307 (unless ,modified
3308 (restore-buffer-modified-p nil))))))
3309
5db7925d
RS
3310(defmacro with-output-to-string (&rest body)
3311 "Execute BODY, return the text it sent to `standard-output', as a string."
d47f7515 3312 (declare (indent 0) (debug t))
a2fdb55c
EN
3313 `(let ((standard-output
3314 (get-buffer-create (generate-new-buffer-name " *string-output*"))))
86ec740e
RF
3315 (unwind-protect
3316 (progn
3317 (let ((standard-output standard-output))
3318 ,@body)
3319 (with-current-buffer standard-output
3320 (buffer-string)))
3321 (kill-buffer standard-output))))
2ec9c94e 3322
0764e16f 3323(defmacro with-local-quit (&rest body)
53a7160c 3324 "Execute BODY, allowing quits to terminate BODY but not escape further.
b9308c61 3325When a quit terminates BODY, `with-local-quit' returns nil but
60f7e8b6
RS
3326requests another quit. That quit will be processed as soon as quitting
3327is allowed once again. (Immediately, if `inhibit-quit' is nil.)"
12320833 3328 (declare (debug t) (indent 0))
0764e16f
SM
3329 `(condition-case nil
3330 (let ((inhibit-quit nil))
3331 ,@body)
113fe928
RS
3332 (quit (setq quit-flag t)
3333 ;; This call is to give a chance to handle quit-flag
3334 ;; in case inhibit-quit is nil.
3335 ;; Without this, it will not be handled until the next function
3336 ;; call, and that might allow it to exit thru a condition-case
3337 ;; that intends to handle the quit signal next time.
3338 (eval '(ignore nil)))))
0764e16f 3339
c2b53d7b
RS
3340(defmacro while-no-input (&rest body)
3341 "Execute BODY only as long as there's no pending input.
3342If input arrives, that ends the execution of BODY,
83047ee3
RS
3343and `while-no-input' returns t. Quitting makes it return nil.
3344If BODY finishes, `while-no-input' returns whatever value BODY produced."
c2b53d7b
RS
3345 (declare (debug t) (indent 0))
3346 (let ((catch-sym (make-symbol "input")))
3347 `(with-local-quit
3348 (catch ',catch-sym
3349 (let ((throw-on-input ',catch-sym))
790e0ef7 3350 (or (input-pending-p)
ff7d73ac 3351 (progn ,@body)))))))
c2b53d7b 3352
1be3ca5a 3353(defmacro condition-case-unless-debug (var bodyform &rest handlers)
e5b5a34d
SM
3354 "Like `condition-case' except that it does not prevent debugging.
3355More specifically if `debug-on-error' is set then the debugger will be invoked
3356even if this catches the signal."
47ccb993 3357 (declare (debug condition-case) (indent 2))
e5b5a34d
SM
3358 `(condition-case ,var
3359 ,bodyform
3360 ,@(mapcar (lambda (handler)
3361 `((debug ,@(if (listp (car handler)) (car handler)
3362 (list (car handler))))
3363 ,@(cdr handler)))
3364 handlers)))
47ccb993 3365
1be3ca5a
LL
3366(define-obsolete-function-alias 'condition-case-no-debug
3367 'condition-case-unless-debug "24.1")
3368
8c27f5ff 3369(defmacro with-demoted-errors (format &rest body)
47ccb993
SM
3370 "Run BODY and demote any errors to simple messages.
3371If `debug-on-error' is non-nil, run BODY without catching its errors.
3372This is to be used around code which is not expected to signal an error
8c27f5ff
SM
3373but which should be robust in the unexpected case that an error is signaled.
3374For backward compatibility, if FORMAT is not a constant string, it
3375is assumed to be part of BODY, in which case the message format
3376used is \"Error: %S\"."
3377 (declare (debug t) (indent 1))
3378 (let ((err (make-symbol "err"))
3379 (format (if (and (stringp format) body) format
3380 (prog1 "Error: %S"
3381 (if format (push format body))))))
1be3ca5a 3382 `(condition-case-unless-debug ,err
8c27f5ff
SM
3383 ,(macroexp-progn body)
3384 (error (message ,format ,err) nil))))
47ccb993 3385
2ec9c94e
RS
3386(defmacro combine-after-change-calls (&rest body)
3387 "Execute BODY, but don't call the after-change functions till the end.
3388If BODY makes changes in the buffer, they are recorded
3389and the functions on `after-change-functions' are called several times
3390when BODY is finished.
31aa282e 3391The return value is the value of the last form in BODY.
2ec9c94e
RS
3392
3393If `before-change-functions' is non-nil, then calls to the after-change
3394functions can't be deferred, so in that case this macro has no effect.
3395
3396Do not alter `after-change-functions' or `before-change-functions'
3397in BODY."
d47f7515 3398 (declare (indent 0) (debug t))
2ec9c94e
RS
3399 `(unwind-protect
3400 (let ((combine-after-change-calls t))
3401 . ,body)
3402 (combine-after-change-execute)))
6a978be3
CY
3403
3404(defmacro with-case-table (table &rest body)
3405 "Execute the forms in BODY with TABLE as the current case table.
3406The value returned is the value of the last form in BODY."
3407 (declare (indent 1) (debug t))
8d6fd8d4
JPW
3408 (let ((old-case-table (make-symbol "table"))
3409 (old-buffer (make-symbol "buffer")))
3410 `(let ((,old-case-table (current-case-table))
3411 (,old-buffer (current-buffer)))
3412 (unwind-protect
3413 (progn (set-case-table ,table)
3414 ,@body)
3415 (with-current-buffer ,old-buffer
3416 (set-case-table ,old-case-table))))))
c4f484f2 3417\f
c4f484f2 3418;;; Matching and match data.
2493767e 3419
c7ca41e6
RS
3420(defvar save-match-data-internal)
3421
3422;; We use save-match-data-internal as the local variable because
3423;; that works ok in practice (people should not use that variable elsewhere).
3424;; We used to use an uninterned symbol; the compiler handles that properly
3425;; now, but it generates slower code.
9a5336ae 3426(defmacro save-match-data (&rest body)
e4d03691
JB
3427 "Execute the BODY forms, restoring the global value of the match data.
3428The value returned is the value of the last form in BODY."
64ed733a
PE
3429 ;; It is better not to use backquote here,
3430 ;; because that makes a bootstrapping problem
3431 ;; if you need to recompile all the Lisp files using interpreted code.
d47f7515 3432 (declare (indent 0) (debug t))
64ed733a
PE
3433 (list 'let
3434 '((save-match-data-internal (match-data)))
3435 (list 'unwind-protect
3436 (cons 'progn body)
d1fab151
KS
3437 ;; It is safe to free (evaporate) markers immediately here,
3438 ;; as Lisp programs should not copy from save-match-data-internal.
a0ef72df 3439 '(set-match-data save-match-data-internal 'evaporate))))
993713ce 3440
cd323f89 3441(defun match-string (num &optional string)
993713ce
SM
3442 "Return string of text matched by last search.
3443NUM specifies which parenthesized expression in the last regexp.
3444 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
3445Zero means the entire text matched by the whole regexp or whole string.
91054f8f
LMI
3446STRING should be given if the last search was by `string-match' on STRING.
3447If STRING is nil, the current buffer should be the same buffer
3448the search/match was performed in."
cd323f89
SM
3449 (if (match-beginning num)
3450 (if string
3451 (substring string (match-beginning num) (match-end num))
3452 (buffer-substring (match-beginning num) (match-end num)))))
58f950b4 3453
bb760c71
RS
3454(defun match-string-no-properties (num &optional string)
3455 "Return string of text matched by last search, without text properties.
3456NUM specifies which parenthesized expression in the last regexp.
3457 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
3458Zero means the entire text matched by the whole regexp or whole string.
91054f8f
LMI
3459STRING should be given if the last search was by `string-match' on STRING.
3460If STRING is nil, the current buffer should be the same buffer
3461the search/match was performed in."
bb760c71
RS
3462 (if (match-beginning num)
3463 (if string
6b61353c
KH
3464 (substring-no-properties string (match-beginning num)
3465 (match-end num))
bb760c71
RS
3466 (buffer-substring-no-properties (match-beginning num)
3467 (match-end num)))))
3468
8c2e721a
JL
3469
3470(defun match-substitute-replacement (replacement
3471 &optional fixedcase literal string subexp)
3472 "Return REPLACEMENT as it will be inserted by `replace-match'.
3473In other words, all back-references in the form `\\&' and `\\N'
3474are substituted with actual strings matched by the last search.
3475Optional FIXEDCASE, LITERAL, STRING and SUBEXP have the same
3476meaning as for `replace-match'."
3477 (let ((match (match-string 0 string)))
3478 (save-match-data
3479 (set-match-data (mapcar (lambda (x)
3480 (if (numberp x)
3481 (- x (match-beginning 0))
3482 x))
3483 (match-data t)))
3484 (replace-match replacement fixedcase literal match subexp))))
3485
3486
46065dd4 3487(defun looking-back (regexp &optional limit greedy)
f30e0cd8 3488 "Return non-nil if text before point matches regular expression REGEXP.
991b32c3 3489Like `looking-at' except matches before point, and is slower.
01d16e16
RS
3490LIMIT if non-nil speeds up the search by specifying a minimum
3491starting position, to avoid checking matches that would start
3492before LIMIT.
46065dd4 3493
cde27dd2
CY
3494If GREEDY is non-nil, extend the match backwards as far as
3495possible, stopping when a single additional previous character
3496cannot be part of a match for REGEXP. When the match is
3dcde186 3497extended, its starting position is allowed to occur before
6cfe977d
XF
3498LIMIT.
3499
3500As a general recommendation, try to avoid using `looking-back'
3501wherever possible, since it is slow."
46065dd4
RS
3502 (let ((start (point))
3503 (pos
3504 (save-excursion
3505 (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
3506 (point)))))
3507 (if (and greedy pos)
3508 (save-restriction
3509 (narrow-to-region (point-min) start)
3510 (while (and (> pos (point-min))
3511 (save-excursion
3512 (goto-char pos)
3513 (backward-char 1)
3514 (looking-at (concat "\\(?:" regexp "\\)\\'"))))
3515 (setq pos (1- pos)))
3516 (save-excursion
3517 (goto-char pos)
3518 (looking-at (concat "\\(?:" regexp "\\)\\'")))))
3519 (not (null pos))))
3520
45595a4f
RS
3521(defsubst looking-at-p (regexp)
3522 "\
3523Same as `looking-at' except this function does not change the match data."
3524 (let ((inhibit-changing-match-data t))
3525 (looking-at regexp)))
3526
3527(defsubst string-match-p (regexp string &optional start)
3528 "\
3529Same as `string-match' except this function does not change the match data."
3530 (let ((inhibit-changing-match-data t))
3531 (string-match regexp string start)))
3532
c4f484f2
RS
3533(defun subregexp-context-p (regexp pos &optional start)
3534 "Return non-nil if POS is in a normal subregexp context in REGEXP.
3535A subregexp context is one where a sub-regexp can appear.
3536A non-subregexp context is for example within brackets, or within a
3537repetition bounds operator `\\=\\{...\\}', or right after a `\\'.
3538If START is non-nil, it should be a position in REGEXP, smaller
3539than POS, and known to be in a subregexp context."
3540 ;; Here's one possible implementation, with the great benefit that it
3541 ;; reuses the regexp-matcher's own parser, so it understands all the
3542 ;; details of the syntax. A disadvantage is that it needs to match the
3543 ;; error string.
3544 (condition-case err
3545 (progn
3546 (string-match (substring regexp (or start 0) pos) "")
3547 t)
3548 (invalid-regexp
3549 (not (member (cadr err) '("Unmatched [ or [^"
3550 "Unmatched \\{"
3551 "Trailing backslash")))))
3552 ;; An alternative implementation:
3553 ;; (defconst re-context-re
3554 ;; (let* ((harmless-ch "[^\\[]")
3555 ;; (harmless-esc "\\\\[^{]")
3556 ;; (class-harmless-ch "[^][]")
3557 ;; (class-lb-harmless "[^]:]")
3558 ;; (class-lb-colon-maybe-charclass ":\\([a-z]+:]\\)?")
3559 ;; (class-lb (concat "\\[\\(" class-lb-harmless
3560 ;; "\\|" class-lb-colon-maybe-charclass "\\)"))
3561 ;; (class
3562 ;; (concat "\\[^?]?"
3563 ;; "\\(" class-harmless-ch
3564 ;; "\\|" class-lb "\\)*"
3565 ;; "\\[?]")) ; special handling for bare [ at end of re
3566 ;; (braces "\\\\{[0-9,]+\\\\}"))
3567 ;; (concat "\\`\\(" harmless-ch "\\|" harmless-esc
3568 ;; "\\|" class "\\|" braces "\\)*\\'"))
3569 ;; "Matches any prefix that corresponds to a normal subregexp context.")
3570 ;; (string-match re-context-re (substring regexp (or start 0) pos))
3571 )
3572\f
3573;;;; split-string
498535fb 3574
6a646626
JB
3575(defconst split-string-default-separators "[ \f\t\n\r\v]+"
3576 "The default value of separators for `split-string'.
3577
3578A regexp matching strings of whitespace. May be locale-dependent
3579\(as yet unimplemented). Should not match non-breaking spaces.
3580
3581Warning: binding this to a different value and using it as default is
3582likely to have undesired semantics.")
3583
3584;; The specification says that if both SEPARATORS and OMIT-NULLS are
3585;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical
3586;; expression leads to the equivalent implementation that if SEPARATORS
3587;; is defaulted, OMIT-NULLS is treated as t.
77c92cb9 3588(defun split-string (string &optional separators omit-nulls trim)
203998e5 3589 "Split STRING into substrings bounded by matches for SEPARATORS.
6a646626
JB
3590
3591The beginning and end of STRING, and each match for SEPARATORS, are
3592splitting points. The substrings matching SEPARATORS are removed, and
3593the substrings between the splitting points are collected as a list,
edce3654 3594which is returned.
b222b786 3595
6a646626
JB
3596If SEPARATORS is non-nil, it should be a regular expression matching text
3597which separates, but is not part of, the substrings. If nil it defaults to
3598`split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and
3599OMIT-NULLS is forced to t.
3600
fa6bc6fd 3601If OMIT-NULLS is t, zero-length substrings are omitted from the list (so
6a646626
JB
3602that for the default value of SEPARATORS leading and trailing whitespace
3603are effectively trimmed). If nil, all zero-length substrings are retained,
3604which correctly parses CSV format, for example.
3605
77c92cb9
RS
3606If TRIM is non-nil, it should be a regular expression to match
3607text to trim from the beginning and end of each substring. If trimming
3608makes the substring empty, it is treated as null.
3609
3610If you want to trim whitespace from the substrings, the reliably correct
3611way is using TRIM. Making SEPARATORS match that whitespace gives incorrect
3612results when there is whitespace at the start or end of STRING. If you
3613see such calls to `split-string', please fix them.
3614
6a646626 3615Note that the effect of `(split-string STRING)' is the same as
55e45419 3616`(split-string STRING split-string-default-separators t)'. In the rare
6a646626
JB
3617case that you wish to retain zero-length substrings when splitting on
3618whitespace, use `(split-string STRING split-string-default-separators)'.
b021ef18
DL
3619
3620Modifies the match data; use `save-match-data' if necessary."
77c92cb9
RS
3621 (let* ((keep-nulls (not (if separators omit-nulls t)))
3622 (rexp (or separators split-string-default-separators))
3623 (start 0)
3624 this-start this-end
3625 notfirst
3626 (list nil)
3627 (push-one
3628 ;; Push the substring in range THIS-START to THIS-END
3629 ;; onto LIST, trimming it and perhaps discarding it.
3630 (lambda ()
3631 (when trim
3632 ;; Discard the trim from start of this substring.
3633 (let ((tem (string-match trim string this-start)))
3634 (and (eq tem this-start)
3635 (setq this-start (match-end 0)))))
3636
3637 (when (or keep-nulls (< this-start this-end))
3638 (let ((this (substring string this-start this-end)))
3639
3640 ;; Discard the trim from end of this substring.
3641 (when trim
3642 (let ((tem (string-match (concat trim "\\'") this 0)))
3643 (and tem (< tem (length this))
3644 (setq this (substring this 0 tem)))))
3645
3646 ;; Trimming could make it empty; check again.
3647 (when (or keep-nulls (> (length this) 0))
3648 (push this list)))))))
3649
b222b786
RS
3650 (while (and (string-match rexp string
3651 (if (and notfirst
3652 (= start (match-beginning 0))
3653 (< start (length string)))
3654 (1+ start) start))
6a646626 3655 (< start (length string)))
b222b786 3656 (setq notfirst t)
77c92cb9
RS
3657 (setq this-start start this-end (match-beginning 0)
3658 start (match-end 0))
3659
3660 (funcall push-one))
3661
3662 ;; Handle the substring at the end of STRING.
3663 (setq this-start start this-end (length string))
3664 (funcall push-one)
3665
edce3654 3666 (nreverse list)))
0b93ff3a 3667
e80b3849 3668(defun combine-and-quote-strings (strings &optional separator)
0b93ff3a
NR
3669 "Concatenate the STRINGS, adding the SEPARATOR (default \" \").
3670This tries to quote the strings to avoid ambiguity such that
e80b3849 3671 (split-string-and-unquote (combine-and-quote-strings strs)) == strs
0b93ff3a 3672Only some SEPARATORs will work properly."
9f2bd2e7
SM
3673 (let* ((sep (or separator " "))
3674 (re (concat "[\\\"]" "\\|" (regexp-quote sep))))
0b93ff3a
NR
3675 (mapconcat
3676 (lambda (str)
9f2bd2e7 3677 (if (string-match re str)
0b93ff3a
NR
3678 (concat "\"" (replace-regexp-in-string "[\\\"]" "\\\\\\&" str) "\"")
3679 str))
3680 strings sep)))
3681
e80b3849 3682(defun split-string-and-unquote (string &optional separator)
0b93ff3a 3683 "Split the STRING into a list of strings.
e80b3849
RS
3684It understands Emacs Lisp quoting within STRING, such that
3685 (split-string-and-unquote (combine-and-quote-strings strs)) == strs
0b93ff3a
NR
3686The SEPARATOR regexp defaults to \"\\s-+\"."
3687 (let ((sep (or separator "\\s-+"))
d551d20d 3688 (i (string-match "\"" string)))
e80b3849
RS
3689 (if (null i)
3690 (split-string string sep t) ; no quoting: easy
0b93ff3a
NR
3691 (append (unless (eq i 0) (split-string (substring string 0 i) sep t))
3692 (let ((rfs (read-from-string string i)))
3693 (cons (car rfs)
e80b3849
RS
3694 (split-string-and-unquote (substring string (cdr rfs))
3695 sep)))))))
0b93ff3a 3696
c4f484f2
RS
3697\f
3698;;;; Replacement in strings.
1ccaea52
AI
3699
3700(defun subst-char-in-string (fromchar tochar string &optional inplace)
3701 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
3702Unless optional argument INPLACE is non-nil, return a new string."
e6e71807
SM
3703 (let ((i (length string))
3704 (newstr (if inplace string (copy-sequence string))))
3705 (while (> i 0)
3706 (setq i (1- i))
3707 (if (eq (aref newstr i) fromchar)
3708 (aset newstr i tochar)))
3709 newstr))
b021ef18 3710
1697159c 3711(defun replace-regexp-in-string (regexp rep string &optional
c8227332 3712 fixedcase literal subexp start)
b021ef18
DL
3713 "Replace all matches for REGEXP with REP in STRING.
3714
3715Return a new string containing the replacements.
3716
3717Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
3718arguments with the same names of function `replace-match'. If START
3719is non-nil, start replacements at that index in STRING.
3720
3721REP is either a string used as the NEWTEXT arg of `replace-match' or a
23bb94bb
RS
3722function. If it is a function, it is called with the actual text of each
3723match, and its value is used as the replacement text. When REP is called,
3fa173b4 3724the match data are the result of matching REGEXP against a substring
23bb94bb 3725of STRING.
b021ef18 3726
1697159c
DL
3727To replace only the first match (if any), make REGEXP match up to \\'
3728and replace a sub-expression, e.g.
c9bcb507 3729 (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\'\" \"bar\" \" foo foo\" nil nil 1)
088be6fb 3730 => \" bar foo\""
b021ef18
DL
3731
3732 ;; To avoid excessive consing from multiple matches in long strings,
3733 ;; don't just call `replace-match' continually. Walk down the
3734 ;; string looking for matches of REGEXP and building up a (reversed)
3735 ;; list MATCHES. This comprises segments of STRING which weren't
3736 ;; matched interspersed with replacements for segments that were.
08b1f8a1 3737 ;; [For a `large' number of replacements it's more efficient to
b021ef18
DL
3738 ;; operate in a temporary buffer; we can't tell from the function's
3739 ;; args whether to choose the buffer-based implementation, though it
3740 ;; might be reasonable to do so for long enough STRING.]
3741 (let ((l (length string))
3742 (start (or start 0))
3743 matches str mb me)
3744 (save-match-data
3745 (while (and (< start l) (string-match regexp string start))
3746 (setq mb (match-beginning 0)
3747 me (match-end 0))
a9853251
SM
3748 ;; If we matched the empty string, make sure we advance by one char
3749 (when (= me mb) (setq me (min l (1+ mb))))
3750 ;; Generate a replacement for the matched substring.
3751 ;; Operate only on the substring to minimize string consing.
3752 ;; Set up match data for the substring for replacement;
3753 ;; presumably this is likely to be faster than munging the
3754 ;; match data directly in Lisp.
3755 (string-match regexp (setq str (substring string mb me)))
3756 (setq matches
3757 (cons (replace-match (if (stringp rep)
3758 rep
3759 (funcall rep (match-string 0 str)))
3760 fixedcase literal str subexp)
c8227332 3761 (cons (substring string start mb) ; unmatched prefix
a9853251
SM
3762 matches)))
3763 (setq start me))
b021ef18
DL
3764 ;; Reconstruct a string from the pieces.
3765 (setq matches (cons (substring string start l) matches)) ; leftover
3766 (apply #'concat (nreverse matches)))))
a7ed4c2a 3767\f
cb190d7d
SM
3768(defun string-prefix-p (str1 str2 &optional ignore-case)
3769 "Return non-nil if STR1 is a prefix of STR2.
3770If IGNORE-CASE is non-nil, the comparison is done without paying attention
3771to case differences."
3772 (eq t (compare-strings str1 nil nil
3773 str2 0 (length str1) ignore-case)))
3e26a4a2 3774
f635daa1 3775(defun bidi-string-mark-left-to-right (str)
9ccaaa4b 3776 "Return a string that can be safely inserted in left-to-right text.
9ccaaa4b 3777
f635daa1
CY
3778Normally, inserting a string with right-to-left (RTL) script into
3779a buffer may cause some subsequent text to be displayed as part
3780of the RTL segment (usually this affects punctuation characters).
3781This function returns a string which displays as STR but forces
3782subsequent text to be displayed as left-to-right.
9ccaaa4b 3783
f635daa1
CY
3784If STR contains any RTL character, this function returns a string
3785consisting of STR followed by an invisible left-to-right mark
3786\(LRM) character. Otherwise, it returns STR."
3e26a4a2
CY
3787 (unless (stringp str)
3788 (signal 'wrong-type-argument (list 'stringp str)))
f635daa1
CY
3789 (if (string-match "\\cR" str)
3790 (concat str (propertize (string ?\x200e) 'invisible t))
3791 str))
cb190d7d 3792\f
781b4af6
SM
3793;;;; Specifying things to do later.
3794
3795(defun load-history-regexp (file)
3796 "Form a regexp to find FILE in `load-history'.
3797FILE, a string, is described in the function `eval-after-load'."
3798 (if (file-name-absolute-p file)
3799 (setq file (file-truename file)))
3800 (concat (if (file-name-absolute-p file) "\\`" "\\(\\`\\|/\\)")
3801 (regexp-quote file)
3802 (if (file-name-extension file)
3803 ""
3804 ;; Note: regexp-opt can't be used here, since we need to call
3805 ;; this before Emacs has been fully started. 2006-05-21
3806 (concat "\\(" (mapconcat 'regexp-quote load-suffixes "\\|") "\\)?"))
3807 "\\(" (mapconcat 'regexp-quote jka-compr-load-suffixes "\\|")
3808 "\\)?\\'"))
3809
3810(defun load-history-filename-element (file-regexp)
3811 "Get the first elt of `load-history' whose car matches FILE-REGEXP.
3812Return nil if there isn't one."
3813 (let* ((loads load-history)
3814 (load-elt (and loads (car loads))))
3815 (save-match-data
3816 (while (and loads
3817 (or (null (car load-elt))
3818 (not (string-match file-regexp (car load-elt)))))
3819 (setq loads (cdr loads)
3820 load-elt (and loads (car loads)))))
3821 load-elt))
3822
3823(put 'eval-after-load 'lisp-indent-function 1)
3824(defun eval-after-load (file form)
3825 "Arrange that if FILE is loaded, FORM will be run immediately afterwards.
3826If FILE is already loaded, evaluate FORM right now.
de0503df
SM
3827FORM can be an Elisp expression (in which case it's passed to `eval'),
3828or a function (in which case it's passed to `funcall' with no argument).
781b4af6
SM
3829
3830If a matching file is loaded again, FORM will be evaluated again.
3831
3832If FILE is a string, it may be either an absolute or a relative file
fa6bc6fd 3833name, and may have an extension (e.g. \".el\") or may lack one, and
781b4af6 3834additionally may or may not have an extension denoting a compressed
fa6bc6fd 3835format (e.g. \".gz\").
781b4af6
SM
3836
3837When FILE is absolute, this first converts it to a true name by chasing
fa6bc6fd 3838symbolic links. Only a file of this name (see next paragraph regarding
781b4af6
SM
3839extensions) will trigger the evaluation of FORM. When FILE is relative,
3840a file whose absolute true name ends in FILE will trigger evaluation.
3841
3842When FILE lacks an extension, a file name with any extension will trigger
3843evaluation. Otherwise, its extension must match FILE's. A further
fa6bc6fd 3844extension for a compressed format (e.g. \".gz\") on FILE will not affect
781b4af6
SM
3845this name matching.
3846
3847Alternatively, FILE can be a feature (i.e. a symbol), in which case FORM
3848is evaluated at the end of any file that `provide's this feature.
3849If the feature is provided when evaluating code not associated with a
3850file, FORM is evaluated immediately after the provide statement.
3851
3852Usually FILE is just a library name like \"font-lock\" or a feature name
3853like 'font-lock.
3854
3855This function makes or adds to an entry on `after-load-alist'."
de0503df
SM
3856 (declare (compiler-macro
3857 (lambda (whole)
3858 (if (eq 'quote (car-safe form))
3859 ;; Quote with lambda so the compiler can look inside.
3860 `(eval-after-load ,file (lambda () ,(nth 1 form)))
3861 whole))))
781b4af6
SM
3862 ;; Add this FORM into after-load-alist (regardless of whether we'll be
3863 ;; evaluating it now).
3864 (let* ((regexp-or-feature
3865 (if (stringp file)
3866 (setq file (purecopy (load-history-regexp file)))
3867 file))
de0503df
SM
3868 (elt (assoc regexp-or-feature after-load-alist))
3869 (func
3870 (if (functionp form) form
3871 ;; Try to use the "current" lexical/dynamic mode for `form'.
3872 (eval `(lambda () ,form) lexical-binding))))
781b4af6
SM
3873 (unless elt
3874 (setq elt (list regexp-or-feature))
3875 (push elt after-load-alist))
781b4af6
SM
3876 ;; Is there an already loaded file whose name (or `provide' name)
3877 ;; matches FILE?
3878 (prog1 (if (if (stringp file)
3879 (load-history-filename-element regexp-or-feature)
3880 (featurep file))
de0503df
SM
3881 (funcall func))
3882 (let ((delayed-func
3883 (if (not (symbolp regexp-or-feature)) func
3884 ;; For features, the after-load-alist elements get run when
3885 ;; `provide' is called rather than at the end of the file.
3886 ;; So add an indirection to make sure that `func' is really run
3887 ;; "after-load" in case the provide call happens early.
3888 (lambda ()
3889 (if (not load-file-name)
3890 ;; Not being provided from a file, run func right now.
3891 (funcall func)
bf1e6ae8
SM
3892 (let ((lfn load-file-name)
3893 ;; Don't use letrec, because equal (in
3894 ;; add/remove-hook) would get trapped in a cycle.
3895 (fun (make-symbol "eval-after-load-helper")))
3896 (fset fun (lambda (file)
3897 (when (equal file lfn)
3898 (remove-hook 'after-load-functions fun)
3899 (funcall func))))
39eb0cb5 3900 (add-hook 'after-load-functions fun 'append)))))))
de0503df
SM
3901 ;; Add FORM to the element unless it's already there.
3902 (unless (member delayed-func (cdr elt))
3903 (nconc elt (list delayed-func)))))))
3904
3905(defmacro with-eval-after-load (file &rest body)
3906 "Execute BODY after FILE is loaded.
3907FILE is normally a feature name, but it can also be a file name,
3908in case that file does not provide any feature."
3909 (declare (indent 1) (debug t))
3910 `(eval-after-load ,file (lambda () ,@body)))
781b4af6
SM
3911
3912(defvar after-load-functions nil
3913 "Special hook run after loading a file.
3914Each function there is called with a single argument, the absolute
3915name of the file just loaded.")
3916
3917(defun do-after-load-evaluation (abs-file)
3918 "Evaluate all `eval-after-load' forms, if any, for ABS-FILE.
3919ABS-FILE, a string, should be the absolute true name of a file just loaded.
3920This function is called directly from the C code."
3921 ;; Run the relevant eval-after-load forms.
de0503df
SM
3922 (dolist (a-l-element after-load-alist)
3923 (when (and (stringp (car a-l-element))
3924 (string-match-p (car a-l-element) abs-file))
3925 ;; discard the file name regexp
3926 (mapc #'funcall (cdr a-l-element))))
781b4af6
SM
3927 ;; Complain when the user uses obsolete files.
3928 (when (string-match-p "/obsolete/[^/]*\\'" abs-file)
44915370
GM
3929 ;; Maybe we should just use display-warning? This seems yucky...
3930 (let* ((file (file-name-nondirectory abs-file))
3931 (msg (format "Package %s is obsolete!"
3932 (substring file 0
3933 (string-match "\\.elc?\\>" file)))))
3934 ;; Cribbed from cl--compiling-file.
3935 (if (and (boundp 'byte-compile--outbuffer)
3936 (bufferp (symbol-value 'byte-compile--outbuffer))
3937 (equal (buffer-name (symbol-value 'byte-compile--outbuffer))
3938 " *Compiler Output*"))
3939 ;; Don't warn about obsolete files using other obsolete files.
3940 (unless (and (stringp byte-compile-current-file)
3941 (string-match-p "/obsolete/[^/]*\\'"
3942 (expand-file-name
3943 byte-compile-current-file
3944 byte-compile-root-dir)))
3945 (byte-compile-log-warning msg))
3946 (run-with-timer 0 nil
3947 (lambda (msg)
3948 (message "%s" msg)) msg))))
3949
781b4af6
SM
3950 ;; Finally, run any other hook.
3951 (run-hook-with-args 'after-load-functions abs-file))
3952
3953(defun eval-next-after-load (file)
3954 "Read the following input sexp, and run it whenever FILE is loaded.
3955This makes or adds to an entry on `after-load-alist'.
3956FILE should be the name of a library, with no directory name."
3957 (declare (obsolete eval-after-load "23.2"))
3958 (eval-after-load file (read)))
3959
d77974bf 3960\f
781b4af6
SM
3961(defun display-delayed-warnings ()
3962 "Display delayed warnings from `delayed-warnings-list'.
3963Used from `delayed-warnings-hook' (which see)."
3964 (dolist (warning (nreverse delayed-warnings-list))
3965 (apply 'display-warning warning))
3966 (setq delayed-warnings-list nil))
3967
3968(defun collapse-delayed-warnings ()
3969 "Remove duplicates from `delayed-warnings-list'.
3970Collapse identical adjacent warnings into one (plus count).
3971Used from `delayed-warnings-hook' (which see)."
3972 (let ((count 1)
3973 collapsed warning)
3974 (while delayed-warnings-list
3975 (setq warning (pop delayed-warnings-list))
3976 (if (equal warning (car delayed-warnings-list))
3977 (setq count (1+ count))
3978 (when (> count 1)
3979 (setcdr warning (cons (format "%s [%d times]" (cadr warning) count)
3980 (cddr warning)))
3981 (setq count 1))
3982 (push warning collapsed)))
3983 (setq delayed-warnings-list (nreverse collapsed))))
3984
3985;; At present this is only used for Emacs internals.
3986;; Ref http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00085.html
3987(defvar delayed-warnings-hook '(collapse-delayed-warnings
3988 display-delayed-warnings)
3989 "Normal hook run to process and display delayed warnings.
3990By default, this hook contains functions to consolidate the
3991warnings listed in `delayed-warnings-list', display them, and set
3992`delayed-warnings-list' back to nil.")
3993
d77974bf
JB
3994(defun delay-warning (type message &optional level buffer-name)
3995 "Display a delayed warning.
3996Aside from going through `delayed-warnings-list', this is equivalent
3997to `display-warning'."
3998 (push (list type message level buffer-name) delayed-warnings-list))
3999
781b4af6 4000\f
c4f484f2 4001;;;; invisibility specs
df8e73e1 4002
c4f484f2
RS
4003(defun add-to-invisibility-spec (element)
4004 "Add ELEMENT to `buffer-invisibility-spec'.
4005See documentation for `buffer-invisibility-spec' for the kind of elements
4006that can be added."
4007 (if (eq buffer-invisibility-spec t)
4008 (setq buffer-invisibility-spec (list t)))
4009 (setq buffer-invisibility-spec
4010 (cons element buffer-invisibility-spec)))
4011
4012(defun remove-from-invisibility-spec (element)
4013 "Remove ELEMENT from `buffer-invisibility-spec'."
4014 (if (consp buffer-invisibility-spec)
c8227332
VJL
4015 (setq buffer-invisibility-spec
4016 (delete element buffer-invisibility-spec))))
a7ed4c2a 4017\f
c4f484f2
RS
4018;;;; Syntax tables.
4019
4020(defmacro with-syntax-table (table &rest body)
4021 "Evaluate BODY with syntax table of current buffer set to TABLE.
4022The syntax table of the current buffer is saved, BODY is evaluated, and the
4023saved table is restored, even in case of an abnormal exit.
4024Value is what BODY returns."
f291fe60 4025 (declare (debug t) (indent 1))
c4f484f2
RS
4026 (let ((old-table (make-symbol "table"))
4027 (old-buffer (make-symbol "buffer")))
4028 `(let ((,old-table (syntax-table))
4029 (,old-buffer (current-buffer)))
4030 (unwind-protect
4031 (progn
4032 (set-syntax-table ,table)
4033 ,@body)
4034 (save-current-buffer
4035 (set-buffer ,old-buffer)
4036 (set-syntax-table ,old-table))))))
8af7df60 4037
297d863b 4038(defun make-syntax-table (&optional oldtable)
984f718a 4039 "Return a new syntax table.
0764e16f
SM
4040Create a syntax table which inherits from OLDTABLE (if non-nil) or
4041from `standard-syntax-table' otherwise."
4042 (let ((table (make-char-table 'syntax-table nil)))
4043 (set-char-table-parent table (or oldtable (standard-syntax-table)))
4044 table))
31aa282e 4045
e9f13a95 4046(defun syntax-after (pos)
6dcef6ec 4047 "Return the raw syntax descriptor for the char after POS.
9d1ffd5a 4048If POS is outside the buffer's accessible portion, return nil."
e9f13a95 4049 (unless (or (< pos (point-min)) (>= pos (point-max)))
d8ac3d27
SM
4050 (let ((st (if parse-sexp-lookup-properties
4051 (get-char-property pos 'syntax-table))))
4052 (if (consp st) st
4053 (aref (or st (syntax-table)) (char-after pos))))))
e9f13a95 4054
cdd8dc28 4055(defun syntax-class (syntax)
6dcef6ec
CY
4056 "Return the code for the syntax class described by SYNTAX.
4057
4058SYNTAX should be a raw syntax descriptor; the return value is a
4059integer which encodes the corresponding syntax class. See Info
4060node `(elisp)Syntax Table Internals' for a list of codes.
4061
9d1ffd5a
EZ
4062If SYNTAX is nil, return nil."
4063 (and syntax (logand (car syntax) 65535)))
2493767e 4064\f
0b938190
TZ
4065;; Utility motion commands
4066
4067;; Whitespace
4068
4069(defun forward-whitespace (arg)
4070 "Move point to the end of the next sequence of whitespace chars.
4071Each such sequence may be a single newline, or a sequence of
4072consecutive space and/or tab characters.
4073With prefix argument ARG, do it ARG times if positive, or move
4074backwards ARG times if negative."
4075 (interactive "^p")
4076 (if (natnump arg)
4077 (re-search-forward "[ \t]+\\|\n" nil 'move arg)
4078 (while (< arg 0)
4079 (if (re-search-backward "[ \t]+\\|\n" nil 'move)
4080 (or (eq (char-after (match-beginning 0)) ?\n)
4081 (skip-chars-backward " \t")))
4082 (setq arg (1+ arg)))))
4083
4084;; Symbols
4085
4086(defun forward-symbol (arg)
4087 "Move point to the next position that is the end of a symbol.
4088A symbol is any sequence of characters that are in either the
4089word constituent or symbol constituent syntax class.
4090With prefix argument ARG, do it ARG times if positive, or move
4091backwards ARG times if negative."
4092 (interactive "^p")
4093 (if (natnump arg)
4094 (re-search-forward "\\(\\sw\\|\\s_\\)+" nil 'move arg)
4095 (while (< arg 0)
4096 (if (re-search-backward "\\(\\sw\\|\\s_\\)+" nil 'move)
4097 (skip-syntax-backward "w_"))
4098 (setq arg (1+ arg)))))
4099
4100;; Syntax blocks
4101
4102(defun forward-same-syntax (&optional arg)
4103 "Move point past all characters with the same syntax class.
4104With prefix argument ARG, do it ARG times if positive, or move
4105backwards ARG times if negative."
4106 (interactive "^p")
4107 (or arg (setq arg 1))
4108 (while (< arg 0)
4109 (skip-syntax-backward
4110 (char-to-string (char-syntax (char-before))))
4111 (setq arg (1+ arg)))
4112 (while (> arg 0)
4113 (skip-syntax-forward (char-to-string (char-syntax (char-after))))
4114 (setq arg (1- arg))))
4115
4116\f
c4f484f2 4117;;;; Text clones
a13fe4c5 4118
671d5c16
SM
4119(defvar text-clone--maintaining nil)
4120
4121(defun text-clone--maintain (ol1 after beg end &optional _len)
a13fe4c5
SM
4122 "Propagate the changes made under the overlay OL1 to the other clones.
4123This is used on the `modification-hooks' property of text clones."
671d5c16
SM
4124 (when (and after (not undo-in-progress)
4125 (not text-clone--maintaining)
4126 (overlay-start ol1))
a13fe4c5
SM
4127 (let ((margin (if (overlay-get ol1 'text-clone-spreadp) 1 0)))
4128 (setq beg (max beg (+ (overlay-start ol1) margin)))
4129 (setq end (min end (- (overlay-end ol1) margin)))
4130 (when (<= beg end)
4131 (save-excursion
4132 (when (overlay-get ol1 'text-clone-syntax)
4133 ;; Check content of the clone's text.
4134 (let ((cbeg (+ (overlay-start ol1) margin))
4135 (cend (- (overlay-end ol1) margin)))
4136 (goto-char cbeg)
4137 (save-match-data
4138 (if (not (re-search-forward
4139 (overlay-get ol1 'text-clone-syntax) cend t))
4140 ;; Mark the overlay for deletion.
454eb095 4141 (setq end cbeg)
a13fe4c5
SM
4142 (when (< (match-end 0) cend)
4143 ;; Shrink the clone at its end.
4144 (setq end (min end (match-end 0)))
4145 (move-overlay ol1 (overlay-start ol1)
4146 (+ (match-end 0) margin)))
4147 (when (> (match-beginning 0) cbeg)
4148 ;; Shrink the clone at its beginning.
4149 (setq beg (max (match-beginning 0) beg))
4150 (move-overlay ol1 (- (match-beginning 0) margin)
4151 (overlay-end ol1)))))))
4152 ;; Now go ahead and update the clones.
4153 (let ((head (- beg (overlay-start ol1)))
4154 (tail (- (overlay-end ol1) end))
4155 (str (buffer-substring beg end))
4156 (nothing-left t)
671d5c16 4157 (text-clone--maintaining t))
a13fe4c5
SM
4158 (dolist (ol2 (overlay-get ol1 'text-clones))
4159 (let ((oe (overlay-end ol2)))
4160 (unless (or (eq ol1 ol2) (null oe))
4161 (setq nothing-left nil)
4162 (let ((mod-beg (+ (overlay-start ol2) head)))
4163 ;;(overlay-put ol2 'modification-hooks nil)
4164 (goto-char (- (overlay-end ol2) tail))
4165 (unless (> mod-beg (point))
4166 (save-excursion (insert str))
4167 (delete-region mod-beg (point)))
671d5c16 4168 ;;(overlay-put ol2 'modification-hooks '(text-clone--maintain))
a13fe4c5
SM
4169 ))))
4170 (if nothing-left (delete-overlay ol1))))))))
4171
4172(defun text-clone-create (start end &optional spreadp syntax)
4173 "Create a text clone of START...END at point.
4174Text clones are chunks of text that are automatically kept identical:
4175changes done to one of the clones will be immediately propagated to the other.
4176
4177The buffer's content at point is assumed to be already identical to
4178the one between START and END.
4179If SYNTAX is provided it's a regexp that describes the possible text of
4180the clones; the clone will be shrunk or killed if necessary to ensure that
4181its text matches the regexp.
4182If SPREADP is non-nil it indicates that text inserted before/after the
4183clone should be incorporated in the clone."
4184 ;; To deal with SPREADP we can either use an overlay with `nil t' along
4185 ;; with insert-(behind|in-front-of)-hooks or use a slightly larger overlay
4186 ;; (with a one-char margin at each end) with `t nil'.
4187 ;; We opted for a larger overlay because it behaves better in the case
4188 ;; where the clone is reduced to the empty string (we want the overlay to
4189 ;; stay when the clone's content is the empty string and we want to use
4190 ;; `evaporate' to make sure those overlays get deleted when needed).
264ef586 4191 ;;
a13fe4c5
SM
4192 (let* ((pt-end (+ (point) (- end start)))
4193 (start-margin (if (or (not spreadp) (bobp) (<= start (point-min)))
4194 0 1))
4195 (end-margin (if (or (not spreadp)
4196 (>= pt-end (point-max))
4197 (>= start (point-max)))
4198 0 1))
671d5c16 4199 ;; FIXME: Reuse overlays at point to extend dups!
a13fe4c5
SM
4200 (ol1 (make-overlay (- start start-margin) (+ end end-margin) nil t))
4201 (ol2 (make-overlay (- (point) start-margin) (+ pt-end end-margin) nil t))
4202 (dups (list ol1 ol2)))
671d5c16 4203 (overlay-put ol1 'modification-hooks '(text-clone--maintain))
a13fe4c5
SM
4204 (when spreadp (overlay-put ol1 'text-clone-spreadp t))
4205 (when syntax (overlay-put ol1 'text-clone-syntax syntax))
4206 ;;(overlay-put ol1 'face 'underline)
4207 (overlay-put ol1 'evaporate t)
4208 (overlay-put ol1 'text-clones dups)
264ef586 4209 ;;
671d5c16 4210 (overlay-put ol2 'modification-hooks '(text-clone--maintain))
a13fe4c5
SM
4211 (when spreadp (overlay-put ol2 'text-clone-spreadp t))
4212 (when syntax (overlay-put ol2 'text-clone-syntax syntax))
4213 ;;(overlay-put ol2 'face 'underline)
4214 (overlay-put ol2 'evaporate t)
4215 (overlay-put ol2 'text-clones dups)))
c4f484f2
RS
4216\f
4217;;;; Mail user agents.
27c079eb 4218
c4f484f2
RS
4219;; Here we include just enough for other packages to be able
4220;; to define them.
324cd947 4221
27c079eb
SM
4222(defun define-mail-user-agent (symbol composefunc sendfunc
4223 &optional abortfunc hookvar)
4224 "Define a symbol to identify a mail-sending package for `mail-user-agent'.
4225
4226SYMBOL can be any Lisp symbol. Its function definition and/or
4227value as a variable do not matter for this usage; we use only certain
4228properties on its property list, to encode the rest of the arguments.
4229
4230COMPOSEFUNC is program callable function that composes an outgoing
4231mail message buffer. This function should set up the basics of the
4232buffer without requiring user interaction. It should populate the
4233standard mail headers, leaving the `to:' and `subject:' headers blank
4234by default.
4235
4236COMPOSEFUNC should accept several optional arguments--the same
4237arguments that `compose-mail' takes. See that function's documentation.
4238
4239SENDFUNC is the command a user would run to send the message.
4240
4241Optional ABORTFUNC is the command a user would run to abort the
4242message. For mail packages that don't have a separate abort function,
4243this can be `kill-buffer' (the equivalent of omitting this argument).
4244
4245Optional HOOKVAR is a hook variable that gets run before the message
4246is actually sent. Callers that use the `mail-user-agent' may
4247install a hook function temporarily on this hook variable.
4248If HOOKVAR is nil, `mail-send-hook' is used.
4249
4250The properties used on SYMBOL are `composefunc', `sendfunc',
4251`abortfunc', and `hookvar'."
4252 (put symbol 'composefunc composefunc)
4253 (put symbol 'sendfunc sendfunc)
4254 (put symbol 'abortfunc (or abortfunc 'kill-buffer))
4255 (put symbol 'hookvar (or hookvar 'mail-send-hook)))
c4f484f2 4256\f
23ba2705
SM
4257(defvar called-interactively-p-functions nil
4258 "Special hook called to skip special frames in `called-interactively-p'.
4259The functions are called with 3 arguments: (I FRAME1 FRAME2),
4260where FRAME1 is a \"current frame\", FRAME2 is the next frame,
4261I is the index of the frame after FRAME2. It should return nil
4262if those frames don't seem special and otherwise, it should return
4263the number of frames to skip (minus 1).")
4264
31dca772
R
4265(defconst internal--call-interactively (symbol-function 'call-interactively))
4266
23ba2705
SM
4267(defun called-interactively-p (&optional kind)
4268 "Return t if the containing function was called by `call-interactively'.
4269If KIND is `interactive', then only return t if the call was made
4270interactively by the user, i.e. not in `noninteractive' mode nor
4271when `executing-kbd-macro'.
4272If KIND is `any', on the other hand, it will return t for any kind of
4273interactive call, including being called as the binding of a key or
4274from a keyboard macro, even in `noninteractive' mode.
4275
4276This function is very brittle, it may fail to return the intended result when
4277the code is debugged, advised, or instrumented in some form. Some macros and
4278special forms (such as `condition-case') may also sometimes wrap their bodies
4279in a `lambda', so any call to `called-interactively-p' from those bodies will
4280indicate whether that lambda (rather than the surrounding function) was called
4281interactively.
4282
4283Instead of using this function, it is cleaner and more reliable to give your
4284function an extra optional argument whose `interactive' spec specifies
4285non-nil unconditionally (\"p\" is a good way to do this), or via
4286\(not (or executing-kbd-macro noninteractive)).
4287
4288The only known proper use of `interactive' for KIND is in deciding
4289whether to display a helpful message, or how to display it. If you're
4290thinking of using it for any other purpose, it is quite likely that
4291you're making a mistake. Think: what do you want to do when the
4292command is called from a keyboard macro?"
4293 (declare (advertised-calling-convention (kind) "23.1"))
4294 (when (not (and (eq kind 'interactive)
4295 (or executing-kbd-macro noninteractive)))
4296 (let* ((i 1) ;; 0 is the called-interactively-p frame.
4297 frame nextframe
4298 (get-next-frame
4299 (lambda ()
4300 (setq frame nextframe)
56ea7291 4301 (setq nextframe (backtrace-frame i 'called-interactively-p))
23ba2705
SM
4302 ;; (message "Frame %d = %S" i nextframe)
4303 (setq i (1+ i)))))
4304 (funcall get-next-frame) ;; Get the first frame.
4305 (while
4306 ;; FIXME: The edebug and advice handling should be made modular and
4307 ;; provided directly by edebug.el and nadvice.el.
4308 (progn
4309 ;; frame =(backtrace-frame i-2)
4310 ;; nextframe=(backtrace-frame i-1)
4311 (funcall get-next-frame)
4312 ;; `pcase' would be a fairly good fit here, but it sometimes moves
4313 ;; branches within local functions, which then messes up the
4314 ;; `backtrace-frame' data we get,
4315 (or
4316 ;; Skip special forms (from non-compiled code).
4317 (and frame (null (car frame)))
4318 ;; Skip also `interactive-p' (because we don't want to know if
4319 ;; interactive-p was called interactively but if it's caller was)
4320 ;; and `byte-code' (idem; this appears in subexpressions of things
4321 ;; like condition-case, which are wrapped in a separate bytecode
4322 ;; chunk).
4323 ;; FIXME: For lexical-binding code, this is much worse,
4324 ;; because the frames look like "byte-code -> funcall -> #[...]",
4325 ;; which is not a reliable signature.
4326 (memq (nth 1 frame) '(interactive-p 'byte-code))
4327 ;; Skip package-specific stack-frames.
4328 (let ((skip (run-hook-with-args-until-success
4329 'called-interactively-p-functions
4330 i frame nextframe)))
4331 (pcase skip
4332 (`nil nil)
4333 (`0 t)
4334 (_ (setq i (+ i skip -1)) (funcall get-next-frame)))))))
4335 ;; Now `frame' should be "the function from which we were called".
4336 (pcase (cons frame nextframe)
4337 ;; No subr calls `interactive-p', so we can rule that out.
4338 (`((,_ ,(pred (lambda (f) (subrp (indirect-function f)))) . ,_) . ,_) nil)
31dca772
R
4339 ;; In case #<subr call-interactively> without going through the
4340 ;; `call-interactively' symbol (bug#3984).
4341 (`(,_ . (t ,(pred (eq internal--call-interactively)) . ,_)) t)
23ba2705
SM
4342 (`(,_ . (t call-interactively . ,_)) t)))))
4343
4344(defun interactive-p ()
4345 "Return t if the containing function was run directly by user input.
4346This means that the function was called with `call-interactively'
4347\(which includes being called as the binding of a key)
4348and input is currently coming from the keyboard (not a keyboard macro),
4349and Emacs is not running in batch mode (`noninteractive' is nil).
4350
4351The only known proper use of `interactive-p' is in deciding whether to
4352display a helpful message, or how to display it. If you're thinking
4353of using it for any other purpose, it is quite likely that you're
4354making a mistake. Think: what do you want to do when the command is
4355called from a keyboard macro or in batch mode?
4356
4357To test whether your function was called with `call-interactively',
4358either (i) add an extra optional argument and give it an `interactive'
4359spec that specifies non-nil unconditionally (such as \"p\"); or (ii)
4360use `called-interactively-p'."
4361 (declare (obsolete called-interactively-p "23.2"))
4362 (called-interactively-p 'interactive))
4363
c23d55f4
VS
4364(defun internal-push-keymap (keymap symbol)
4365 (let ((map (symbol-value symbol)))
4366 (unless (memq keymap map)
4367 (unless (memq 'add-keymap-witness (symbol-value symbol))
4368 (setq map (make-composed-keymap nil (symbol-value symbol)))
4369 (push 'add-keymap-witness (cdr map))
4370 (set symbol map))
4371 (push keymap (cdr map)))))
4372
4373(defun internal-pop-keymap (keymap symbol)
4374 (let ((map (symbol-value symbol)))
4375 (when (memq keymap map)
4376 (setf (cdr map) (delq keymap (cdr map))))
4377 (let ((tail (cddr map)))
4378 (and (or (null tail) (keymapp tail))
4379 (eq 'add-keymap-witness (nth 1 map))
4380 (set symbol tail)))))
4381
4382(defun set-temporary-overlay-map (map &optional keep-pred on-exit)
e0ea8060
GM
4383 "Set MAP as a temporary keymap taking precedence over most other keymaps.
4384Note that this does NOT take precedence over the \"overriding\" maps
4385`overriding-terminal-local-map' and `overriding-local-map' (or the
4386`keymap' text property). Unlike those maps, if no match for a key is
4387found in MAP, the normal key lookup sequence then continues.
4388
4389Normally, MAP is used only once. If the optional argument
dc26b310 4390KEEP-PRED is t, MAP stays active if a key from MAP is used.
e0ea8060 4391KEEP-PRED can also be a function of no arguments: if it returns
c23d55f4
VS
4392non-nil then MAP stays active.
4393
4394Optional ON-EXIT argument is a function that is called after the
4395deactivation of MAP."
bf1e6ae8
SM
4396 (let ((clearfun (make-symbol "clear-temporary-overlay-map")))
4397 ;; Don't use letrec, because equal (in add/remove-hook) would get trapped
4398 ;; in a cycle.
4399 (fset clearfun
4400 (lambda ()
4401 ;; FIXME: Handle the case of multiple temporary-overlay-maps
4402 ;; E.g. if isearch and C-u both use temporary-overlay-maps, Then
4403 ;; the lifetime of the C-u should be nested within the isearch
4404 ;; overlay, so the pre-command-hook of isearch should be
4405 ;; suspended during the C-u one so we don't exit isearch just
4406 ;; because we hit 1 after C-u and that 1 exits isearch whereas it
4407 ;; doesn't exit C-u.
258ab3bc
SM
4408 (with-demoted-errors "set-temporary-overlay-map PCH: %S"
4409 (unless (cond ((null keep-pred) nil)
4410 ((eq t keep-pred)
4411 (eq this-command
4412 (lookup-key map (this-command-keys-vector))))
4413 (t (funcall keep-pred)))
4414 (internal-pop-keymap map 'overriding-terminal-local-map)
4415 (remove-hook 'pre-command-hook clearfun)
4416 (when on-exit (funcall on-exit))))))
c23d55f4
VS
4417 (add-hook 'pre-command-hook clearfun)
4418 (internal-push-keymap map 'overriding-terminal-local-map)))
f95e9344 4419
c4f484f2 4420;;;; Progress reporters.
b4329caa
EZ
4421
4422;; Progress reporter has the following structure:
4423;;
4424;; (NEXT-UPDATE-VALUE . [NEXT-UPDATE-TIME
4425;; MIN-VALUE
4426;; MAX-VALUE
4427;; MESSAGE
4428;; MIN-CHANGE
4429;; MIN-TIME])
4430;;
ee7683eb 4431;; This weirdness is for optimization reasons: we want
b4329caa
EZ
4432;; `progress-reporter-update' to be as fast as possible, so
4433;; `(car reporter)' is better than `(aref reporter 0)'.
4434;;
4435;; NEXT-UPDATE-TIME is a float. While `float-time' loses a couple
4436;; digits of precision, it doesn't really matter here. On the other
4437;; hand, it greatly simplifies the code.
4438
9326ba26 4439(defsubst progress-reporter-update (reporter &optional value)
c85152fc 4440 "Report progress of an operation in the echo area.
9326ba26
CY
4441REPORTER should be the result of a call to `make-progress-reporter'.
4442
4443If REPORTER is a numerical progress reporter---i.e. if it was
4444 made using non-nil MIN-VALUE and MAX-VALUE arguments to
4445 `make-progress-reporter'---then VALUE should be a number between
4446 MIN-VALUE and MAX-VALUE.
c85152fc 4447
9326ba26 4448If REPORTER is a non-numerical reporter, VALUE should be nil.
b4329caa 4449
9326ba26
CY
4450This function is relatively inexpensive. If the change since
4451last update is too small or insufficient time has passed, it does
4452nothing."
4453 (when (or (not (numberp value)) ; For pulsing reporter
4454 (>= value (car reporter))) ; For numerical reporter
4455 (progress-reporter-do-update reporter value)))
4456
4457(defun make-progress-reporter (message &optional min-value max-value
4458 current-value min-change min-time)
4459 "Return progress reporter object for use with `progress-reporter-update'.
4460
4461MESSAGE is shown in the echo area, with a status indicator
4462appended to the end. When you call `progress-reporter-done', the
4463word \"done\" is printed after the MESSAGE. You can change the
4464MESSAGE of an existing progress reporter by calling
4465`progress-reporter-force-update'.
4466
4467MIN-VALUE and MAX-VALUE, if non-nil, are starting (0% complete)
4468and final (100% complete) states of operation; the latter should
4469be larger. In this case, the status message shows the percentage
4470progress.
4471
4472If MIN-VALUE and/or MAX-VALUE is omitted or nil, the status
4473message shows a \"spinning\", non-numeric indicator.
4474
4475Optional CURRENT-VALUE is the initial progress; the default is
4476MIN-VALUE.
4477Optional MIN-CHANGE is the minimal change in percents to report;
4478the default is 1%.
4479CURRENT-VALUE and MIN-CHANGE do not have any effect if MIN-VALUE
4480and/or MAX-VALUE are nil.
4481
4482Optional MIN-TIME specifies the minimum interval time between
4483echo area updates (default is 0.2 seconds.) If the function
4484`float-time' is not present, time is not tracked at all. If the
4485OS is not capable of measuring fractions of seconds, this
4486parameter is effectively rounded up."
ea9fafe0
SM
4487 (when (string-match "[[:alnum:]]\\'" message)
4488 (setq message (concat message "...")))
b4329caa
EZ
4489 (unless min-time
4490 (setq min-time 0.2))
4491 (let ((reporter
9326ba26
CY
4492 ;; Force a call to `message' now
4493 (cons (or min-value 0)
b4329caa
EZ
4494 (vector (if (and (fboundp 'float-time)
4495 (>= min-time 0.02))
4496 (float-time) nil)
4497 min-value
4498 max-value
4499 message
4500 (if min-change (max (min min-change 50) 1) 1)
4501 min-time))))
4502 (progress-reporter-update reporter (or current-value min-value))
4503 reporter))
4504
9326ba26 4505(defun progress-reporter-force-update (reporter &optional value new-message)
b4329caa
EZ
4506 "Report progress of an operation in the echo area unconditionally.
4507
9326ba26
CY
4508The first two arguments are the same as in `progress-reporter-update'.
4509NEW-MESSAGE, if non-nil, sets a new message for the reporter."
b4329caa
EZ
4510 (let ((parameters (cdr reporter)))
4511 (when new-message
4512 (aset parameters 3 new-message))
4513 (when (aref parameters 0)
4514 (aset parameters 0 (float-time)))
4515 (progress-reporter-do-update reporter value)))
4516
9326ba26
CY
4517(defvar progress-reporter--pulse-characters ["-" "\\" "|" "/"]
4518 "Characters to use for pulsing progress reporters.")
4519
b4329caa
EZ
4520(defun progress-reporter-do-update (reporter value)
4521 (let* ((parameters (cdr reporter))
9326ba26 4522 (update-time (aref parameters 0))
b4329caa
EZ
4523 (min-value (aref parameters 1))
4524 (max-value (aref parameters 2))
9326ba26 4525 (text (aref parameters 3))
b4329caa
EZ
4526 (current-time (float-time))
4527 (enough-time-passed
4528 ;; See if enough time has passed since the last update.
4529 (or (not update-time)
4530 (when (>= current-time update-time)
4531 ;; Calculate time for the next update
4532 (aset parameters 0 (+ update-time (aref parameters 5)))))))
9326ba26
CY
4533 (cond ((and min-value max-value)
4534 ;; Numerical indicator
4535 (let* ((one-percent (/ (- max-value min-value) 100.0))
4536 (percentage (if (= max-value min-value)
4537 0
4538 (truncate (/ (- value min-value)
4539 one-percent)))))
4540 ;; Calculate NEXT-UPDATE-VALUE. If we are not printing
4541 ;; message because not enough time has passed, use 1
4542 ;; instead of MIN-CHANGE. This makes delays between echo
4543 ;; area updates closer to MIN-TIME.
4544 (setcar reporter
4545 (min (+ min-value (* (+ percentage
4546 (if enough-time-passed
4547 ;; MIN-CHANGE
4548 (aref parameters 4)
4549 1))
4550 one-percent))
4551 max-value))
4552 (when (integerp value)
4553 (setcar reporter (ceiling (car reporter))))
4554 ;; Only print message if enough time has passed
4555 (when enough-time-passed
4556 (if (> percentage 0)
4557 (message "%s%d%%" text percentage)
4558 (message "%s" text)))))
4559 ;; Pulsing indicator
4560 (enough-time-passed
4561 (let ((index (mod (1+ (car reporter)) 4))
4562 (message-log-max nil))
4563 (setcar reporter index)
4564 (message "%s %s"
4565 text
4566 (aref progress-reporter--pulse-characters
4567 index)))))))
b4329caa
EZ
4568
4569(defun progress-reporter-done (reporter)
4570 "Print reporter's message followed by word \"done\" in echo area."
4571 (message "%sdone" (aref (cdr reporter) 3)))
4572
aa56124a
SM
4573(defmacro dotimes-with-progress-reporter (spec message &rest body)
4574 "Loop a certain number of times and report progress in the echo area.
4575Evaluate BODY with VAR bound to successive integers running from
45760, inclusive, to COUNT, exclusive. Then evaluate RESULT to get
4577the return value (nil if RESULT is omitted).
4578
4579At each iteration MESSAGE followed by progress percentage is
4580printed in the echo area. After the loop is finished, MESSAGE
4581followed by word \"done\" is printed. This macro is a
4582convenience wrapper around `make-progress-reporter' and friends.
4583
4584\(fn (VAR COUNT [RESULT]) MESSAGE BODY...)"
4585 (declare (indent 2) (debug ((symbolp form &optional form) form body)))
4586 (let ((temp (make-symbol "--dotimes-temp--"))
4587 (temp2 (make-symbol "--dotimes-temp2--"))
4588 (start 0)
4589 (end (nth 1 spec)))
4590 `(let ((,temp ,end)
4591 (,(car spec) ,start)
4592 (,temp2 (make-progress-reporter ,message ,start ,end)))
4593 (while (< ,(car spec) ,temp)
4594 ,@body
4595 (progress-reporter-update ,temp2
4596 (setq ,(car spec) (1+ ,(car spec)))))
4597 (progress-reporter-done ,temp2)
4598 nil ,@(cdr (cdr spec)))))
ca548b00 4599
e9454757 4600\f
c4f484f2 4601;;;; Comparing version strings.
e9454757 4602
2f7f4bee 4603(defconst version-separator "."
b29f5b7b 4604 "Specify the string used to separate the version elements.
e9454757
VJL
4605
4606Usually the separator is \".\", but it can be any other string.")
4607
4608
2f7f4bee 4609(defconst version-regexp-alist
b29f5b7b
VJL
4610 '(("^[-_+ ]?alpha$" . -3)
4611 ("^[-_+]$" . -3) ; treat "1.2.3-20050920" and "1.2-3" as alpha releases
4612 ("^[-_+ ]cvs$" . -3) ; treat "1.2.3-CVS" as alpha release
4613 ("^[-_+ ]?beta$" . -2)
e2046ecf 4614 ("^[-_+ ]?\\(pre\\|rcc\\)$" . -1))
b29f5b7b 4615 "Specify association between non-numeric version and its priority.
e9454757
VJL
4616
4617This association is used to handle version string like \"1.0pre2\",
4618\"0.9alpha1\", etc. It's used by `version-to-list' (which see) to convert the
94785022 4619non-numeric part of a version string to an integer. For example:
e9454757
VJL
4620
4621 String Version Integer List Version
4622 \"1.0pre2\" (1 0 -1 2)
4623 \"1.0PRE2\" (1 0 -1 2)
4624 \"22.8beta3\" (22 8 -2 3)
c71abb54 4625 \"22.8 Beta3\" (22 8 -2 3)
e9454757
VJL
4626 \"0.9alpha1\" (0 9 -3 1)
4627 \"0.9AlphA1\" (0 9 -3 1)
c71abb54 4628 \"0.9 alpha\" (0 9 -3)
e9454757
VJL
4629
4630Each element has the following form:
4631
4632 (REGEXP . PRIORITY)
4633
4634Where:
4635
4636REGEXP regexp used to match non-numeric part of a version string.
94785022 4637 It should begin with the `^' anchor and end with a `$' to
d74a5c91
EZ
4638 prevent false hits. Letter-case is ignored while matching
4639 REGEXP.
e9454757 4640
94785022 4641PRIORITY a negative integer specifying non-numeric priority of REGEXP.")
e9454757
VJL
4642
4643
4644(defun version-to-list (ver)
94785022 4645 "Convert version string VER into a list of integers.
e9454757
VJL
4646
4647The version syntax is given by the following EBNF:
4648
4649 VERSION ::= NUMBER ( SEPARATOR NUMBER )*.
4650
4651 NUMBER ::= (0|1|2|3|4|5|6|7|8|9)+.
4652
4653 SEPARATOR ::= `version-separator' (which see)
4654 | `version-regexp-alist' (which see).
4655
d74a5c91
EZ
4656The NUMBER part is optional if SEPARATOR is a match for an element
4657in `version-regexp-alist'.
4658
94785022 4659Examples of valid version syntax:
e9454757 4660
d74a5c91 4661 1.0pre2 1.0.7.5 22.8beta3 0.9alpha1 6.9.30Beta
e9454757 4662
94785022 4663Examples of invalid version syntax:
e9454757
VJL
4664
4665 1.0prepre2 1.0..7.5 22.8X3 alpha3.2 .5
4666
94785022 4667Examples of version conversion:
e9454757 4668
94785022 4669 Version String Version as a List of Integers
e9454757
VJL
4670 \"1.0.7.5\" (1 0 7 5)
4671 \"1.0pre2\" (1 0 -1 2)
4672 \"1.0PRE2\" (1 0 -1 2)
4673 \"22.8beta3\" (22 8 -2 3)
4674 \"22.8Beta3\" (22 8 -2 3)
4675 \"0.9alpha1\" (0 9 -3 1)
4676 \"0.9AlphA1\" (0 9 -3 1)
4677 \"0.9alpha\" (0 9 -3)
4678
4679See documentation for `version-separator' and `version-regexp-alist'."
c71abb54 4680 (or (and (stringp ver) (> (length ver) 0))
e9454757 4681 (error "Invalid version string: '%s'" ver))
c71abb54
KS
4682 ;; Change .x.y to 0.x.y
4683 (if (and (>= (length ver) (length version-separator))
4684 (string-equal (substring ver 0 (length version-separator))
c8227332 4685 version-separator))
c71abb54 4686 (setq ver (concat "0" ver)))
e9454757
VJL
4687 (save-match-data
4688 (let ((i 0)
d74a5c91 4689 (case-fold-search t) ; ignore case in matching
e9454757
VJL
4690 lst s al)
4691 (while (and (setq s (string-match "[0-9]+" ver i))
4692 (= s i))
4693 ;; handle numeric part
4694 (setq lst (cons (string-to-number (substring ver i (match-end 0)))
4695 lst)
4696 i (match-end 0))
4697 ;; handle non-numeric part
4698 (when (and (setq s (string-match "[^0-9]+" ver i))
4699 (= s i))
4700 (setq s (substring ver i (match-end 0))
4701 i (match-end 0))
4702 ;; handle alpha, beta, pre, etc. separator
4703 (unless (string= s version-separator)
4704 (setq al version-regexp-alist)
4705 (while (and al (not (string-match (caar al) s)))
4706 (setq al (cdr al)))
e2046ecf
CY
4707 (cond (al
4708 (push (cdar al) lst))
b29f5b7b 4709 ;; Convert 22.3a to 22.3.1, 22.3b to 22.3.2, etc.
e2046ecf
CY
4710 ((string-match "^[-_+ ]?\\([a-zA-Z]\\)$" s)
4711 (push (- (aref (downcase (match-string 1 s)) 0) ?a -1)
4712 lst))
4713 (t (error "Invalid version syntax: '%s'" ver))))))
e9454757
VJL
4714 (if (null lst)
4715 (error "Invalid version syntax: '%s'" ver)
4716 (nreverse lst)))))
4717
4718
ca548b00 4719(defun version-list-< (l1 l2)
94785022 4720 "Return t if L1, a list specification of a version, is lower than L2.
e9454757 4721
94785022
EZ
4722Note that a version specified by the list (1) is equal to (1 0),
4723\(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
4724Also, a version given by the list (1) is higher than (1 -1), which in
4725turn is higher than (1 -2), which is higher than (1 -3)."
e9454757
VJL
4726 (while (and l1 l2 (= (car l1) (car l2)))
4727 (setq l1 (cdr l1)
4728 l2 (cdr l2)))
4729 (cond
4730 ;; l1 not null and l2 not null
4731 ((and l1 l2) (< (car l1) (car l2)))
4732 ;; l1 null and l2 null ==> l1 length = l2 length
4733 ((and (null l1) (null l2)) nil)
4734 ;; l1 not null and l2 null ==> l1 length > l2 length
ca548b00 4735 (l1 (< (version-list-not-zero l1) 0))
e9454757 4736 ;; l1 null and l2 not null ==> l2 length > l1 length
ca548b00 4737 (t (< 0 (version-list-not-zero l2)))))
e9454757
VJL
4738
4739
ca548b00 4740(defun version-list-= (l1 l2)
94785022 4741 "Return t if L1, a list specification of a version, is equal to L2.
e9454757 4742
94785022
EZ
4743Note that a version specified by the list (1) is equal to (1 0),
4744\(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
4745Also, a version given by the list (1) is higher than (1 -1), which in
4746turn is higher than (1 -2), which is higher than (1 -3)."
e9454757
VJL
4747 (while (and l1 l2 (= (car l1) (car l2)))
4748 (setq l1 (cdr l1)
4749 l2 (cdr l2)))
4750 (cond
4751 ;; l1 not null and l2 not null
4752 ((and l1 l2) nil)
4753 ;; l1 null and l2 null ==> l1 length = l2 length
4754 ((and (null l1) (null l2)))
4755 ;; l1 not null and l2 null ==> l1 length > l2 length
ca548b00 4756 (l1 (zerop (version-list-not-zero l1)))
e9454757 4757 ;; l1 null and l2 not null ==> l2 length > l1 length
ca548b00 4758 (t (zerop (version-list-not-zero l2)))))
e9454757
VJL
4759
4760
ca548b00 4761(defun version-list-<= (l1 l2)
94785022 4762 "Return t if L1, a list specification of a version, is lower or equal to L2.
e9454757
VJL
4763
4764Note that integer list (1) is equal to (1 0), (1 0 0), (1 0 0 0),
b29f5b7b 4765etc. That is, the trailing zeroes are insignificant. Also, integer
e9454757
VJL
4766list (1) is greater than (1 -1) which is greater than (1 -2)
4767which is greater than (1 -3)."
4768 (while (and l1 l2 (= (car l1) (car l2)))
4769 (setq l1 (cdr l1)
4770 l2 (cdr l2)))
4771 (cond
4772 ;; l1 not null and l2 not null
4773 ((and l1 l2) (< (car l1) (car l2)))
4774 ;; l1 null and l2 null ==> l1 length = l2 length
4775 ((and (null l1) (null l2)))
4776 ;; l1 not null and l2 null ==> l1 length > l2 length
ca548b00 4777 (l1 (<= (version-list-not-zero l1) 0))
e9454757 4778 ;; l1 null and l2 not null ==> l2 length > l1 length
ca548b00 4779 (t (<= 0 (version-list-not-zero l2)))))
e9454757 4780
ca548b00 4781(defun version-list-not-zero (lst)
94785022 4782 "Return the first non-zero element of LST, which is a list of integers.
e9454757 4783
94785022 4784If all LST elements are zeros or LST is nil, return zero."
ca548b00
KS
4785 (while (and lst (zerop (car lst)))
4786 (setq lst (cdr lst)))
4787 (if lst
4788 (car lst)
4789 ;; there is no element different of zero
4790 0))
e9454757
VJL
4791
4792
4793(defun version< (v1 v2)
94785022 4794 "Return t if version V1 is lower (older) than V2.
e9454757
VJL
4795
4796Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
94785022
EZ
4797etc. That is, the trailing \".0\"s are insignificant. Also, version
4798string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
7e5bfb8f
EZ
4799which is higher than \"1alpha\". Also, \"-CVS\" and \"-NNN\" are treated
4800as alpha versions."
ca548b00 4801 (version-list-< (version-to-list v1) (version-to-list v2)))
e9454757
VJL
4802
4803
4804(defun version<= (v1 v2)
94785022 4805 "Return t if version V1 is lower (older) than or equal to V2.
e9454757
VJL
4806
4807Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
b29f5b7b 4808etc. That is, the trailing \".0\"s are insignificant. Also, version
94785022 4809string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
7e5bfb8f
EZ
4810which is higher than \"1alpha\". Also, \"-CVS\" and \"-NNN\" are treated
4811as alpha versions."
ca548b00 4812 (version-list-<= (version-to-list v1) (version-to-list v2)))
e9454757 4813
ca548b00
KS
4814(defun version= (v1 v2)
4815 "Return t if version V1 is equal to V2.
e9454757 4816
ca548b00 4817Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
b29f5b7b 4818etc. That is, the trailing \".0\"s are insignificant. Also, version
94785022 4819string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
7e5bfb8f
EZ
4820which is higher than \"1alpha\". Also, \"-CVS\" and \"-NNN\" are treated
4821as alpha versions."
ca548b00 4822 (version-list-= (version-to-list v1) (version-to-list v2)))
e9454757 4823
18d433a7
CY
4824\f
4825;;; Misc.
a3c20c83
DN
4826(defconst menu-bar-separator '("--")
4827 "Separator for menus.")
18d433a7
CY
4828
4829;; The following statement ought to be in print.c, but `provide' can't
4830;; be used there.
5612fd08 4831;; http://lists.gnu.org/archive/html/emacs-devel/2009-08/msg00236.html
18d433a7
CY
4832(when (hash-table-p (car (read-from-string
4833 (prin1-to-string (make-hash-table)))))
4834 (provide 'hashtable-print-readable))
4835
629ecae3
EZ
4836;; This is used in lisp/Makefile.in and in leim/Makefile.in to
4837;; generate file names for autoloads, custom-deps, and finder-data.
bc1dd793 4838(defun unmsys--file-name (file)
a052ef3b 4839 "Produce the canonical file name for FILE from its MSYS form.
1c0977a9
EZ
4840
4841On systems other than MS-Windows, just returns FILE.
4842On MS-Windows, converts /d/foo/bar form of file names
4843passed by MSYS Make into d:/foo/bar that Emacs can grok.
4844
a052ef3b 4845This function is called from lisp/Makefile and leim/Makefile."
1c0977a9
EZ
4846 (when (and (eq system-type 'windows-nt)
4847 (string-match "\\`/[a-zA-Z]/" file))
4848 (setq file (concat (substring file 1 2) ":" (substring file 2))))
4849 file)
4850
4851
630cc463 4852;;; subr.el ends here