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