Document atomic windows in Elisp manual (Bug#18170)
[emacs.git] / lisp / subr.el
blob8a1792ad8b78b2ac485b6e9839ecb22f4d4c24f2
1 ;;; subr.el --- basic lisp subroutines for Emacs -*- lexical-binding:t -*-
3 ;; Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2016 Free Software
4 ;; Foundation, Inc.
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: internal
8 ;; Package: emacs
10 ;; This file is part of GNU Emacs.
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.
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.
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/>.
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.
29 ;; declare-function's args use &rest, not &optional, for compatibility
30 ;; with byte-compile-macroexpand-declare-function.
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.
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.
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.
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'.
57 Note that for the purposes of `check-declare', this statement
58 must be the first non-whitespace on a line.
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)
67 ;;;; Basic Lisp macros.
69 (defalias 'not 'null)
70 (defalias 'sxhash 'sxhash-equal)
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")))
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)
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)))
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.
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.
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)))
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))
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))))
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))))
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))))))
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))))))))
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.
182 \(fn COND BODY...)"
183 (declare (indent 1) (debug t))
184 (list 'if cond (cons 'progn body)))
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.
191 \(fn COND BODY...)"
192 (declare (indent 1) (debug t))
193 (cons 'if (cons cond (cons nil body))))
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.
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))))))))
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).
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))))))
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.
270 The possible values of SPECS are specified by
271 `defun-declarations-alist' and `macro-declarations-alist'.
273 For more information, see info node `(elisp)Declare Form'."
274 ;; FIXME: edebug spec should pay attention to defun-declarations-alist.
275 nil)
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)))
285 ;;;; Basic Lisp functions.
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)
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.
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))))
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.
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))))
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))))
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)))
348 ;;;; List functions.
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))
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)))
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)))
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)))
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)))
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)))
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))))
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)))
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))))
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))
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)
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)
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.
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))))
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)))
525 ;;;; Various list-search functions.
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.
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))
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))
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))
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)
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)
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)
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.
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)))
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))))
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))
631 ;;;; Keymap support.
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)
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)))
657 ;; Prevent the \{...} documentation construct
658 ;; from mentioning keys that run this command.
659 (put 'undefined 'suppress-keymap t)
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))))))
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))
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).
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.
699 Bindings are always added before any inherited map.
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)))))
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)
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)))))
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.
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))))
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)))))
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)))
840 (put 'keyboard-translate-table 'char-table-extra-slots 0)
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))
851 ;;;; Key binding commands.
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.
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))
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.
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)))
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))
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)
906 ;;;; substitute-key-definition and its subroutines.
908 (defvar key-substitution-in-progress nil
909 "Used internally by `substitute-key-definition'.")
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.
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
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)))
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)))))
980 ;;;; The global keymap tree.
982 ;; global-map, esc-map, and ctl-x-map have their values set up in
983 ;; keymap.c; we just give them docstrings here.
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.")
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.")
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.")
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)
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)
1009 ;;;; Event manipulation functions.
1011 (defconst listify-key-sequence-1 (logior 128 ?\M-\C-@))
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)))
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))))))
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))))
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)))))
1083 (defsubst mouse-movement-p (object)
1084 "Return non-nil if OBJECT is a mouse movement event."
1085 (eq (car-safe object) 'mouse-movement))
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)))
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.
1097 The following accessor functions are used to access the elements
1098 of the position:
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.
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))))
1120 (defun event-end (event)
1121 "Return the ending position of EVENT.
1122 EVENT should be a click, drag, or key press event.
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))))
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))
1134 ;;;; Extracting fields of the positions in an event.
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.
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))
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)))
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)))))
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))))
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))
1192 (declare-function scroll-bar-scale "scroll-bar" (num-denom whole))
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))
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))))))))
1233 (defun posn-actual-col-row (position)
1234 "Return the window row number in POSITION and character number in that row.
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.
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))
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))
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)))
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))
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)))
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))
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))
1291 ;;;; Obsolescent names for functions.
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")
1300 (make-obsolete 'forward-point "use (+ (point) N) instead." "23.1")
1301 (make-obsolete 'buffer-has-markers-at nil "24.3")
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")
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))))
1317 (defun makehash (&optional test)
1318 (declare (obsolete make-hash-table "22.1"))
1319 (make-hash-table :test (or test 'eql)))
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))
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")
1339 ;;;; Obsolescence declarations for variables, and aliases.
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.
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")
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")
1388 (make-obsolete 'process-filter-multibyte-p nil "23.1")
1389 (make-obsolete 'set-process-filter-multibyte nil "23.1")
1391 (make-obsolete-variable 'command-debug-status
1392 "expect it to be removed in a future version." "25.2")
1394 ;; Lisp manual only updated in 22.1.
1395 (define-obsolete-variable-alias 'executing-macro 'executing-kbd-macro
1396 "before 19.34")
1398 (define-obsolete-variable-alias 'x-lost-selection-hooks
1399 'x-lost-selection-functions "22.1")
1400 (define-obsolete-variable-alias 'x-sent-selection-hooks
1401 'x-sent-selection-functions "22.1")
1403 ;; This was introduced in 21.4 for pre-unicode unification. That
1404 ;; usage was rendered obsolete in 23.1 which uses Unicode internally.
1405 ;; Other uses are possible, so this variable is not _really_ obsolete,
1406 ;; but Stefan insists to mark it so.
1407 (make-obsolete-variable 'translation-table-for-input nil "23.1")
1409 (defvaralias 'messages-buffer-max-lines 'message-log-max)
1411 ;;;; Alternate names for functions - these are not being phased out.
1413 (defalias 'send-string 'process-send-string)
1414 (defalias 'send-region 'process-send-region)
1415 (defalias 'string= 'string-equal)
1416 (defalias 'string< 'string-lessp)
1417 (defalias 'string> 'string-greaterp)
1418 (defalias 'move-marker 'set-marker)
1419 (defalias 'rplaca 'setcar)
1420 (defalias 'rplacd 'setcdr)
1421 (defalias 'beep 'ding) ;preserve lingual purity
1422 (defalias 'indent-to-column 'indent-to)
1423 (defalias 'backward-delete-char 'delete-backward-char)
1424 (defalias 'search-forward-regexp (symbol-function 're-search-forward))
1425 (defalias 'search-backward-regexp (symbol-function 're-search-backward))
1426 (defalias 'int-to-string 'number-to-string)
1427 (defalias 'store-match-data 'set-match-data)
1428 (defalias 'chmod 'set-file-modes)
1429 (defalias 'mkdir 'make-directory)
1430 ;; These are the XEmacs names:
1431 (defalias 'point-at-eol 'line-end-position)
1432 (defalias 'point-at-bol 'line-beginning-position)
1434 (defalias 'user-original-login-name 'user-login-name)
1437 ;;;; Hook manipulation functions.
1439 (defun add-hook (hook function &optional append local)
1440 "Add to the value of HOOK the function FUNCTION.
1441 FUNCTION is not added if already present.
1442 FUNCTION is added (if necessary) at the beginning of the hook list
1443 unless the optional argument APPEND is non-nil, in which case
1444 FUNCTION is added at the end.
1446 The optional fourth argument, LOCAL, if non-nil, says to modify
1447 the hook's buffer-local value rather than its global value.
1448 This makes the hook buffer-local, and it makes t a member of the
1449 buffer-local value. That acts as a flag to run the hook
1450 functions of the global value as well as in the local value.
1452 HOOK should be a symbol, and FUNCTION may be any valid function. If
1453 HOOK is void, it is first set to nil. If HOOK's value is a single
1454 function, it is changed to a list of functions."
1455 (or (boundp hook) (set hook nil))
1456 (or (default-boundp hook) (set-default hook nil))
1457 (if local (unless (local-variable-if-set-p hook)
1458 (set (make-local-variable hook) (list t)))
1459 ;; Detect the case where make-local-variable was used on a hook
1460 ;; and do what we used to do.
1461 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook)))
1462 (setq local t)))
1463 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
1464 ;; If the hook value is a single function, turn it into a list.
1465 (when (or (not (listp hook-value)) (functionp hook-value))
1466 (setq hook-value (list hook-value)))
1467 ;; Do the actual addition if necessary
1468 (unless (member function hook-value)
1469 (when (stringp function)
1470 (setq function (purecopy function)))
1471 (setq hook-value
1472 (if append
1473 (append hook-value (list function))
1474 (cons function hook-value))))
1475 ;; Set the actual variable
1476 (if local
1477 (progn
1478 ;; If HOOK isn't a permanent local,
1479 ;; but FUNCTION wants to survive a change of modes,
1480 ;; mark HOOK as partially permanent.
1481 (and (symbolp function)
1482 (get function 'permanent-local-hook)
1483 (not (get hook 'permanent-local))
1484 (put hook 'permanent-local 'permanent-local-hook))
1485 (set hook hook-value))
1486 (set-default hook hook-value))))
1488 (defun remove-hook (hook function &optional local)
1489 "Remove from the value of HOOK the function FUNCTION.
1490 HOOK should be a symbol, and FUNCTION may be any valid function. If
1491 FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
1492 list of hooks to run in HOOK, then nothing is done. See `add-hook'.
1494 The optional third argument, LOCAL, if non-nil, says to modify
1495 the hook's buffer-local value rather than its default value."
1496 (or (boundp hook) (set hook nil))
1497 (or (default-boundp hook) (set-default hook nil))
1498 ;; Do nothing if LOCAL is t but this hook has no local binding.
1499 (unless (and local (not (local-variable-p hook)))
1500 ;; Detect the case where make-local-variable was used on a hook
1501 ;; and do what we used to do.
1502 (when (and (local-variable-p hook)
1503 (not (and (consp (symbol-value hook))
1504 (memq t (symbol-value hook)))))
1505 (setq local t))
1506 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
1507 ;; Remove the function, for both the list and the non-list cases.
1508 (if (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
1509 (if (equal hook-value function) (setq hook-value nil))
1510 (setq hook-value (delete function (copy-sequence hook-value))))
1511 ;; If the function is on the global hook, we need to shadow it locally
1512 ;;(when (and local (member function (default-value hook))
1513 ;; (not (member (cons 'not function) hook-value)))
1514 ;; (push (cons 'not function) hook-value))
1515 ;; Set the actual variable
1516 (if (not local)
1517 (set-default hook hook-value)
1518 (if (equal hook-value '(t))
1519 (kill-local-variable hook)
1520 (set hook hook-value))))))
1522 (defmacro letrec (binders &rest body)
1523 "Bind variables according to BINDERS then eval BODY.
1524 The value of the last form in BODY is returned.
1525 Each element of BINDERS is a list (SYMBOL VALUEFORM) which binds
1526 SYMBOL to the value of VALUEFORM.
1527 All symbols are bound before the VALUEFORMs are evalled."
1528 ;; Only useful in lexical-binding mode.
1529 ;; As a special-form, we could implement it more efficiently (and cleanly,
1530 ;; making the vars actually unbound during evaluation of the binders).
1531 (declare (debug let) (indent 1))
1532 `(let ,(mapcar #'car binders)
1533 ,@(mapcar (lambda (binder) `(setq ,@binder)) binders)
1534 ,@body))
1536 (defmacro with-wrapper-hook (hook args &rest body)
1537 "Run BODY, using wrapper functions from HOOK with additional ARGS.
1538 HOOK is an abnormal hook. Each hook function in HOOK \"wraps\"
1539 around the preceding ones, like a set of nested `around' advices.
1541 Each hook function should accept an argument list consisting of a
1542 function FUN, followed by the additional arguments in ARGS.
1544 The first hook function in HOOK is passed a FUN that, if it is called
1545 with arguments ARGS, performs BODY (i.e., the default operation).
1546 The FUN passed to each successive hook function is defined based
1547 on the preceding hook functions; if called with arguments ARGS,
1548 it does what the `with-wrapper-hook' call would do if the
1549 preceding hook functions were the only ones present in HOOK.
1551 Each hook function may call its FUN argument as many times as it wishes,
1552 including never. In that case, such a hook function acts to replace
1553 the default definition altogether, and any preceding hook functions.
1554 Of course, a subsequent hook function may do the same thing.
1556 Each hook function definition is used to construct the FUN passed
1557 to the next hook function, if any. The last (or \"outermost\")
1558 FUN is then called once."
1559 (declare (indent 2) (debug (form sexp body))
1560 (obsolete "use a <foo>-function variable modified by `add-function'."
1561 "24.4"))
1562 `(subr--with-wrapper-hook-no-warnings ,hook ,args ,@body))
1564 (defmacro subr--with-wrapper-hook-no-warnings (hook args &rest body)
1565 "Like (with-wrapper-hook HOOK ARGS BODY), but without warnings."
1566 ;; We need those two gensyms because CL's lexical scoping is not available
1567 ;; for function arguments :-(
1568 (let ((funs (make-symbol "funs"))
1569 (global (make-symbol "global"))
1570 (argssym (make-symbol "args"))
1571 (runrestofhook (make-symbol "runrestofhook")))
1572 ;; Since the hook is a wrapper, the loop has to be done via
1573 ;; recursion: a given hook function will call its parameter in order to
1574 ;; continue looping.
1575 `(letrec ((,runrestofhook
1576 (lambda (,funs ,global ,argssym)
1577 ;; `funs' holds the functions left on the hook and `global'
1578 ;; holds the functions left on the global part of the hook
1579 ;; (in case the hook is local).
1580 (if (consp ,funs)
1581 (if (eq t (car ,funs))
1582 (funcall ,runrestofhook
1583 (append ,global (cdr ,funs)) nil ,argssym)
1584 (apply (car ,funs)
1585 (apply-partially
1586 (lambda (,funs ,global &rest ,argssym)
1587 (funcall ,runrestofhook ,funs ,global ,argssym))
1588 (cdr ,funs) ,global)
1589 ,argssym))
1590 ;; Once there are no more functions on the hook, run
1591 ;; the original body.
1592 (apply (lambda ,args ,@body) ,argssym)))))
1593 (funcall ,runrestofhook ,hook
1594 ;; The global part of the hook, if any.
1595 ,(if (symbolp hook)
1596 `(if (local-variable-p ',hook)
1597 (default-value ',hook)))
1598 (list ,@args)))))
1600 (defun add-to-list (list-var element &optional append compare-fn)
1601 "Add ELEMENT to the value of LIST-VAR if it isn't there yet.
1602 The test for presence of ELEMENT is done with `equal', or with
1603 COMPARE-FN if that's non-nil.
1604 If ELEMENT is added, it is added at the beginning of the list,
1605 unless the optional argument APPEND is non-nil, in which case
1606 ELEMENT is added at the end.
1608 The return value is the new value of LIST-VAR.
1610 This is handy to add some elements to configuration variables,
1611 but please do not abuse it in Elisp code, where you are usually
1612 better off using `push' or `cl-pushnew'.
1614 If you want to use `add-to-list' on a variable that is not
1615 defined until a certain package is loaded, you should put the
1616 call to `add-to-list' into a hook function that will be run only
1617 after loading the package. `eval-after-load' provides one way to
1618 do this. In some cases other hooks, such as major mode hooks,
1619 can do the job."
1620 (declare
1621 (compiler-macro
1622 (lambda (exp)
1623 ;; FIXME: Something like this could be used for `set' as well.
1624 (if (or (not (eq 'quote (car-safe list-var)))
1625 (special-variable-p (cadr list-var))
1626 (not (macroexp-const-p append)))
1628 (let* ((sym (cadr list-var))
1629 (append (eval append))
1630 (msg (format-message
1631 "`add-to-list' can't use lexical var `%s'; use `push' or `cl-pushnew'"
1632 sym))
1633 ;; Big ugly hack so we only output a warning during
1634 ;; byte-compilation, and so we can use
1635 ;; byte-compile-not-lexical-var-p to silence the warning
1636 ;; when a defvar has been seen but not yet executed.
1637 (warnfun (lambda ()
1638 ;; FIXME: We should also emit a warning for let-bound
1639 ;; variables with dynamic binding.
1640 (when (assq sym byte-compile--lexical-environment)
1641 (byte-compile-report-error msg :fill))))
1642 (code
1643 (macroexp-let2 macroexp-copyable-p x element
1644 `(if ,(if compare-fn
1645 (progn
1646 (require 'cl-lib)
1647 `(cl-member ,x ,sym :test ,compare-fn))
1648 ;; For bootstrapping reasons, don't rely on
1649 ;; cl--compiler-macro-member for the base case.
1650 `(member ,x ,sym))
1651 ,sym
1652 ,(if append
1653 `(setq ,sym (append ,sym (list ,x)))
1654 `(push ,x ,sym))))))
1655 (if (not (macroexp--compiling-p))
1656 code
1657 `(progn
1658 (macroexp--funcall-if-compiled ',warnfun)
1659 ,code)))))))
1660 (if (cond
1661 ((null compare-fn)
1662 (member element (symbol-value list-var)))
1663 ((eq compare-fn 'eq)
1664 (memq element (symbol-value list-var)))
1665 ((eq compare-fn 'eql)
1666 (memql element (symbol-value list-var)))
1668 (let ((lst (symbol-value list-var)))
1669 (while (and lst
1670 (not (funcall compare-fn element (car lst))))
1671 (setq lst (cdr lst)))
1672 lst)))
1673 (symbol-value list-var)
1674 (set list-var
1675 (if append
1676 (append (symbol-value list-var) (list element))
1677 (cons element (symbol-value list-var))))))
1680 (defun add-to-ordered-list (list-var element &optional order)
1681 "Add ELEMENT to the value of LIST-VAR if it isn't there yet.
1682 The test for presence of ELEMENT is done with `eq'.
1684 The resulting list is reordered so that the elements are in the
1685 order given by each element's numeric list order. Elements
1686 without a numeric list order are placed at the end of the list.
1688 If the third optional argument ORDER is a number (integer or
1689 float), set the element's list order to the given value. If
1690 ORDER is nil or omitted, do not change the numeric order of
1691 ELEMENT. If ORDER has any other value, remove the numeric order
1692 of ELEMENT if it has one.
1694 The list order for each element is stored in LIST-VAR's
1695 `list-order' property.
1697 The return value is the new value of LIST-VAR."
1698 (let ((ordering (get list-var 'list-order)))
1699 (unless ordering
1700 (put list-var 'list-order
1701 (setq ordering (make-hash-table :weakness 'key :test 'eq))))
1702 (when order
1703 (puthash element (and (numberp order) order) ordering))
1704 (unless (memq element (symbol-value list-var))
1705 (set list-var (cons element (symbol-value list-var))))
1706 (set list-var (sort (symbol-value list-var)
1707 (lambda (a b)
1708 (let ((oa (gethash a ordering))
1709 (ob (gethash b ordering)))
1710 (if (and oa ob)
1711 (< oa ob)
1712 oa)))))))
1714 (defun add-to-history (history-var newelt &optional maxelt keep-all)
1715 "Add NEWELT to the history list stored in the variable HISTORY-VAR.
1716 Return the new history list.
1717 If MAXELT is non-nil, it specifies the maximum length of the history.
1718 Otherwise, the maximum history length is the value of the `history-length'
1719 property on symbol HISTORY-VAR, if set, or the value of the `history-length'
1720 variable.
1721 Remove duplicates of NEWELT if `history-delete-duplicates' is non-nil.
1722 If optional fourth arg KEEP-ALL is non-nil, add NEWELT to history even
1723 if it is empty or a duplicate."
1724 (unless maxelt
1725 (setq maxelt (or (get history-var 'history-length)
1726 history-length)))
1727 (let ((history (symbol-value history-var))
1728 tail)
1729 (when (and (listp history)
1730 (or keep-all
1731 (not (stringp newelt))
1732 (> (length newelt) 0))
1733 (or keep-all
1734 (not (equal (car history) newelt))))
1735 (if history-delete-duplicates
1736 (setq history (delete newelt history)))
1737 (setq history (cons newelt history))
1738 (when (integerp maxelt)
1739 (if (= 0 maxelt)
1740 (setq history nil)
1741 (setq tail (nthcdr (1- maxelt) history))
1742 (when (consp tail)
1743 (setcdr tail nil)))))
1744 (set history-var history)))
1747 ;;;; Mode hooks.
1749 (defvar delay-mode-hooks nil
1750 "If non-nil, `run-mode-hooks' should delay running the hooks.")
1751 (defvar delayed-mode-hooks nil
1752 "List of delayed mode hooks waiting to be run.")
1753 (make-variable-buffer-local 'delayed-mode-hooks)
1754 (put 'delay-mode-hooks 'permanent-local t)
1756 (defvar delayed-after-hook-forms nil
1757 "List of delayed :after-hook forms waiting to be run.
1758 These forms come from `define-derived-mode'.")
1759 (make-variable-buffer-local 'delayed-after-hook-forms)
1761 (defvar change-major-mode-after-body-hook nil
1762 "Normal hook run in major mode functions, before the mode hooks.")
1764 (defvar after-change-major-mode-hook nil
1765 "Normal hook run at the very end of major mode functions.")
1767 (defun run-mode-hooks (&rest hooks)
1768 "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS.
1769 Call `hack-local-variables' to set up file local and directory local
1770 variables.
1772 If the variable `delay-mode-hooks' is non-nil, does not do anything,
1773 just adds the HOOKS to the list `delayed-mode-hooks'.
1774 Otherwise, runs hooks in the sequence: `change-major-mode-after-body-hook',
1775 `delayed-mode-hooks' (in reverse order), HOOKS, then runs
1776 `hack-local-variables', runs the hook `after-change-major-mode-hook', and
1777 finally evaluates the forms in `delayed-after-hook-forms' (see
1778 `define-derived-mode').
1780 Major mode functions should use this instead of `run-hooks' when
1781 running their FOO-mode-hook."
1782 (if delay-mode-hooks
1783 ;; Delaying case.
1784 (dolist (hook hooks)
1785 (push hook delayed-mode-hooks))
1786 ;; Normal case, just run the hook as before plus any delayed hooks.
1787 (setq hooks (nconc (nreverse delayed-mode-hooks) hooks))
1788 (setq delayed-mode-hooks nil)
1789 (apply 'run-hooks (cons 'change-major-mode-after-body-hook hooks))
1790 (if (buffer-file-name)
1791 (with-demoted-errors "File local-variables error: %s"
1792 (hack-local-variables 'no-mode)))
1793 (run-hooks 'after-change-major-mode-hook)
1794 (dolist (form (nreverse delayed-after-hook-forms))
1795 (eval form))
1796 (setq delayed-after-hook-forms nil)))
1798 (defmacro delay-mode-hooks (&rest body)
1799 "Execute BODY, but delay any `run-mode-hooks'.
1800 These hooks will be executed by the first following call to
1801 `run-mode-hooks' that occurs outside any `delay-mode-hooks' form.
1802 Only affects hooks run in the current buffer."
1803 (declare (debug t) (indent 0))
1804 `(progn
1805 (make-local-variable 'delay-mode-hooks)
1806 (let ((delay-mode-hooks t))
1807 ,@body)))
1809 ;; PUBLIC: find if the current mode derives from another.
1811 (defun derived-mode-p (&rest modes)
1812 "Non-nil if the current major mode is derived from one of MODES.
1813 Uses the `derived-mode-parent' property of the symbol to trace backwards."
1814 (let ((parent major-mode))
1815 (while (and (not (memq parent modes))
1816 (setq parent (get parent 'derived-mode-parent))))
1817 parent))
1819 ;;;; Minor modes.
1821 ;; If a minor mode is not defined with define-minor-mode,
1822 ;; add it here explicitly.
1823 ;; isearch-mode is deliberately excluded, since you should
1824 ;; not call it yourself.
1825 (defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
1826 overwrite-mode view-mode
1827 hs-minor-mode)
1828 "List of all minor mode functions.")
1830 (defun add-minor-mode (toggle name &optional keymap after toggle-fun)
1831 "Register a new minor mode.
1833 This is an XEmacs-compatibility function. Use `define-minor-mode' instead.
1835 TOGGLE is a symbol which is the name of a buffer-local variable that
1836 is toggled on or off to say whether the minor mode is active or not.
1838 NAME specifies what will appear in the mode line when the minor mode
1839 is active. NAME should be either a string starting with a space, or a
1840 symbol whose value is such a string.
1842 Optional KEYMAP is the keymap for the minor mode that will be added
1843 to `minor-mode-map-alist'.
1845 Optional AFTER specifies that TOGGLE should be added after AFTER
1846 in `minor-mode-alist'.
1848 Optional TOGGLE-FUN is an interactive function to toggle the mode.
1849 It defaults to (and should by convention be) TOGGLE.
1851 If TOGGLE has a non-nil `:included' property, an entry for the mode is
1852 included in the mode-line minor mode menu.
1853 If TOGGLE has a `:menu-tag', that is used for the menu item's label."
1854 (unless (memq toggle minor-mode-list)
1855 (push toggle minor-mode-list))
1857 (unless toggle-fun (setq toggle-fun toggle))
1858 (unless (eq toggle-fun toggle)
1859 (put toggle :minor-mode-function toggle-fun))
1860 ;; Add the name to the minor-mode-alist.
1861 (when name
1862 (let ((existing (assq toggle minor-mode-alist)))
1863 (if existing
1864 (setcdr existing (list name))
1865 (let ((tail minor-mode-alist) found)
1866 (while (and tail (not found))
1867 (if (eq after (caar tail))
1868 (setq found tail)
1869 (setq tail (cdr tail))))
1870 (if found
1871 (let ((rest (cdr found)))
1872 (setcdr found nil)
1873 (nconc found (list (list toggle name)) rest))
1874 (push (list toggle name) minor-mode-alist))))))
1875 ;; Add the toggle to the minor-modes menu if requested.
1876 (when (get toggle :included)
1877 (define-key mode-line-mode-menu
1878 (vector toggle)
1879 (list 'menu-item
1880 (concat
1881 (or (get toggle :menu-tag)
1882 (if (stringp name) name (symbol-name toggle)))
1883 (let ((mode-name (if (symbolp name) (symbol-value name))))
1884 (if (and (stringp mode-name) (string-match "[^ ]+" mode-name))
1885 (concat " (" (match-string 0 mode-name) ")"))))
1886 toggle-fun
1887 :button (cons :toggle toggle))))
1889 ;; Add the map to the minor-mode-map-alist.
1890 (when keymap
1891 (let ((existing (assq toggle minor-mode-map-alist)))
1892 (if existing
1893 (setcdr existing keymap)
1894 (let ((tail minor-mode-map-alist) found)
1895 (while (and tail (not found))
1896 (if (eq after (caar tail))
1897 (setq found tail)
1898 (setq tail (cdr tail))))
1899 (if found
1900 (let ((rest (cdr found)))
1901 (setcdr found nil)
1902 (nconc found (list (cons toggle keymap)) rest))
1903 (push (cons toggle keymap) minor-mode-map-alist)))))))
1905 ;;;; Load history
1907 (defsubst autoloadp (object)
1908 "Non-nil if OBJECT is an autoload."
1909 (eq 'autoload (car-safe object)))
1911 ;; (defun autoload-type (object)
1912 ;; "Returns the type of OBJECT or `function' or `command' if the type is nil.
1913 ;; OBJECT should be an autoload object."
1914 ;; (when (autoloadp object)
1915 ;; (let ((type (nth 3 object)))
1916 ;; (cond ((null type) (if (nth 2 object) 'command 'function))
1917 ;; ((eq 'keymap t) 'macro)
1918 ;; (type)))))
1920 ;; (defalias 'autoload-file #'cadr
1921 ;; "Return the name of the file from which AUTOLOAD will be loaded.
1922 ;; \n\(fn AUTOLOAD)")
1924 (defun symbol-file (symbol &optional type)
1925 "Return the name of the file that defined SYMBOL.
1926 The value is normally an absolute file name. It can also be nil,
1927 if the definition is not associated with any file. If SYMBOL
1928 specifies an autoloaded function, the value can be a relative
1929 file name without extension.
1931 If TYPE is nil, then any kind of definition is acceptable. If
1932 TYPE is `defun', `defvar', or `defface', that specifies function
1933 definition, variable definition, or face definition only."
1934 (if (and (or (null type) (eq type 'defun))
1935 (symbolp symbol)
1936 (autoloadp (symbol-function symbol)))
1937 (nth 1 (symbol-function symbol))
1938 (let ((files load-history)
1939 file)
1940 (while files
1941 (if (if type
1942 (if (eq type 'defvar)
1943 ;; Variables are present just as their names.
1944 (member symbol (cdr (car files)))
1945 ;; Other types are represented as (TYPE . NAME).
1946 (member (cons type symbol) (cdr (car files))))
1947 ;; We accept all types, so look for variable def
1948 ;; and then for any other kind.
1949 (or (member symbol (cdr (car files)))
1950 (rassq symbol (cdr (car files)))))
1951 (setq file (car (car files)) files nil))
1952 (setq files (cdr files)))
1953 file)))
1955 (defun locate-library (library &optional nosuffix path interactive-call)
1956 "Show the precise file name of Emacs library LIBRARY.
1957 LIBRARY should be a relative file name of the library, a string.
1958 It can omit the suffix (a.k.a. file-name extension) if NOSUFFIX is
1959 nil (which is the default, see below).
1960 This command searches the directories in `load-path' like `\\[load-library]'
1961 to find the file that `\\[load-library] RET LIBRARY RET' would load.
1962 Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
1963 to the specified name LIBRARY.
1965 If the optional third arg PATH is specified, that list of directories
1966 is used instead of `load-path'.
1968 When called from a program, the file name is normally returned as a
1969 string. When run interactively, the argument INTERACTIVE-CALL is t,
1970 and the file name is displayed in the echo area."
1971 (interactive (list (completing-read "Locate library: "
1972 (apply-partially
1973 'locate-file-completion-table
1974 load-path (get-load-suffixes)))
1975 nil nil
1977 (let ((file (locate-file library
1978 (or path load-path)
1979 (append (unless nosuffix (get-load-suffixes))
1980 load-file-rep-suffixes))))
1981 (if interactive-call
1982 (if file
1983 (message "Library is file %s" (abbreviate-file-name file))
1984 (message "No library %s in search path" library)))
1985 file))
1988 ;;;; Process stuff.
1990 (defun start-process (name buffer program &rest program-args)
1991 "Start a program in a subprocess. Return the process object for it.
1992 NAME is name for process. It is modified if necessary to make it unique.
1993 BUFFER is the buffer (or buffer name) to associate with the process.
1995 Process output (both standard output and standard error streams) goes
1996 at end of BUFFER, unless you specify an output stream or filter
1997 function to handle the output. BUFFER may also be nil, meaning that
1998 this process is not associated with any buffer.
2000 PROGRAM is the program file name. It is searched for in `exec-path'
2001 \(which see). If nil, just associate a pty with the buffer. Remaining
2002 arguments are strings to give program as arguments.
2004 If you want to separate standard output from standard error, use
2005 `make-process' or invoke the command through a shell and redirect
2006 one of them using the shell syntax."
2007 (unless (fboundp 'make-process)
2008 (error "Emacs was compiled without subprocess support"))
2009 (apply #'make-process
2010 (append (list :name name :buffer buffer)
2011 (if program
2012 (list :command (cons program program-args))))))
2014 (defun process-lines (program &rest args)
2015 "Execute PROGRAM with ARGS, returning its output as a list of lines.
2016 Signal an error if the program returns with a non-zero exit status."
2017 (with-temp-buffer
2018 (let ((status (apply 'call-process program nil (current-buffer) nil args)))
2019 (unless (eq status 0)
2020 (error "%s exited with status %s" program status))
2021 (goto-char (point-min))
2022 (let (lines)
2023 (while (not (eobp))
2024 (setq lines (cons (buffer-substring-no-properties
2025 (line-beginning-position)
2026 (line-end-position))
2027 lines))
2028 (forward-line 1))
2029 (nreverse lines)))))
2031 (defun process-live-p (process)
2032 "Returns non-nil if PROCESS is alive.
2033 A process is considered alive if its status is `run', `open',
2034 `listen', `connect' or `stop'. Value is nil if PROCESS is not a
2035 process."
2036 (and (processp process)
2037 (memq (process-status process)
2038 '(run open listen connect stop))))
2040 ;; compatibility
2042 (defun process-kill-without-query (process &optional _flag)
2043 "Say no query needed if PROCESS is running when Emacs is exited.
2044 Optional second argument if non-nil says to require a query.
2045 Value is t if a query was formerly required."
2046 (declare (obsolete
2047 "use `process-query-on-exit-flag' or `set-process-query-on-exit-flag'."
2048 "22.1"))
2049 (let ((old (process-query-on-exit-flag process)))
2050 (set-process-query-on-exit-flag process nil)
2051 old))
2053 (defun process-kill-buffer-query-function ()
2054 "Ask before killing a buffer that has a running process."
2055 (let ((process (get-buffer-process (current-buffer))))
2056 (or (not process)
2057 (not (memq (process-status process) '(run stop open listen)))
2058 (not (process-query-on-exit-flag process))
2059 (yes-or-no-p
2060 (format "Buffer %S has a running process; kill it? "
2061 (buffer-name (current-buffer)))))))
2063 (add-hook 'kill-buffer-query-functions 'process-kill-buffer-query-function)
2065 ;; process plist management
2067 (defun process-get (process propname)
2068 "Return the value of PROCESS' PROPNAME property.
2069 This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
2070 (plist-get (process-plist process) propname))
2072 (defun process-put (process propname value)
2073 "Change PROCESS' PROPNAME property to VALUE.
2074 It can be retrieved with `(process-get PROCESS PROPNAME)'."
2075 (set-process-plist process
2076 (plist-put (process-plist process) propname value)))
2079 ;;;; Input and display facilities.
2081 (defconst read-key-empty-map (make-sparse-keymap))
2083 (defvar read-key-delay 0.01) ;Fast enough for 100Hz repeat rate, hopefully.
2085 (defun read-key (&optional prompt)
2086 "Read a key from the keyboard.
2087 Contrary to `read-event' this will not return a raw event but instead will
2088 obey the input decoding and translations usually done by `read-key-sequence'.
2089 So escape sequences and keyboard encoding are taken into account.
2090 When there's an ambiguity because the key looks like the prefix of
2091 some sort of escape sequence, the ambiguity is resolved via `read-key-delay'."
2092 ;; This overriding-terminal-local-map binding also happens to
2093 ;; disable quail's input methods, so although read-key-sequence
2094 ;; always inherits the input method, in practice read-key does not
2095 ;; inherit the input method (at least not if it's based on quail).
2096 (let ((overriding-terminal-local-map nil)
2097 (overriding-local-map read-key-empty-map)
2098 (echo-keystrokes 0)
2099 (old-global-map (current-global-map))
2100 (timer (run-with-idle-timer
2101 ;; Wait long enough that Emacs has the time to receive and
2102 ;; process all the raw events associated with the single-key.
2103 ;; But don't wait too long, or the user may find the delay
2104 ;; annoying (or keep hitting more keys which may then get
2105 ;; lost or misinterpreted).
2106 ;; This is only relevant for keys which Emacs perceives as
2107 ;; "prefixes", such as C-x (because of the C-x 8 map in
2108 ;; key-translate-table and the C-x @ map in function-key-map)
2109 ;; or ESC (because of terminal escape sequences in
2110 ;; input-decode-map).
2111 read-key-delay t
2112 (lambda ()
2113 (let ((keys (this-command-keys-vector)))
2114 (unless (zerop (length keys))
2115 ;; `keys' is non-empty, so the user has hit at least
2116 ;; one key; there's no point waiting any longer, even
2117 ;; though read-key-sequence thinks we should wait
2118 ;; for more input to decide how to interpret the
2119 ;; current input.
2120 (throw 'read-key keys)))))))
2121 (unwind-protect
2122 (progn
2123 (use-global-map
2124 (let ((map (make-sparse-keymap)))
2125 ;; Don't hide the menu-bar and tool-bar entries.
2126 (define-key map [menu-bar] (lookup-key global-map [menu-bar]))
2127 (define-key map [tool-bar]
2128 ;; This hack avoids evaluating the :filter (Bug#9922).
2129 (or (cdr (assq 'tool-bar global-map))
2130 (lookup-key global-map [tool-bar])))
2131 map))
2132 (let* ((keys
2133 (catch 'read-key (read-key-sequence-vector prompt nil t)))
2134 (key (aref keys 0)))
2135 (if (and (> (length keys) 1)
2136 (memq key '(mode-line header-line
2137 left-fringe right-fringe)))
2138 (aref keys 1)
2139 key)))
2140 (cancel-timer timer)
2141 ;; For some reason, `read-key(-sequence)' leaves the prompt in the echo
2142 ;; area, whereas `read-event' seems to empty it just before returning
2143 ;; (bug#22714). So, let's mimic the behavior of `read-event'.
2144 (message nil)
2145 (use-global-map old-global-map))))
2147 (defvar read-passwd-map
2148 ;; BEWARE: `defconst' would purecopy it, breaking the sharing with
2149 ;; minibuffer-local-map along the way!
2150 (let ((map (make-sparse-keymap)))
2151 (set-keymap-parent map minibuffer-local-map)
2152 (define-key map "\C-u" #'delete-minibuffer-contents) ;bug#12570
2153 map)
2154 "Keymap used while reading passwords.")
2156 (defun read-passwd (prompt &optional confirm default)
2157 "Read a password, prompting with PROMPT, and return it.
2158 If optional CONFIRM is non-nil, read the password twice to make sure.
2159 Optional DEFAULT is a default password to use instead of empty input.
2161 This function echoes `.' for each character that the user types.
2162 You could let-bind `read-hide-char' to another hiding character, though.
2164 Once the caller uses the password, it can erase the password
2165 by doing (clear-string STRING)."
2166 (if confirm
2167 (let (success)
2168 (while (not success)
2169 (let ((first (read-passwd prompt nil default))
2170 (second (read-passwd "Confirm password: " nil default)))
2171 (if (equal first second)
2172 (progn
2173 (and (arrayp second) (clear-string second))
2174 (setq success first))
2175 (and (arrayp first) (clear-string first))
2176 (and (arrayp second) (clear-string second))
2177 (message "Password not repeated accurately; please start over")
2178 (sit-for 1))))
2179 success)
2180 (let ((hide-chars-fun
2181 (lambda (beg end _len)
2182 (clear-this-command-keys)
2183 (setq beg (min end (max (minibuffer-prompt-end)
2184 beg)))
2185 (dotimes (i (- end beg))
2186 (put-text-property (+ i beg) (+ 1 i beg)
2187 'display (string (or read-hide-char ?.))))))
2188 minibuf)
2189 (minibuffer-with-setup-hook
2190 (lambda ()
2191 (setq minibuf (current-buffer))
2192 ;; Turn off electricity.
2193 (setq-local post-self-insert-hook nil)
2194 (setq-local buffer-undo-list t)
2195 (setq-local select-active-regions nil)
2196 (use-local-map read-passwd-map)
2197 (setq-local inhibit-modification-hooks nil) ;bug#15501.
2198 (setq-local show-paren-mode nil) ;bug#16091.
2199 (add-hook 'after-change-functions hide-chars-fun nil 'local))
2200 (unwind-protect
2201 (let ((enable-recursive-minibuffers t)
2202 (read-hide-char (or read-hide-char ?.)))
2203 (read-string prompt nil t default)) ; t = "no history"
2204 (when (buffer-live-p minibuf)
2205 (with-current-buffer minibuf
2206 ;; Not sure why but it seems that there might be cases where the
2207 ;; minibuffer is not always properly reset later on, so undo
2208 ;; whatever we've done here (bug#11392).
2209 (remove-hook 'after-change-functions hide-chars-fun 'local)
2210 (kill-local-variable 'post-self-insert-hook)
2211 ;; And of course, don't keep the sensitive data around.
2212 (erase-buffer))))))))
2214 (defun read-number (prompt &optional default)
2215 "Read a numeric value in the minibuffer, prompting with PROMPT.
2216 DEFAULT specifies a default value to return if the user just types RET.
2217 The value of DEFAULT is inserted into PROMPT.
2218 This function is used by the `interactive' code letter `n'."
2219 (let ((n nil)
2220 (default1 (if (consp default) (car default) default)))
2221 (when default1
2222 (setq prompt
2223 (if (string-match "\\(\\):[ \t]*\\'" prompt)
2224 (replace-match (format " (default %s)" default1) t t prompt 1)
2225 (replace-regexp-in-string "[ \t]*\\'"
2226 (format " (default %s) " default1)
2227 prompt t t))))
2228 (while
2229 (progn
2230 (let ((str (read-from-minibuffer
2231 prompt nil nil nil nil
2232 (when default
2233 (if (consp default)
2234 (mapcar 'number-to-string (delq nil default))
2235 (number-to-string default))))))
2236 (condition-case nil
2237 (setq n (cond
2238 ((zerop (length str)) default1)
2239 ((stringp str) (read str))))
2240 (error nil)))
2241 (unless (numberp n)
2242 (message "Please enter a number.")
2243 (sit-for 1)
2244 t)))
2247 (defun read-char-choice (prompt chars &optional inhibit-keyboard-quit)
2248 "Read and return one of CHARS, prompting for PROMPT.
2249 Any input that is not one of CHARS is ignored.
2251 If optional argument INHIBIT-KEYBOARD-QUIT is non-nil, ignore
2252 keyboard-quit events while waiting for a valid input."
2253 (unless (consp chars)
2254 (error "Called `read-char-choice' without valid char choices"))
2255 (let (char done show-help (helpbuf " *Char Help*"))
2256 (let ((cursor-in-echo-area t)
2257 (executing-kbd-macro executing-kbd-macro)
2258 (esc-flag nil))
2259 (save-window-excursion ; in case we call help-form-show
2260 (while (not done)
2261 (unless (get-text-property 0 'face prompt)
2262 (setq prompt (propertize prompt 'face 'minibuffer-prompt)))
2263 (setq char (let ((inhibit-quit inhibit-keyboard-quit))
2264 (read-key prompt)))
2265 (and show-help (buffer-live-p (get-buffer helpbuf))
2266 (kill-buffer helpbuf))
2267 (cond
2268 ((not (numberp char)))
2269 ;; If caller has set help-form, that's enough.
2270 ;; They don't explicitly have to add help-char to chars.
2271 ((and help-form
2272 (eq char help-char)
2273 (setq show-help t)
2274 (help-form-show)))
2275 ((memq char chars)
2276 (setq done t))
2277 ((and executing-kbd-macro (= char -1))
2278 ;; read-event returns -1 if we are in a kbd macro and
2279 ;; there are no more events in the macro. Attempt to
2280 ;; get an event interactively.
2281 (setq executing-kbd-macro nil))
2282 ((not inhibit-keyboard-quit)
2283 (cond
2284 ((and (null esc-flag) (eq char ?\e))
2285 (setq esc-flag t))
2286 ((memq char '(?\C-g ?\e))
2287 (keyboard-quit))))))))
2288 ;; Display the question with the answer. But without cursor-in-echo-area.
2289 (message "%s%s" prompt (char-to-string char))
2290 char))
2292 (defun sit-for (seconds &optional nodisp obsolete)
2293 "Redisplay, then wait for SECONDS seconds. Stop when input is available.
2294 SECONDS may be a floating-point value.
2295 \(On operating systems that do not support waiting for fractions of a
2296 second, floating-point values are rounded down to the nearest integer.)
2298 If optional arg NODISP is t, don't redisplay, just wait for input.
2299 Redisplay does not happen if input is available before it starts.
2301 Value is t if waited the full time with no input arriving, and nil otherwise.
2303 An obsolete, but still supported form is
2304 \(sit-for SECONDS &optional MILLISECONDS NODISP)
2305 where the optional arg MILLISECONDS specifies an additional wait period,
2306 in milliseconds; this was useful when Emacs was built without
2307 floating point support."
2308 (declare (advertised-calling-convention (seconds &optional nodisp) "22.1"))
2309 ;; This used to be implemented in C until the following discussion:
2310 ;; http://lists.gnu.org/archive/html/emacs-devel/2006-07/msg00401.html
2311 ;; Then it was moved here using an implementation based on an idle timer,
2312 ;; which was then replaced by the use of read-event.
2313 (if (numberp nodisp)
2314 (setq seconds (+ seconds (* 1e-3 nodisp))
2315 nodisp obsolete)
2316 (if obsolete (setq nodisp obsolete)))
2317 (cond
2318 (noninteractive
2319 (sleep-for seconds)
2321 ((input-pending-p t)
2322 nil)
2323 ((or (<= seconds 0)
2324 ;; We are going to call read-event below, which will record
2325 ;; the the next key as part of the macro, even if that key
2326 ;; invokes kmacro-end-macro, so if we are recording a macro,
2327 ;; the macro will recursively call itself. In addition, when
2328 ;; that key is removed from unread-command-events, it will be
2329 ;; recorded the second time, so the macro will have each key
2330 ;; doubled. This used to happen if a macro was defined with
2331 ;; Flyspell mode active (because Flyspell calls sit-for in its
2332 ;; post-command-hook, see bug #21329.) To avoid all that, we
2333 ;; simply disable the wait when we are recording a macro.
2334 defining-kbd-macro)
2335 (or nodisp (redisplay)))
2337 (or nodisp (redisplay))
2338 ;; FIXME: we should not read-event here at all, because it's much too
2339 ;; difficult to reliably "undo" a read-event by pushing it onto
2340 ;; unread-command-events.
2341 ;; For bug#14782, we need read-event to do the keyboard-coding-system
2342 ;; decoding (hence non-nil as second arg under POSIX ttys).
2343 ;; For bug#15614, we need read-event not to inherit-input-method.
2344 ;; So we temporarily suspend input-method-function.
2345 (let ((read (let ((input-method-function nil))
2346 (read-event nil t seconds))))
2347 (or (null read)
2348 (progn
2349 ;; https://lists.gnu.org/archive/html/emacs-devel/2006-10/msg00394.html
2350 ;; We want `read' appear in the next command's this-command-event
2351 ;; but not in the current one.
2352 ;; By pushing (cons t read), we indicate that `read' has not
2353 ;; yet been recorded in this-command-keys, so it will be recorded
2354 ;; next time it's read.
2355 ;; And indeed the `seconds' argument to read-event correctly
2356 ;; prevented recording this event in the current command's
2357 ;; this-command-keys.
2358 (push (cons t read) unread-command-events)
2359 nil))))))
2361 ;; Behind display-popup-menus-p test.
2362 (declare-function x-popup-dialog "menu.c" (position contents &optional header))
2364 (defun y-or-n-p (prompt)
2365 "Ask user a \"y or n\" question.
2366 Return t if answer is \"y\" and nil if it is \"n\".
2367 PROMPT is the string to display to ask the question. It should
2368 end in a space; `y-or-n-p' adds \"(y or n) \" to it.
2370 No confirmation of the answer is requested; a single character is
2371 enough. SPC also means yes, and DEL means no.
2373 To be precise, this function translates user input into responses
2374 by consulting the bindings in `query-replace-map'; see the
2375 documentation of that variable for more information. In this
2376 case, the useful bindings are `act', `skip', `recenter',
2377 `scroll-up', `scroll-down', and `quit'.
2378 An `act' response means yes, and a `skip' response means no.
2379 A `quit' response means to invoke `keyboard-quit'.
2380 If the user enters `recenter', `scroll-up', or `scroll-down'
2381 responses, perform the requested window recentering or scrolling
2382 and ask again.
2384 Under a windowing system a dialog box will be used if `last-nonmenu-event'
2385 is nil and `use-dialog-box' is non-nil."
2386 ;; ¡Beware! when I tried to edebug this code, Emacs got into a weird state
2387 ;; where all the keys were unbound (i.e. it somehow got triggered
2388 ;; within read-key, apparently). I had to kill it.
2389 (let ((answer 'recenter)
2390 (padded (lambda (prompt &optional dialog)
2391 (let ((l (length prompt)))
2392 (concat prompt
2393 (if (or (zerop l) (eq ?\s (aref prompt (1- l))))
2394 "" " ")
2395 (if dialog "" "(y or n) "))))))
2396 (cond
2397 (noninteractive
2398 (setq prompt (funcall padded prompt))
2399 (let ((temp-prompt prompt))
2400 (while (not (memq answer '(act skip)))
2401 (let ((str (read-string temp-prompt)))
2402 (cond ((member str '("y" "Y")) (setq answer 'act))
2403 ((member str '("n" "N")) (setq answer 'skip))
2404 (t (setq temp-prompt (concat "Please answer y or n. "
2405 prompt))))))))
2406 ((and (display-popup-menus-p)
2407 last-input-event ; not during startup
2408 (listp last-nonmenu-event)
2409 use-dialog-box)
2410 (setq prompt (funcall padded prompt t)
2411 answer (x-popup-dialog t `(,prompt ("Yes" . act) ("No" . skip)))))
2413 (setq prompt (funcall padded prompt))
2414 (while
2415 (let* ((scroll-actions '(recenter scroll-up scroll-down
2416 scroll-other-window scroll-other-window-down))
2417 (key
2418 (let ((cursor-in-echo-area t))
2419 (when minibuffer-auto-raise
2420 (raise-frame (window-frame (minibuffer-window))))
2421 (read-key (propertize (if (memq answer scroll-actions)
2422 prompt
2423 (concat "Please answer y or n. "
2424 prompt))
2425 'face 'minibuffer-prompt)))))
2426 (setq answer (lookup-key query-replace-map (vector key) t))
2427 (cond
2428 ((memq answer '(skip act)) nil)
2429 ((eq answer 'recenter)
2430 (recenter) t)
2431 ((eq answer 'scroll-up)
2432 (ignore-errors (scroll-up-command)) t)
2433 ((eq answer 'scroll-down)
2434 (ignore-errors (scroll-down-command)) t)
2435 ((eq answer 'scroll-other-window)
2436 (ignore-errors (scroll-other-window)) t)
2437 ((eq answer 'scroll-other-window-down)
2438 (ignore-errors (scroll-other-window-down)) t)
2439 ((or (memq answer '(exit-prefix quit)) (eq key ?\e))
2440 (signal 'quit nil) t)
2441 (t t)))
2442 (ding)
2443 (discard-input))))
2444 (let ((ret (eq answer 'act)))
2445 (unless noninteractive
2446 (message "%s%c" prompt (if ret ?y ?n)))
2447 ret)))
2450 ;;; Atomic change groups.
2452 (defmacro atomic-change-group (&rest body)
2453 "Perform BODY as an atomic change group.
2454 This means that if BODY exits abnormally,
2455 all of its changes to the current buffer are undone.
2456 This works regardless of whether undo is enabled in the buffer.
2458 This mechanism is transparent to ordinary use of undo;
2459 if undo is enabled in the buffer and BODY succeeds, the
2460 user can undo the change normally."
2461 (declare (indent 0) (debug t))
2462 (let ((handle (make-symbol "--change-group-handle--"))
2463 (success (make-symbol "--change-group-success--")))
2464 `(let ((,handle (prepare-change-group))
2465 ;; Don't truncate any undo data in the middle of this.
2466 (undo-outer-limit nil)
2467 (undo-limit most-positive-fixnum)
2468 (undo-strong-limit most-positive-fixnum)
2469 (,success nil))
2470 (unwind-protect
2471 (progn
2472 ;; This is inside the unwind-protect because
2473 ;; it enables undo if that was disabled; we need
2474 ;; to make sure that it gets disabled again.
2475 (activate-change-group ,handle)
2476 ,@body
2477 (setq ,success t))
2478 ;; Either of these functions will disable undo
2479 ;; if it was disabled before.
2480 (if ,success
2481 (accept-change-group ,handle)
2482 (cancel-change-group ,handle))))))
2484 (defun prepare-change-group (&optional buffer)
2485 "Return a handle for the current buffer's state, for a change group.
2486 If you specify BUFFER, make a handle for BUFFER's state instead.
2488 Pass the handle to `activate-change-group' afterward to initiate
2489 the actual changes of the change group.
2491 To finish the change group, call either `accept-change-group' or
2492 `cancel-change-group' passing the same handle as argument. Call
2493 `accept-change-group' to accept the changes in the group as final;
2494 call `cancel-change-group' to undo them all. You should use
2495 `unwind-protect' to make sure the group is always finished. The call
2496 to `activate-change-group' should be inside the `unwind-protect'.
2497 Once you finish the group, don't use the handle again--don't try to
2498 finish the same group twice. For a simple example of correct use, see
2499 the source code of `atomic-change-group'.
2501 The handle records only the specified buffer. To make a multibuffer
2502 change group, call this function once for each buffer you want to
2503 cover, then use `nconc' to combine the returned values, like this:
2505 (nconc (prepare-change-group buffer-1)
2506 (prepare-change-group buffer-2))
2508 You can then activate that multibuffer change group with a single
2509 call to `activate-change-group' and finish it with a single call
2510 to `accept-change-group' or `cancel-change-group'."
2512 (if buffer
2513 (list (cons buffer (with-current-buffer buffer buffer-undo-list)))
2514 (list (cons (current-buffer) buffer-undo-list))))
2516 (defun activate-change-group (handle)
2517 "Activate a change group made with `prepare-change-group' (which see)."
2518 (dolist (elt handle)
2519 (with-current-buffer (car elt)
2520 (if (eq buffer-undo-list t)
2521 (setq buffer-undo-list nil)))))
2523 (defun accept-change-group (handle)
2524 "Finish a change group made with `prepare-change-group' (which see).
2525 This finishes the change group by accepting its changes as final."
2526 (dolist (elt handle)
2527 (with-current-buffer (car elt)
2528 (if (eq (cdr elt) t)
2529 (setq buffer-undo-list t)))))
2531 (defun cancel-change-group (handle)
2532 "Finish a change group made with `prepare-change-group' (which see).
2533 This finishes the change group by reverting all of its changes."
2534 (dolist (elt handle)
2535 (with-current-buffer (car elt)
2536 (setq elt (cdr elt))
2537 (save-restriction
2538 ;; Widen buffer temporarily so if the buffer was narrowed within
2539 ;; the body of `atomic-change-group' all changes can be undone.
2540 (widen)
2541 (let ((old-car (car-safe elt))
2542 (old-cdr (cdr-safe elt)))
2543 (unwind-protect
2544 (progn
2545 ;; Temporarily truncate the undo log at ELT.
2546 (when (consp elt)
2547 (setcar elt nil) (setcdr elt nil))
2548 (unless (eq last-command 'undo) (undo-start))
2549 ;; Make sure there's no confusion.
2550 (when (and (consp elt) (not (eq elt (last pending-undo-list))))
2551 (error "Undoing to some unrelated state"))
2552 ;; Undo it all.
2553 (save-excursion
2554 (while (listp pending-undo-list) (undo-more 1)))
2555 ;; Revert the undo info to what it was when we grabbed
2556 ;; the state.
2557 (setq buffer-undo-list elt))
2558 ;; Reset the modified cons cell ELT to its original content.
2559 (when (consp elt)
2560 (setcar elt old-car)
2561 (setcdr elt old-cdr))))))))
2563 ;;;; Display-related functions.
2565 ;; For compatibility.
2566 (define-obsolete-function-alias 'redraw-modeline
2567 'force-mode-line-update "24.3")
2569 (defun momentary-string-display (string pos &optional exit-char message)
2570 "Momentarily display STRING in the buffer at POS.
2571 Display remains until next event is input.
2572 If POS is a marker, only its position is used; its buffer is ignored.
2573 Optional third arg EXIT-CHAR can be a character, event or event
2574 description list. EXIT-CHAR defaults to SPC. If the input is
2575 EXIT-CHAR it is swallowed; otherwise it is then available as
2576 input (as a command if nothing else).
2577 Display MESSAGE (optional fourth arg) in the echo area.
2578 If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
2579 (or exit-char (setq exit-char ?\s))
2580 (let ((ol (make-overlay pos pos))
2581 (str (copy-sequence string)))
2582 (unwind-protect
2583 (progn
2584 (save-excursion
2585 (overlay-put ol 'after-string str)
2586 (goto-char pos)
2587 ;; To avoid trouble with out-of-bounds position
2588 (setq pos (point))
2589 ;; If the string end is off screen, recenter now.
2590 (if (<= (window-end nil t) pos)
2591 (recenter (/ (window-height) 2))))
2592 (message (or message "Type %s to continue editing.")
2593 (single-key-description exit-char))
2594 (let ((event (read-key)))
2595 ;; `exit-char' can be an event, or an event description list.
2596 (or (eq event exit-char)
2597 (eq event (event-convert-list exit-char))
2598 (setq unread-command-events
2599 (append (this-single-command-raw-keys)
2600 unread-command-events)))))
2601 (delete-overlay ol))))
2604 ;;;; Overlay operations
2606 (defun copy-overlay (o)
2607 "Return a copy of overlay O."
2608 (let ((o1 (if (overlay-buffer o)
2609 (make-overlay (overlay-start o) (overlay-end o)
2610 ;; FIXME: there's no easy way to find the
2611 ;; insertion-type of the two markers.
2612 (overlay-buffer o))
2613 (let ((o1 (make-overlay (point-min) (point-min))))
2614 (delete-overlay o1)
2615 o1)))
2616 (props (overlay-properties o)))
2617 (while props
2618 (overlay-put o1 (pop props) (pop props)))
2619 o1))
2621 (defun remove-overlays (&optional beg end name val)
2622 "Clear BEG and END of overlays whose property NAME has value VAL.
2623 Overlays might be moved and/or split.
2624 BEG and END default respectively to the beginning and end of buffer."
2625 ;; This speeds up the loops over overlays.
2626 (unless beg (setq beg (point-min)))
2627 (unless end (setq end (point-max)))
2628 (overlay-recenter end)
2629 (if (< end beg)
2630 (setq beg (prog1 end (setq end beg))))
2631 (save-excursion
2632 (dolist (o (overlays-in beg end))
2633 (when (eq (overlay-get o name) val)
2634 ;; Either push this overlay outside beg...end
2635 ;; or split it to exclude beg...end
2636 ;; or delete it entirely (if it is contained in beg...end).
2637 (if (< (overlay-start o) beg)
2638 (if (> (overlay-end o) end)
2639 (progn
2640 (move-overlay (copy-overlay o)
2641 (overlay-start o) beg)
2642 (move-overlay o end (overlay-end o)))
2643 (move-overlay o (overlay-start o) beg))
2644 (if (> (overlay-end o) end)
2645 (move-overlay o end (overlay-end o))
2646 (delete-overlay o)))))))
2648 ;;;; Miscellanea.
2650 (defvar suspend-hook nil
2651 "Normal hook run by `suspend-emacs', before suspending.")
2653 (defvar suspend-resume-hook nil
2654 "Normal hook run by `suspend-emacs', after Emacs is continued.")
2656 (defvar temp-buffer-show-hook nil
2657 "Normal hook run by `with-output-to-temp-buffer' after displaying the buffer.
2658 When the hook runs, the temporary buffer is current, and the window it
2659 was displayed in is selected.")
2661 (defvar temp-buffer-setup-hook nil
2662 "Normal hook run by `with-output-to-temp-buffer' at the start.
2663 When the hook runs, the temporary buffer is current.
2664 This hook is normally set up with a function to put the buffer in Help
2665 mode.")
2667 (defconst user-emacs-directory
2668 (if (eq system-type 'ms-dos)
2669 ;; MS-DOS cannot have initial dot.
2670 "~/_emacs.d/"
2671 "~/.emacs.d/")
2672 "Directory beneath which additional per-user Emacs-specific files are placed.
2673 Various programs in Emacs store information in this directory.
2674 Note that this should end with a directory separator.
2675 See also `locate-user-emacs-file'.")
2677 ;;;; Misc. useful functions.
2679 (defsubst buffer-narrowed-p ()
2680 "Return non-nil if the current buffer is narrowed."
2681 (/= (- (point-max) (point-min)) (buffer-size)))
2683 (defun find-tag-default-bounds ()
2684 "Determine the boundaries of the default tag, based on text at point.
2685 Return a cons cell with the beginning and end of the found tag.
2686 If there is no plausible default, return nil."
2687 (bounds-of-thing-at-point 'symbol))
2689 (defun find-tag-default ()
2690 "Determine default tag to search for, based on text at point.
2691 If there is no plausible default, return nil."
2692 (let ((bounds (find-tag-default-bounds)))
2693 (when bounds
2694 (buffer-substring-no-properties (car bounds) (cdr bounds)))))
2696 (defun find-tag-default-as-regexp ()
2697 "Return regexp that matches the default tag at point.
2698 If there is no tag at point, return nil.
2700 When in a major mode that does not provide its own
2701 `find-tag-default-function', return a regexp that matches the
2702 symbol at point exactly."
2703 (let ((tag (funcall (or find-tag-default-function
2704 (get major-mode 'find-tag-default-function)
2705 'find-tag-default))))
2706 (if tag (regexp-quote tag))))
2708 (defun find-tag-default-as-symbol-regexp ()
2709 "Return regexp that matches the default tag at point as symbol.
2710 If there is no tag at point, return nil.
2712 When in a major mode that does not provide its own
2713 `find-tag-default-function', return a regexp that matches the
2714 symbol at point exactly."
2715 (let ((tag-regexp (find-tag-default-as-regexp)))
2716 (if (and tag-regexp
2717 (eq (or find-tag-default-function
2718 (get major-mode 'find-tag-default-function)
2719 'find-tag-default)
2720 'find-tag-default))
2721 (format "\\_<%s\\_>" tag-regexp)
2722 tag-regexp)))
2724 (defun play-sound (sound)
2725 "SOUND is a list of the form `(sound KEYWORD VALUE...)'.
2726 The following keywords are recognized:
2728 :file FILE - read sound data from FILE. If FILE isn't an
2729 absolute file name, it is searched in `data-directory'.
2731 :data DATA - read sound data from string DATA.
2733 Exactly one of :file or :data must be present.
2735 :volume VOL - set volume to VOL. VOL must an integer in the
2736 range 0..100 or a float in the range 0..1.0. If not specified,
2737 don't change the volume setting of the sound device.
2739 :device DEVICE - play sound on DEVICE. If not specified,
2740 a system-dependent default device name is used.
2742 Note: :data and :device are currently not supported on Windows."
2743 (if (fboundp 'play-sound-internal)
2744 (play-sound-internal sound)
2745 (error "This Emacs binary lacks sound support")))
2747 (declare-function w32-shell-dos-semantics "w32-fns" nil)
2749 (defun shell-quote-argument (argument)
2750 "Quote ARGUMENT for passing as argument to an inferior shell.
2752 This function is designed to work with the syntax of your system's
2753 standard shell, and might produce incorrect results with unusual shells.
2754 See Info node `(elisp)Security Considerations'."
2755 (cond
2756 ((eq system-type 'ms-dos)
2757 ;; Quote using double quotes, but escape any existing quotes in
2758 ;; the argument with backslashes.
2759 (let ((result "")
2760 (start 0)
2761 end)
2762 (if (or (null (string-match "[^\"]" argument))
2763 (< (match-end 0) (length argument)))
2764 (while (string-match "[\"]" argument start)
2765 (setq end (match-beginning 0)
2766 result (concat result (substring argument start end)
2767 "\\" (substring argument end (1+ end)))
2768 start (1+ end))))
2769 (concat "\"" result (substring argument start) "\"")))
2771 ((and (eq system-type 'windows-nt) (w32-shell-dos-semantics))
2773 ;; First, quote argument so that CommandLineToArgvW will
2774 ;; understand it. See
2775 ;; http://msdn.microsoft.com/en-us/library/17w5ykft%28v=vs.85%29.aspx
2776 ;; After we perform that level of quoting, escape shell
2777 ;; metacharacters so that cmd won't mangle our argument. If the
2778 ;; argument contains no double quote characters, we can just
2779 ;; surround it with double quotes. Otherwise, we need to prefix
2780 ;; each shell metacharacter with a caret.
2782 (setq argument
2783 ;; escape backslashes at end of string
2784 (replace-regexp-in-string
2785 "\\(\\\\*\\)$"
2786 "\\1\\1"
2787 ;; escape backslashes and quotes in string body
2788 (replace-regexp-in-string
2789 "\\(\\\\*\\)\""
2790 "\\1\\1\\\\\""
2791 argument)))
2793 (if (string-match "[%!\"]" argument)
2794 (concat
2795 "^\""
2796 (replace-regexp-in-string
2797 "\\([%!()\"<>&|^]\\)"
2798 "^\\1"
2799 argument)
2800 "^\"")
2801 (concat "\"" argument "\"")))
2804 (if (equal argument "")
2805 "''"
2806 ;; Quote everything except POSIX filename characters.
2807 ;; This should be safe enough even for really weird shells.
2808 (replace-regexp-in-string
2809 "\n" "'\n'"
2810 (replace-regexp-in-string "[^-0-9a-zA-Z_./\n]" "\\\\\\&" argument))))
2813 (defun string-or-null-p (object)
2814 "Return t if OBJECT is a string or nil.
2815 Otherwise, return nil."
2816 (or (stringp object) (null object)))
2818 (defun booleanp (object)
2819 "Return t if OBJECT is one of the two canonical boolean values: t or nil.
2820 Otherwise, return nil."
2821 (and (memq object '(nil t)) t))
2823 (defun special-form-p (object)
2824 "Non-nil if and only if OBJECT is a special form."
2825 (if (and (symbolp object) (fboundp object))
2826 (setq object (indirect-function object)))
2827 (and (subrp object) (eq (cdr (subr-arity object)) 'unevalled)))
2829 (defun macrop (object)
2830 "Non-nil if and only if OBJECT is a macro."
2831 (let ((def (indirect-function object)))
2832 (when (consp def)
2833 (or (eq 'macro (car def))
2834 (and (autoloadp def) (memq (nth 4 def) '(macro t)))))))
2836 (defun field-at-pos (pos)
2837 "Return the field at position POS, taking stickiness etc into account."
2838 (let ((raw-field (get-char-property (field-beginning pos) 'field)))
2839 (if (eq raw-field 'boundary)
2840 (get-char-property (1- (field-end pos)) 'field)
2841 raw-field)))
2843 (defun sha1 (object &optional start end binary)
2844 "Return the SHA1 (Secure Hash Algorithm) of an OBJECT.
2845 OBJECT is either a string or a buffer. Optional arguments START and
2846 END are character positions specifying which portion of OBJECT for
2847 computing the hash. If BINARY is non-nil, return a string in binary
2848 form."
2849 (secure-hash 'sha1 object start end binary))
2851 (defun function-get (f prop &optional autoload)
2852 "Return the value of property PROP of function F.
2853 If AUTOLOAD is non-nil and F is autoloaded, try to autoload it
2854 in the hope that it will set PROP. If AUTOLOAD is `macro', only do it
2855 if it's an autoloaded macro."
2856 (let ((val nil))
2857 (while (and (symbolp f)
2858 (null (setq val (get f prop)))
2859 (fboundp f))
2860 (let ((fundef (symbol-function f)))
2861 (if (and autoload (autoloadp fundef)
2862 (not (equal fundef
2863 (autoload-do-load fundef f
2864 (if (eq autoload 'macro)
2865 'macro)))))
2866 nil ;Re-try `get' on the same `f'.
2867 (setq f fundef))))
2868 val))
2870 ;;;; Support for yanking and text properties.
2871 ;; Why here in subr.el rather than in simple.el? --Stef
2873 (defvar yank-handled-properties)
2874 (defvar yank-excluded-properties)
2876 (defun remove-yank-excluded-properties (start end)
2877 "Process text properties between START and END, inserted for a `yank'.
2878 Perform the handling specified by `yank-handled-properties', then
2879 remove properties specified by `yank-excluded-properties'."
2880 (let ((inhibit-read-only t))
2881 (dolist (handler yank-handled-properties)
2882 (let ((prop (car handler))
2883 (fun (cdr handler))
2884 (run-start start))
2885 (while (< run-start end)
2886 (let ((value (get-text-property run-start prop))
2887 (run-end (next-single-property-change
2888 run-start prop nil end)))
2889 (funcall fun value run-start run-end)
2890 (setq run-start run-end)))))
2891 (with-silent-modifications
2892 (if (eq yank-excluded-properties t)
2893 (set-text-properties start end nil)
2894 (remove-list-of-text-properties start end yank-excluded-properties)))))
2896 (defvar yank-undo-function)
2898 (defun insert-for-yank (string)
2899 "Insert STRING at point for the `yank' command.
2901 This function is like `insert', except it honors the variables
2902 `yank-handled-properties' and `yank-excluded-properties', and the
2903 `yank-handler' text property, in the way that `yank' does."
2904 (let (to)
2905 (while (setq to (next-single-property-change 0 'yank-handler string))
2906 (insert-for-yank-1 (substring string 0 to))
2907 (setq string (substring string to))))
2908 (insert-for-yank-1 string))
2910 (defun insert-for-yank-1 (string)
2911 "Helper for `insert-for-yank', which see."
2912 (let* ((handler (and (stringp string)
2913 (get-text-property 0 'yank-handler string)))
2914 (param (or (nth 1 handler) string))
2915 (opoint (point))
2916 (inhibit-read-only inhibit-read-only)
2917 end)
2919 (setq yank-undo-function t)
2920 (if (nth 0 handler) ; FUNCTION
2921 (funcall (car handler) param)
2922 (insert param))
2923 (setq end (point))
2925 ;; Prevent read-only properties from interfering with the
2926 ;; following text property changes.
2927 (setq inhibit-read-only t)
2929 (unless (nth 2 handler) ; NOEXCLUDE
2930 (remove-yank-excluded-properties opoint end))
2932 ;; If last inserted char has properties, mark them as rear-nonsticky.
2933 (if (and (> end opoint)
2934 (text-properties-at (1- end)))
2935 (put-text-property (1- end) end 'rear-nonsticky t))
2937 (if (eq yank-undo-function t) ; not set by FUNCTION
2938 (setq yank-undo-function (nth 3 handler))) ; UNDO
2939 (if (nth 4 handler) ; COMMAND
2940 (setq this-command (nth 4 handler)))))
2942 (defun insert-buffer-substring-no-properties (buffer &optional start end)
2943 "Insert before point a substring of BUFFER, without text properties.
2944 BUFFER may be a buffer or a buffer name.
2945 Arguments START and END are character positions specifying the substring.
2946 They default to the values of (point-min) and (point-max) in BUFFER."
2947 (let ((opoint (point)))
2948 (insert-buffer-substring buffer start end)
2949 (let ((inhibit-read-only t))
2950 (set-text-properties opoint (point) nil))))
2952 (defun insert-buffer-substring-as-yank (buffer &optional start end)
2953 "Insert before point a part of BUFFER, stripping some text properties.
2954 BUFFER may be a buffer or a buffer name.
2955 Arguments START and END are character positions specifying the substring.
2956 They default to the values of (point-min) and (point-max) in BUFFER.
2957 Before insertion, process text properties according to
2958 `yank-handled-properties' and `yank-excluded-properties'."
2959 ;; Since the buffer text should not normally have yank-handler properties,
2960 ;; there is no need to handle them here.
2961 (let ((opoint (point)))
2962 (insert-buffer-substring buffer start end)
2963 (remove-yank-excluded-properties opoint (point))))
2965 (defun yank-handle-font-lock-face-property (face start end)
2966 "If `font-lock-defaults' is nil, apply FACE as a `face' property.
2967 START and END denote the start and end of the text to act on.
2968 Do nothing if FACE is nil."
2969 (and face
2970 (null font-lock-defaults)
2971 (put-text-property start end 'face face)))
2973 ;; This removes `mouse-face' properties in *Help* buffer buttons:
2974 ;; http://lists.gnu.org/archive/html/emacs-devel/2002-04/msg00648.html
2975 (defun yank-handle-category-property (category start end)
2976 "Apply property category CATEGORY's properties between START and END."
2977 (when category
2978 (let ((start2 start))
2979 (while (< start2 end)
2980 (let ((end2 (next-property-change start2 nil end))
2981 (original (text-properties-at start2)))
2982 (set-text-properties start2 end2 (symbol-plist category))
2983 (add-text-properties start2 end2 original)
2984 (setq start2 end2))))))
2987 ;;;; Synchronous shell commands.
2989 (defun start-process-shell-command (name buffer &rest args)
2990 "Start a program in a subprocess. Return the process object for it.
2991 NAME is name for process. It is modified if necessary to make it unique.
2992 BUFFER is the buffer (or buffer name) to associate with the process.
2993 Process output goes at end of that buffer, unless you specify
2994 an output stream or filter function to handle the output.
2995 BUFFER may be also nil, meaning that this process is not associated
2996 with any buffer
2997 COMMAND is the shell command to run.
2999 An old calling convention accepted any number of arguments after COMMAND,
3000 which were just concatenated to COMMAND. This is still supported but strongly
3001 discouraged."
3002 (declare (advertised-calling-convention (name buffer command) "23.1"))
3003 ;; We used to use `exec' to replace the shell with the command,
3004 ;; but that failed to handle (...) and semicolon, etc.
3005 (start-process name buffer shell-file-name shell-command-switch
3006 (mapconcat 'identity args " ")))
3008 (defun start-file-process-shell-command (name buffer &rest args)
3009 "Start a program in a subprocess. Return the process object for it.
3010 Similar to `start-process-shell-command', but calls `start-file-process'."
3011 (declare (advertised-calling-convention (name buffer command) "23.1"))
3012 (start-file-process
3013 name buffer
3014 (if (file-remote-p default-directory) "/bin/sh" shell-file-name)
3015 (if (file-remote-p default-directory) "-c" shell-command-switch)
3016 (mapconcat 'identity args " ")))
3018 (defun call-process-shell-command (command &optional infile buffer display
3019 &rest args)
3020 "Execute the shell command COMMAND synchronously in separate process.
3021 The remaining arguments are optional.
3022 The program's input comes from file INFILE (nil means `/dev/null').
3023 Insert output in BUFFER before point; t means current buffer;
3024 nil for BUFFER means discard it; 0 means discard and don't wait.
3025 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
3026 REAL-BUFFER says what to do with standard output, as above,
3027 while STDERR-FILE says what to do with standard error in the child.
3028 STDERR-FILE may be nil (discard standard error output),
3029 t (mix it with ordinary output), or a file name string.
3031 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
3032 Wildcards and redirection are handled as usual in the shell.
3034 If BUFFER is 0, `call-process-shell-command' returns immediately with value nil.
3035 Otherwise it waits for COMMAND to terminate and returns a numeric exit
3036 status or a signal description string.
3037 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.
3039 An old calling convention accepted any number of arguments after DISPLAY,
3040 which were just concatenated to COMMAND. This is still supported but strongly
3041 discouraged."
3042 (declare (advertised-calling-convention
3043 (command &optional infile buffer display) "24.5"))
3044 ;; We used to use `exec' to replace the shell with the command,
3045 ;; but that failed to handle (...) and semicolon, etc.
3046 (call-process shell-file-name
3047 infile buffer display
3048 shell-command-switch
3049 (mapconcat 'identity (cons command args) " ")))
3051 (defun process-file-shell-command (command &optional infile buffer display
3052 &rest args)
3053 "Process files synchronously in a separate process.
3054 Similar to `call-process-shell-command', but calls `process-file'."
3055 (declare (advertised-calling-convention
3056 (command &optional infile buffer display) "24.5"))
3057 (process-file
3058 (if (file-remote-p default-directory) "/bin/sh" shell-file-name)
3059 infile buffer display
3060 (if (file-remote-p default-directory) "-c" shell-command-switch)
3061 (mapconcat 'identity (cons command args) " ")))
3063 (defun call-shell-region (start end command &optional delete buffer)
3064 "Send text from START to END as input to an inferior shell running COMMAND.
3065 Delete the text if fourth arg DELETE is non-nil.
3067 Insert output in BUFFER before point; t means current buffer; nil for
3068 BUFFER means discard it; 0 means discard and don't wait; and `(:file
3069 FILE)', where FILE is a file name string, means that it should be
3070 written to that file (if the file already exists it is overwritten).
3071 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
3072 REAL-BUFFER says what to do with standard output, as above,
3073 while STDERR-FILE says what to do with standard error in the child.
3074 STDERR-FILE may be nil (discard standard error output),
3075 t (mix it with ordinary output), or a file name string.
3077 If BUFFER is 0, `call-shell-region' returns immediately with value nil.
3078 Otherwise it waits for COMMAND to terminate
3079 and returns a numeric exit status or a signal description string.
3080 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
3081 (call-process-region start end
3082 shell-file-name delete buffer nil
3083 shell-command-switch command))
3085 ;;;; Lisp macros to do various things temporarily.
3087 (defmacro track-mouse (&rest body)
3088 "Evaluate BODY with mouse movement events enabled.
3089 Within a `track-mouse' form, mouse motion generates input events that
3090 you can read with `read-event'.
3091 Normally, mouse motion is ignored."
3092 (declare (debug t) (indent 0))
3093 `(internal--track-mouse (lambda () ,@body)))
3095 (defmacro with-current-buffer (buffer-or-name &rest body)
3096 "Execute the forms in BODY with BUFFER-OR-NAME temporarily current.
3097 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3098 The value returned is the value of the last form in BODY. See
3099 also `with-temp-buffer'."
3100 (declare (indent 1) (debug t))
3101 `(save-current-buffer
3102 (set-buffer ,buffer-or-name)
3103 ,@body))
3105 (defun internal--before-with-selected-window (window)
3106 (let ((other-frame (window-frame window)))
3107 (list window (selected-window)
3108 ;; Selecting a window on another frame also changes that
3109 ;; frame's frame-selected-window. We must save&restore it.
3110 (unless (eq (selected-frame) other-frame)
3111 (frame-selected-window other-frame))
3112 ;; Also remember the top-frame if on ttys.
3113 (unless (eq (selected-frame) other-frame)
3114 (tty-top-frame other-frame)))))
3116 (defun internal--after-with-selected-window (state)
3117 ;; First reset frame-selected-window.
3118 (when (window-live-p (nth 2 state))
3119 ;; We don't use set-frame-selected-window because it does not
3120 ;; pass the `norecord' argument to Fselect_window.
3121 (select-window (nth 2 state) 'norecord)
3122 (and (frame-live-p (nth 3 state))
3123 (not (eq (tty-top-frame) (nth 3 state)))
3124 (select-frame (nth 3 state) 'norecord)))
3125 ;; Then reset the actual selected-window.
3126 (when (window-live-p (nth 1 state))
3127 (select-window (nth 1 state) 'norecord)))
3129 (defmacro with-selected-window (window &rest body)
3130 "Execute the forms in BODY with WINDOW as the selected window.
3131 The value returned is the value of the last form in BODY.
3133 This macro saves and restores the selected window, as well as the
3134 selected window of each frame. It does not change the order of
3135 recently selected windows. If the previously selected window of
3136 some frame is no longer live at the end of BODY, that frame's
3137 selected window is left alone. If the selected window is no
3138 longer live, then whatever window is selected at the end of BODY
3139 remains selected.
3141 This macro uses `save-current-buffer' to save and restore the
3142 current buffer, since otherwise its normal operation could
3143 potentially make a different buffer current. It does not alter
3144 the buffer list ordering."
3145 (declare (indent 1) (debug t))
3146 `(let ((save-selected-window--state
3147 (internal--before-with-selected-window ,window)))
3148 (save-current-buffer
3149 (unwind-protect
3150 (progn (select-window (car save-selected-window--state) 'norecord)
3151 ,@body)
3152 (internal--after-with-selected-window save-selected-window--state)))))
3154 (defmacro with-selected-frame (frame &rest body)
3155 "Execute the forms in BODY with FRAME as the selected frame.
3156 The value returned is the value of the last form in BODY.
3158 This macro saves and restores the selected frame, and changes the
3159 order of neither the recently selected windows nor the buffers in
3160 the buffer list."
3161 (declare (indent 1) (debug t))
3162 (let ((old-frame (make-symbol "old-frame"))
3163 (old-buffer (make-symbol "old-buffer")))
3164 `(let ((,old-frame (selected-frame))
3165 (,old-buffer (current-buffer)))
3166 (unwind-protect
3167 (progn (select-frame ,frame 'norecord)
3168 ,@body)
3169 (when (frame-live-p ,old-frame)
3170 (select-frame ,old-frame 'norecord))
3171 (when (buffer-live-p ,old-buffer)
3172 (set-buffer ,old-buffer))))))
3174 (defmacro save-window-excursion (&rest body)
3175 "Execute BODY, then restore previous window configuration.
3176 This macro saves the window configuration on the selected frame,
3177 executes BODY, then calls `set-window-configuration' to restore
3178 the saved window configuration. The return value is the last
3179 form in BODY. The window configuration is also restored if BODY
3180 exits nonlocally.
3182 BEWARE: Most uses of this macro introduce bugs.
3183 E.g. it should not be used to try and prevent some code from opening
3184 a new window, since that window may sometimes appear in another frame,
3185 in which case `save-window-excursion' cannot help."
3186 (declare (indent 0) (debug t))
3187 (let ((c (make-symbol "wconfig")))
3188 `(let ((,c (current-window-configuration)))
3189 (unwind-protect (progn ,@body)
3190 (set-window-configuration ,c)))))
3192 (defun internal-temp-output-buffer-show (buffer)
3193 "Internal function for `with-output-to-temp-buffer'."
3194 (with-current-buffer buffer
3195 (set-buffer-modified-p nil)
3196 (goto-char (point-min)))
3198 (if temp-buffer-show-function
3199 (funcall temp-buffer-show-function buffer)
3200 (with-current-buffer buffer
3201 (let* ((window
3202 (let ((window-combination-limit
3203 ;; When `window-combination-limit' equals
3204 ;; `temp-buffer' or `temp-buffer-resize' and
3205 ;; `temp-buffer-resize-mode' is enabled in this
3206 ;; buffer bind it to t so resizing steals space
3207 ;; preferably from the window that was split.
3208 (if (or (eq window-combination-limit 'temp-buffer)
3209 (and (eq window-combination-limit
3210 'temp-buffer-resize)
3211 temp-buffer-resize-mode))
3213 window-combination-limit)))
3214 (display-buffer buffer)))
3215 (frame (and window (window-frame window))))
3216 (when window
3217 (unless (eq frame (selected-frame))
3218 (make-frame-visible frame))
3219 (setq minibuffer-scroll-window window)
3220 (set-window-hscroll window 0)
3221 ;; Don't try this with NOFORCE non-nil!
3222 (set-window-start window (point-min) t)
3223 ;; This should not be necessary.
3224 (set-window-point window (point-min))
3225 ;; Run `temp-buffer-show-hook', with the chosen window selected.
3226 (with-selected-window window
3227 (run-hooks 'temp-buffer-show-hook))))))
3228 ;; Return nil.
3229 nil)
3231 ;; Doc is very similar to with-temp-buffer-window.
3232 (defmacro with-output-to-temp-buffer (bufname &rest body)
3233 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.
3235 This construct makes buffer BUFNAME empty before running BODY.
3236 It does not make the buffer current for BODY.
3237 Instead it binds `standard-output' to that buffer, so that output
3238 generated with `prin1' and similar functions in BODY goes into
3239 the buffer.
3241 At the end of BODY, this marks buffer BUFNAME unmodified and displays
3242 it in a window, but does not select it. The normal way to do this is
3243 by calling `display-buffer', then running `temp-buffer-show-hook'.
3244 However, if `temp-buffer-show-function' is non-nil, it calls that
3245 function instead (and does not run `temp-buffer-show-hook'). The
3246 function gets one argument, the buffer to display.
3248 The return value of `with-output-to-temp-buffer' is the value of the
3249 last form in BODY. If BODY does not finish normally, the buffer
3250 BUFNAME is not displayed.
3252 This runs the hook `temp-buffer-setup-hook' before BODY,
3253 with the buffer BUFNAME temporarily current. It runs the hook
3254 `temp-buffer-show-hook' after displaying buffer BUFNAME, with that
3255 buffer temporarily current, and the window that was used to display it
3256 temporarily selected. But it doesn't run `temp-buffer-show-hook'
3257 if it uses `temp-buffer-show-function'.
3259 By default, the setup hook puts the buffer into Help mode before running BODY.
3260 If BODY does not change the major mode, the show hook makes the buffer
3261 read-only, and scans it for function and variable names to make them into
3262 clickable cross-references.
3264 See the related form `with-temp-buffer-window'."
3265 (declare (debug t))
3266 (let ((old-dir (make-symbol "old-dir"))
3267 (buf (make-symbol "buf")))
3268 `(let* ((,old-dir default-directory)
3269 (,buf
3270 (with-current-buffer (get-buffer-create ,bufname)
3271 (prog1 (current-buffer)
3272 (kill-all-local-variables)
3273 ;; FIXME: delete_all_overlays
3274 (setq default-directory ,old-dir)
3275 (setq buffer-read-only nil)
3276 (setq buffer-file-name nil)
3277 (setq buffer-undo-list t)
3278 (let ((inhibit-read-only t)
3279 (inhibit-modification-hooks t))
3280 (erase-buffer)
3281 (run-hooks 'temp-buffer-setup-hook)))))
3282 (standard-output ,buf))
3283 (prog1 (progn ,@body)
3284 (internal-temp-output-buffer-show ,buf)))))
3286 (defmacro with-temp-file (file &rest body)
3287 "Create a new buffer, evaluate BODY there, and write the buffer to FILE.
3288 The value returned is the value of the last form in BODY.
3289 See also `with-temp-buffer'."
3290 (declare (indent 1) (debug t))
3291 (let ((temp-file (make-symbol "temp-file"))
3292 (temp-buffer (make-symbol "temp-buffer")))
3293 `(let ((,temp-file ,file)
3294 (,temp-buffer
3295 (get-buffer-create (generate-new-buffer-name " *temp file*"))))
3296 (unwind-protect
3297 (prog1
3298 (with-current-buffer ,temp-buffer
3299 ,@body)
3300 (with-current-buffer ,temp-buffer
3301 (write-region nil nil ,temp-file nil 0)))
3302 (and (buffer-name ,temp-buffer)
3303 (kill-buffer ,temp-buffer))))))
3305 (defmacro with-temp-message (message &rest body)
3306 "Display MESSAGE temporarily if non-nil while BODY is evaluated.
3307 The original message is restored to the echo area after BODY has finished.
3308 The value returned is the value of the last form in BODY.
3309 MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
3310 If MESSAGE is nil, the echo area and message log buffer are unchanged.
3311 Use a MESSAGE of \"\" to temporarily clear the echo area."
3312 (declare (debug t) (indent 1))
3313 (let ((current-message (make-symbol "current-message"))
3314 (temp-message (make-symbol "with-temp-message")))
3315 `(let ((,temp-message ,message)
3316 (,current-message))
3317 (unwind-protect
3318 (progn
3319 (when ,temp-message
3320 (setq ,current-message (current-message))
3321 (message "%s" ,temp-message))
3322 ,@body)
3323 (and ,temp-message
3324 (if ,current-message
3325 (message "%s" ,current-message)
3326 (message nil)))))))
3328 (defmacro with-temp-buffer (&rest body)
3329 "Create a temporary buffer, and evaluate BODY there like `progn'.
3330 See also `with-temp-file' and `with-output-to-string'."
3331 (declare (indent 0) (debug t))
3332 (let ((temp-buffer (make-symbol "temp-buffer")))
3333 `(let ((,temp-buffer (generate-new-buffer " *temp*")))
3334 ;; FIXME: kill-buffer can change current-buffer in some odd cases.
3335 (with-current-buffer ,temp-buffer
3336 (unwind-protect
3337 (progn ,@body)
3338 (and (buffer-name ,temp-buffer)
3339 (kill-buffer ,temp-buffer)))))))
3341 (defmacro with-silent-modifications (&rest body)
3342 "Execute BODY, pretending it does not modify the buffer.
3343 This macro is Typically used around modifications of
3344 text-properties which do not really affect the buffer's content.
3345 If BODY performs real modifications to the buffer's text, other
3346 than cosmetic ones, undo data may become corrupted.
3348 This macro will run BODY normally, but doesn't count its buffer
3349 modifications as being buffer modifications. This affects things
3350 like `buffer-modified-p', checking whether the file is locked by
3351 someone else, running buffer modification hooks, and other things
3352 of that nature."
3353 (declare (debug t) (indent 0))
3354 (let ((modified (make-symbol "modified")))
3355 `(let* ((,modified (buffer-modified-p))
3356 (buffer-undo-list t)
3357 (inhibit-read-only t)
3358 (inhibit-modification-hooks t))
3359 (unwind-protect
3360 (progn
3361 ,@body)
3362 (unless ,modified
3363 (restore-buffer-modified-p nil))))))
3365 (defmacro with-output-to-string (&rest body)
3366 "Execute BODY, return the text it sent to `standard-output', as a string."
3367 (declare (indent 0) (debug t))
3368 `(let ((standard-output
3369 (get-buffer-create (generate-new-buffer-name " *string-output*"))))
3370 (unwind-protect
3371 (progn
3372 (let ((standard-output standard-output))
3373 ,@body)
3374 (with-current-buffer standard-output
3375 (buffer-string)))
3376 (kill-buffer standard-output))))
3378 (defmacro with-local-quit (&rest body)
3379 "Execute BODY, allowing quits to terminate BODY but not escape further.
3380 When a quit terminates BODY, `with-local-quit' returns nil but
3381 requests another quit. That quit will be processed as soon as quitting
3382 is allowed once again. (Immediately, if `inhibit-quit' is nil.)"
3383 (declare (debug t) (indent 0))
3384 `(condition-case nil
3385 (let ((inhibit-quit nil))
3386 ,@body)
3387 (quit (setq quit-flag t)
3388 ;; This call is to give a chance to handle quit-flag
3389 ;; in case inhibit-quit is nil.
3390 ;; Without this, it will not be handled until the next function
3391 ;; call, and that might allow it to exit thru a condition-case
3392 ;; that intends to handle the quit signal next time.
3393 (eval '(ignore nil)))))
3395 (defmacro while-no-input (&rest body)
3396 "Execute BODY only as long as there's no pending input.
3397 If input arrives, that ends the execution of BODY,
3398 and `while-no-input' returns t. Quitting makes it return nil.
3399 If BODY finishes, `while-no-input' returns whatever value BODY produced."
3400 (declare (debug t) (indent 0))
3401 (let ((catch-sym (make-symbol "input")))
3402 `(with-local-quit
3403 (catch ',catch-sym
3404 (let ((throw-on-input ',catch-sym))
3405 (or (input-pending-p)
3406 (progn ,@body)))))))
3408 (defmacro condition-case-unless-debug (var bodyform &rest handlers)
3409 "Like `condition-case' except that it does not prevent debugging.
3410 More specifically if `debug-on-error' is set then the debugger will be invoked
3411 even if this catches the signal."
3412 (declare (debug condition-case) (indent 2))
3413 `(condition-case ,var
3414 ,bodyform
3415 ,@(mapcar (lambda (handler)
3416 `((debug ,@(if (listp (car handler)) (car handler)
3417 (list (car handler))))
3418 ,@(cdr handler)))
3419 handlers)))
3421 (define-obsolete-function-alias 'condition-case-no-debug
3422 'condition-case-unless-debug "24.1")
3424 (defmacro with-demoted-errors (format &rest body)
3425 "Run BODY and demote any errors to simple messages.
3426 FORMAT is a string passed to `message' to format any error message.
3427 It should contain a single %-sequence; e.g., \"Error: %S\".
3429 If `debug-on-error' is non-nil, run BODY without catching its errors.
3430 This is to be used around code which is not expected to signal an error
3431 but which should be robust in the unexpected case that an error is signaled.
3433 For backward compatibility, if FORMAT is not a constant string, it
3434 is assumed to be part of BODY, in which case the message format
3435 used is \"Error: %S\"."
3436 (declare (debug t) (indent 1))
3437 (let ((err (make-symbol "err"))
3438 (format (if (and (stringp format) body) format
3439 (prog1 "Error: %S"
3440 (if format (push format body))))))
3441 `(condition-case-unless-debug ,err
3442 ,(macroexp-progn body)
3443 (error (message ,format ,err) nil))))
3445 (defmacro combine-after-change-calls (&rest body)
3446 "Execute BODY, but don't call the after-change functions till the end.
3447 If BODY makes changes in the buffer, they are recorded
3448 and the functions on `after-change-functions' are called several times
3449 when BODY is finished.
3450 The return value is the value of the last form in BODY.
3452 If `before-change-functions' is non-nil, then calls to the after-change
3453 functions can't be deferred, so in that case this macro has no effect.
3455 Do not alter `after-change-functions' or `before-change-functions'
3456 in BODY."
3457 (declare (indent 0) (debug t))
3458 `(unwind-protect
3459 (let ((combine-after-change-calls t))
3460 . ,body)
3461 (combine-after-change-execute)))
3463 (defmacro with-case-table (table &rest body)
3464 "Execute the forms in BODY with TABLE as the current case table.
3465 The value returned is the value of the last form in BODY."
3466 (declare (indent 1) (debug t))
3467 (let ((old-case-table (make-symbol "table"))
3468 (old-buffer (make-symbol "buffer")))
3469 `(let ((,old-case-table (current-case-table))
3470 (,old-buffer (current-buffer)))
3471 (unwind-protect
3472 (progn (set-case-table ,table)
3473 ,@body)
3474 (with-current-buffer ,old-buffer
3475 (set-case-table ,old-case-table))))))
3477 (defmacro with-file-modes (modes &rest body)
3478 "Execute BODY with default file permissions temporarily set to MODES.
3479 MODES is as for `set-default-file-modes'."
3480 (declare (indent 1) (debug t))
3481 (let ((umask (make-symbol "umask")))
3482 `(let ((,umask (default-file-modes)))
3483 (unwind-protect
3484 (progn
3485 (set-default-file-modes ,modes)
3486 ,@body)
3487 (set-default-file-modes ,umask)))))
3490 ;;; Matching and match data.
3492 (defvar save-match-data-internal)
3494 ;; We use save-match-data-internal as the local variable because
3495 ;; that works ok in practice (people should not use that variable elsewhere).
3496 ;; We used to use an uninterned symbol; the compiler handles that properly
3497 ;; now, but it generates slower code.
3498 (defmacro save-match-data (&rest body)
3499 "Execute the BODY forms, restoring the global value of the match data.
3500 The value returned is the value of the last form in BODY."
3501 ;; It is better not to use backquote here,
3502 ;; because that makes a bootstrapping problem
3503 ;; if you need to recompile all the Lisp files using interpreted code.
3504 (declare (indent 0) (debug t))
3505 (list 'let
3506 '((save-match-data-internal (match-data)))
3507 (list 'unwind-protect
3508 (cons 'progn body)
3509 ;; It is safe to free (evaporate) markers immediately here,
3510 ;; as Lisp programs should not copy from save-match-data-internal.
3511 '(set-match-data save-match-data-internal 'evaporate))))
3513 (defun match-string (num &optional string)
3514 "Return string of text matched by last search.
3515 NUM specifies which parenthesized expression in the last regexp.
3516 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
3517 Zero means the entire text matched by the whole regexp or whole string.
3518 STRING should be given if the last search was by `string-match' on STRING.
3519 If STRING is nil, the current buffer should be the same buffer
3520 the search/match was performed in."
3521 (if (match-beginning num)
3522 (if string
3523 (substring string (match-beginning num) (match-end num))
3524 (buffer-substring (match-beginning num) (match-end num)))))
3526 (defun match-string-no-properties (num &optional string)
3527 "Return string of text matched by last search, without text properties.
3528 NUM specifies which parenthesized expression in the last regexp.
3529 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
3530 Zero means the entire text matched by the whole regexp or whole string.
3531 STRING should be given if the last search was by `string-match' on STRING.
3532 If STRING is nil, the current buffer should be the same buffer
3533 the search/match was performed in."
3534 (if (match-beginning num)
3535 (if string
3536 (substring-no-properties string (match-beginning num)
3537 (match-end num))
3538 (buffer-substring-no-properties (match-beginning num)
3539 (match-end num)))))
3542 (defun match-substitute-replacement (replacement
3543 &optional fixedcase literal string subexp)
3544 "Return REPLACEMENT as it will be inserted by `replace-match'.
3545 In other words, all back-references in the form `\\&' and `\\N'
3546 are substituted with actual strings matched by the last search.
3547 Optional FIXEDCASE, LITERAL, STRING and SUBEXP have the same
3548 meaning as for `replace-match'."
3549 (let ((match (match-string 0 string)))
3550 (save-match-data
3551 (set-match-data (mapcar (lambda (x)
3552 (if (numberp x)
3553 (- x (match-beginning 0))
3555 (match-data t)))
3556 (replace-match replacement fixedcase literal match subexp))))
3559 (defun looking-back (regexp &optional limit greedy)
3560 "Return non-nil if text before point matches regular expression REGEXP.
3561 Like `looking-at' except matches before point, and is slower.
3562 LIMIT if non-nil speeds up the search by specifying a minimum
3563 starting position, to avoid checking matches that would start
3564 before LIMIT.
3566 If GREEDY is non-nil, extend the match backwards as far as
3567 possible, stopping when a single additional previous character
3568 cannot be part of a match for REGEXP. When the match is
3569 extended, its starting position is allowed to occur before
3570 LIMIT.
3572 As a general recommendation, try to avoid using `looking-back'
3573 wherever possible, since it is slow."
3574 (declare
3575 (advertised-calling-convention (regexp limit &optional greedy) "25.1"))
3576 (let ((start (point))
3577 (pos
3578 (save-excursion
3579 (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
3580 (point)))))
3581 (if (and greedy pos)
3582 (save-restriction
3583 (narrow-to-region (point-min) start)
3584 (while (and (> pos (point-min))
3585 (save-excursion
3586 (goto-char pos)
3587 (backward-char 1)
3588 (looking-at (concat "\\(?:" regexp "\\)\\'"))))
3589 (setq pos (1- pos)))
3590 (save-excursion
3591 (goto-char pos)
3592 (looking-at (concat "\\(?:" regexp "\\)\\'")))))
3593 (not (null pos))))
3595 (defsubst looking-at-p (regexp)
3597 Same as `looking-at' except this function does not change the match data."
3598 (let ((inhibit-changing-match-data t))
3599 (looking-at regexp)))
3601 (defsubst string-match-p (regexp string &optional start)
3603 Same as `string-match' except this function does not change the match data."
3604 (let ((inhibit-changing-match-data t))
3605 (string-match regexp string start)))
3607 (defun subregexp-context-p (regexp pos &optional start)
3608 "Return non-nil if POS is in a normal subregexp context in REGEXP.
3609 A subregexp context is one where a sub-regexp can appear.
3610 A non-subregexp context is for example within brackets, or within a
3611 repetition bounds operator `\\=\\{...\\}', or right after a `\\'.
3612 If START is non-nil, it should be a position in REGEXP, smaller
3613 than POS, and known to be in a subregexp context."
3614 ;; Here's one possible implementation, with the great benefit that it
3615 ;; reuses the regexp-matcher's own parser, so it understands all the
3616 ;; details of the syntax. A disadvantage is that it needs to match the
3617 ;; error string.
3618 (condition-case err
3619 (progn
3620 (string-match (substring regexp (or start 0) pos) "")
3622 (invalid-regexp
3623 (not (member (cadr err) '("Unmatched [ or [^"
3624 "Unmatched \\{"
3625 "Trailing backslash")))))
3626 ;; An alternative implementation:
3627 ;; (defconst re-context-re
3628 ;; (let* ((harmless-ch "[^\\[]")
3629 ;; (harmless-esc "\\\\[^{]")
3630 ;; (class-harmless-ch "[^][]")
3631 ;; (class-lb-harmless "[^]:]")
3632 ;; (class-lb-colon-maybe-charclass ":\\([a-z]+:]\\)?")
3633 ;; (class-lb (concat "\\[\\(" class-lb-harmless
3634 ;; "\\|" class-lb-colon-maybe-charclass "\\)"))
3635 ;; (class
3636 ;; (concat "\\[^?]?"
3637 ;; "\\(" class-harmless-ch
3638 ;; "\\|" class-lb "\\)*"
3639 ;; "\\[?]")) ; special handling for bare [ at end of re
3640 ;; (braces "\\\\{[0-9,]+\\\\}"))
3641 ;; (concat "\\`\\(" harmless-ch "\\|" harmless-esc
3642 ;; "\\|" class "\\|" braces "\\)*\\'"))
3643 ;; "Matches any prefix that corresponds to a normal subregexp context.")
3644 ;; (string-match re-context-re (substring regexp (or start 0) pos))
3647 ;;;; split-string
3649 (defconst split-string-default-separators "[ \f\t\n\r\v]+"
3650 "The default value of separators for `split-string'.
3652 A regexp matching strings of whitespace. May be locale-dependent
3653 \(as yet unimplemented). Should not match non-breaking spaces.
3655 Warning: binding this to a different value and using it as default is
3656 likely to have undesired semantics.")
3658 ;; The specification says that if both SEPARATORS and OMIT-NULLS are
3659 ;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical
3660 ;; expression leads to the equivalent implementation that if SEPARATORS
3661 ;; is defaulted, OMIT-NULLS is treated as t.
3662 (defun split-string (string &optional separators omit-nulls trim)
3663 "Split STRING into substrings bounded by matches for SEPARATORS.
3665 The beginning and end of STRING, and each match for SEPARATORS, are
3666 splitting points. The substrings matching SEPARATORS are removed, and
3667 the substrings between the splitting points are collected as a list,
3668 which is returned.
3670 If SEPARATORS is non-nil, it should be a regular expression matching text
3671 which separates, but is not part of, the substrings. If nil it defaults to
3672 `split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and
3673 OMIT-NULLS is forced to t.
3675 If OMIT-NULLS is t, zero-length substrings are omitted from the list (so
3676 that for the default value of SEPARATORS leading and trailing whitespace
3677 are effectively trimmed). If nil, all zero-length substrings are retained,
3678 which correctly parses CSV format, for example.
3680 If TRIM is non-nil, it should be a regular expression to match
3681 text to trim from the beginning and end of each substring. If trimming
3682 makes the substring empty, it is treated as null.
3684 If you want to trim whitespace from the substrings, the reliably correct
3685 way is using TRIM. Making SEPARATORS match that whitespace gives incorrect
3686 results when there is whitespace at the start or end of STRING. If you
3687 see such calls to `split-string', please fix them.
3689 Note that the effect of `(split-string STRING)' is the same as
3690 `(split-string STRING split-string-default-separators t)'. In the rare
3691 case that you wish to retain zero-length substrings when splitting on
3692 whitespace, use `(split-string STRING split-string-default-separators)'.
3694 Modifies the match data; use `save-match-data' if necessary."
3695 (let* ((keep-nulls (not (if separators omit-nulls t)))
3696 (rexp (or separators split-string-default-separators))
3697 (start 0)
3698 this-start this-end
3699 notfirst
3700 (list nil)
3701 (push-one
3702 ;; Push the substring in range THIS-START to THIS-END
3703 ;; onto LIST, trimming it and perhaps discarding it.
3704 (lambda ()
3705 (when trim
3706 ;; Discard the trim from start of this substring.
3707 (let ((tem (string-match trim string this-start)))
3708 (and (eq tem this-start)
3709 (setq this-start (match-end 0)))))
3711 (when (or keep-nulls (< this-start this-end))
3712 (let ((this (substring string this-start this-end)))
3714 ;; Discard the trim from end of this substring.
3715 (when trim
3716 (let ((tem (string-match (concat trim "\\'") this 0)))
3717 (and tem (< tem (length this))
3718 (setq this (substring this 0 tem)))))
3720 ;; Trimming could make it empty; check again.
3721 (when (or keep-nulls (> (length this) 0))
3722 (push this list)))))))
3724 (while (and (string-match rexp string
3725 (if (and notfirst
3726 (= start (match-beginning 0))
3727 (< start (length string)))
3728 (1+ start) start))
3729 (< start (length string)))
3730 (setq notfirst t)
3731 (setq this-start start this-end (match-beginning 0)
3732 start (match-end 0))
3734 (funcall push-one))
3736 ;; Handle the substring at the end of STRING.
3737 (setq this-start start this-end (length string))
3738 (funcall push-one)
3740 (nreverse list)))
3742 (defun combine-and-quote-strings (strings &optional separator)
3743 "Concatenate the STRINGS, adding the SEPARATOR (default \" \").
3744 This tries to quote the strings to avoid ambiguity such that
3745 (split-string-and-unquote (combine-and-quote-strings strs)) == strs
3746 Only some SEPARATORs will work properly.
3748 Note that this is not intended to protect STRINGS from
3749 interpretation by shells, use `shell-quote-argument' for that."
3750 (let* ((sep (or separator " "))
3751 (re (concat "[\\\"]" "\\|" (regexp-quote sep))))
3752 (mapconcat
3753 (lambda (str)
3754 (if (string-match re str)
3755 (concat "\"" (replace-regexp-in-string "[\\\"]" "\\\\\\&" str) "\"")
3756 str))
3757 strings sep)))
3759 (defun split-string-and-unquote (string &optional separator)
3760 "Split the STRING into a list of strings.
3761 It understands Emacs Lisp quoting within STRING, such that
3762 (split-string-and-unquote (combine-and-quote-strings strs)) == strs
3763 The SEPARATOR regexp defaults to \"\\s-+\"."
3764 (let ((sep (or separator "\\s-+"))
3765 (i (string-match "\"" string)))
3766 (if (null i)
3767 (split-string string sep t) ; no quoting: easy
3768 (append (unless (eq i 0) (split-string (substring string 0 i) sep t))
3769 (let ((rfs (read-from-string string i)))
3770 (cons (car rfs)
3771 (split-string-and-unquote (substring string (cdr rfs))
3772 sep)))))))
3775 ;;;; Replacement in strings.
3777 (defun subst-char-in-string (fromchar tochar string &optional inplace)
3778 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
3779 Unless optional argument INPLACE is non-nil, return a new string."
3780 (let ((i (length string))
3781 (newstr (if inplace string (copy-sequence string))))
3782 (while (> i 0)
3783 (setq i (1- i))
3784 (if (eq (aref newstr i) fromchar)
3785 (aset newstr i tochar)))
3786 newstr))
3788 (defun replace-regexp-in-string (regexp rep string &optional
3789 fixedcase literal subexp start)
3790 "Replace all matches for REGEXP with REP in STRING.
3792 Return a new string containing the replacements.
3794 Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
3795 arguments with the same names of function `replace-match'. If START
3796 is non-nil, start replacements at that index in STRING.
3798 REP is either a string used as the NEWTEXT arg of `replace-match' or a
3799 function. If it is a function, it is called with the actual text of each
3800 match, and its value is used as the replacement text. When REP is called,
3801 the match data are the result of matching REGEXP against a substring
3802 of STRING, the same substring that is the actual text of the match which
3803 is passed to REP as its argument.
3805 To replace only the first match (if any), make REGEXP match up to \\\\='
3806 and replace a sub-expression, e.g.
3807 (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\\\='\" \"bar\" \" foo foo\" nil nil 1)
3808 => \" bar foo\""
3810 ;; To avoid excessive consing from multiple matches in long strings,
3811 ;; don't just call `replace-match' continually. Walk down the
3812 ;; string looking for matches of REGEXP and building up a (reversed)
3813 ;; list MATCHES. This comprises segments of STRING which weren't
3814 ;; matched interspersed with replacements for segments that were.
3815 ;; [For a `large' number of replacements it's more efficient to
3816 ;; operate in a temporary buffer; we can't tell from the function's
3817 ;; args whether to choose the buffer-based implementation, though it
3818 ;; might be reasonable to do so for long enough STRING.]
3819 (let ((l (length string))
3820 (start (or start 0))
3821 matches str mb me)
3822 (save-match-data
3823 (while (and (< start l) (string-match regexp string start))
3824 (setq mb (match-beginning 0)
3825 me (match-end 0))
3826 ;; If we matched the empty string, make sure we advance by one char
3827 (when (= me mb) (setq me (min l (1+ mb))))
3828 ;; Generate a replacement for the matched substring.
3829 ;; Operate only on the substring to minimize string consing.
3830 ;; Set up match data for the substring for replacement;
3831 ;; presumably this is likely to be faster than munging the
3832 ;; match data directly in Lisp.
3833 (string-match regexp (setq str (substring string mb me)))
3834 (setq matches
3835 (cons (replace-match (if (stringp rep)
3837 (funcall rep (match-string 0 str)))
3838 fixedcase literal str subexp)
3839 (cons (substring string start mb) ; unmatched prefix
3840 matches)))
3841 (setq start me))
3842 ;; Reconstruct a string from the pieces.
3843 (setq matches (cons (substring string start l) matches)) ; leftover
3844 (apply #'concat (nreverse matches)))))
3846 (defun string-prefix-p (prefix string &optional ignore-case)
3847 "Return non-nil if PREFIX is a prefix of STRING.
3848 If IGNORE-CASE is non-nil, the comparison is done without paying attention
3849 to case differences."
3850 (let ((prefix-length (length prefix)))
3851 (if (> prefix-length (length string)) nil
3852 (eq t (compare-strings prefix 0 prefix-length string
3853 0 prefix-length ignore-case)))))
3855 (defun string-suffix-p (suffix string &optional ignore-case)
3856 "Return non-nil if SUFFIX is a suffix of STRING.
3857 If IGNORE-CASE is non-nil, the comparison is done without paying
3858 attention to case differences."
3859 (let ((start-pos (- (length string) (length suffix))))
3860 (and (>= start-pos 0)
3861 (eq t (compare-strings suffix nil nil
3862 string start-pos nil ignore-case)))))
3864 (defun bidi-string-mark-left-to-right (str)
3865 "Return a string that can be safely inserted in left-to-right text.
3867 Normally, inserting a string with right-to-left (RTL) script into
3868 a buffer may cause some subsequent text to be displayed as part
3869 of the RTL segment (usually this affects punctuation characters).
3870 This function returns a string which displays as STR but forces
3871 subsequent text to be displayed as left-to-right.
3873 If STR contains any RTL character, this function returns a string
3874 consisting of STR followed by an invisible left-to-right mark
3875 \(LRM) character. Otherwise, it returns STR."
3876 (unless (stringp str)
3877 (signal 'wrong-type-argument (list 'stringp str)))
3878 (if (string-match "\\cR" str)
3879 (concat str (propertize (string ?\x200e) 'invisible t))
3880 str))
3882 (defun string-greaterp (string1 string2)
3883 "Return non-nil if STRING1 is greater than STRING2 in lexicographic order.
3884 Case is significant.
3885 Symbols are also allowed; their print names are used instead."
3886 (string-lessp string2 string1))
3889 ;;;; Specifying things to do later.
3891 (defun load-history-regexp (file)
3892 "Form a regexp to find FILE in `load-history'.
3893 FILE, a string, is described in the function `eval-after-load'."
3894 (if (file-name-absolute-p file)
3895 (setq file (file-truename file)))
3896 (concat (if (file-name-absolute-p file) "\\`" "\\(\\`\\|/\\)")
3897 (regexp-quote file)
3898 (if (file-name-extension file)
3900 ;; Note: regexp-opt can't be used here, since we need to call
3901 ;; this before Emacs has been fully started. 2006-05-21
3902 (concat "\\(" (mapconcat 'regexp-quote load-suffixes "\\|") "\\)?"))
3903 "\\(" (mapconcat 'regexp-quote jka-compr-load-suffixes "\\|")
3904 "\\)?\\'"))
3906 (defun load-history-filename-element (file-regexp)
3907 "Get the first elt of `load-history' whose car matches FILE-REGEXP.
3908 Return nil if there isn't one."
3909 (let* ((loads load-history)
3910 (load-elt (and loads (car loads))))
3911 (save-match-data
3912 (while (and loads
3913 (or (null (car load-elt))
3914 (not (string-match file-regexp (car load-elt)))))
3915 (setq loads (cdr loads)
3916 load-elt (and loads (car loads)))))
3917 load-elt))
3919 (put 'eval-after-load 'lisp-indent-function 1)
3920 (defun eval-after-load (file form)
3921 "Arrange that if FILE is loaded, FORM will be run immediately afterwards.
3922 If FILE is already loaded, evaluate FORM right now.
3923 FORM can be an Elisp expression (in which case it's passed to `eval'),
3924 or a function (in which case it's passed to `funcall' with no argument).
3926 If a matching file is loaded again, FORM will be evaluated again.
3928 If FILE is a string, it may be either an absolute or a relative file
3929 name, and may have an extension (e.g. \".el\") or may lack one, and
3930 additionally may or may not have an extension denoting a compressed
3931 format (e.g. \".gz\").
3933 When FILE is absolute, this first converts it to a true name by chasing
3934 symbolic links. Only a file of this name (see next paragraph regarding
3935 extensions) will trigger the evaluation of FORM. When FILE is relative,
3936 a file whose absolute true name ends in FILE will trigger evaluation.
3938 When FILE lacks an extension, a file name with any extension will trigger
3939 evaluation. Otherwise, its extension must match FILE's. A further
3940 extension for a compressed format (e.g. \".gz\") on FILE will not affect
3941 this name matching.
3943 Alternatively, FILE can be a feature (i.e. a symbol), in which case FORM
3944 is evaluated at the end of any file that `provide's this feature.
3945 If the feature is provided when evaluating code not associated with a
3946 file, FORM is evaluated immediately after the provide statement.
3948 Usually FILE is just a library name like \"font-lock\" or a feature name
3949 like `font-lock'.
3951 This function makes or adds to an entry on `after-load-alist'."
3952 (declare (compiler-macro
3953 (lambda (whole)
3954 (if (eq 'quote (car-safe form))
3955 ;; Quote with lambda so the compiler can look inside.
3956 `(eval-after-load ,file (lambda () ,(nth 1 form)))
3957 whole))))
3958 ;; Add this FORM into after-load-alist (regardless of whether we'll be
3959 ;; evaluating it now).
3960 (let* ((regexp-or-feature
3961 (if (stringp file)
3962 (setq file (purecopy (load-history-regexp file)))
3963 file))
3964 (elt (assoc regexp-or-feature after-load-alist))
3965 (func
3966 (if (functionp form) form
3967 ;; Try to use the "current" lexical/dynamic mode for `form'.
3968 (eval `(lambda () ,form) lexical-binding))))
3969 (unless elt
3970 (setq elt (list regexp-or-feature))
3971 (push elt after-load-alist))
3972 ;; Is there an already loaded file whose name (or `provide' name)
3973 ;; matches FILE?
3974 (prog1 (if (if (stringp file)
3975 (load-history-filename-element regexp-or-feature)
3976 (featurep file))
3977 (funcall func))
3978 (let ((delayed-func
3979 (if (not (symbolp regexp-or-feature)) func
3980 ;; For features, the after-load-alist elements get run when
3981 ;; `provide' is called rather than at the end of the file.
3982 ;; So add an indirection to make sure that `func' is really run
3983 ;; "after-load" in case the provide call happens early.
3984 (lambda ()
3985 (if (not load-file-name)
3986 ;; Not being provided from a file, run func right now.
3987 (funcall func)
3988 (let ((lfn load-file-name)
3989 ;; Don't use letrec, because equal (in
3990 ;; add/remove-hook) would get trapped in a cycle.
3991 (fun (make-symbol "eval-after-load-helper")))
3992 (fset fun (lambda (file)
3993 (when (equal file lfn)
3994 (remove-hook 'after-load-functions fun)
3995 (funcall func))))
3996 (add-hook 'after-load-functions fun 'append)))))))
3997 ;; Add FORM to the element unless it's already there.
3998 (unless (member delayed-func (cdr elt))
3999 (nconc elt (list delayed-func)))))))
4001 (defmacro with-eval-after-load (file &rest body)
4002 "Execute BODY after FILE is loaded.
4003 FILE is normally a feature name, but it can also be a file name,
4004 in case that file does not provide any feature. See `eval-after-load'
4005 for more details about the different forms of FILE and their semantics."
4006 (declare (indent 1) (debug t))
4007 `(eval-after-load ,file (lambda () ,@body)))
4009 (defvar after-load-functions nil
4010 "Special hook run after loading a file.
4011 Each function there is called with a single argument, the absolute
4012 name of the file just loaded.")
4014 (defun do-after-load-evaluation (abs-file)
4015 "Evaluate all `eval-after-load' forms, if any, for ABS-FILE.
4016 ABS-FILE, a string, should be the absolute true name of a file just loaded.
4017 This function is called directly from the C code."
4018 ;; Run the relevant eval-after-load forms.
4019 (dolist (a-l-element after-load-alist)
4020 (when (and (stringp (car a-l-element))
4021 (string-match-p (car a-l-element) abs-file))
4022 ;; discard the file name regexp
4023 (mapc #'funcall (cdr a-l-element))))
4024 ;; Complain when the user uses obsolete files.
4025 (when (string-match-p "/obsolete/\\([^/]*\\)\\'" abs-file)
4026 ;; Maybe we should just use display-warning? This seems yucky...
4027 (let* ((file (file-name-nondirectory abs-file))
4028 (msg (format "Package %s is obsolete!"
4029 (substring file 0
4030 (string-match "\\.elc?\\>" file)))))
4031 ;; Cribbed from cl--compiling-file.
4032 (if (and (boundp 'byte-compile--outbuffer)
4033 (bufferp (symbol-value 'byte-compile--outbuffer))
4034 (equal (buffer-name (symbol-value 'byte-compile--outbuffer))
4035 " *Compiler Output*"))
4036 ;; Don't warn about obsolete files using other obsolete files.
4037 (unless (and (stringp byte-compile-current-file)
4038 (string-match-p "/obsolete/[^/]*\\'"
4039 (expand-file-name
4040 byte-compile-current-file
4041 byte-compile-root-dir)))
4042 (byte-compile-warn "%s" msg))
4043 (run-with-timer 0 nil
4044 (lambda (msg)
4045 (message "%s" msg))
4046 msg))))
4048 ;; Finally, run any other hook.
4049 (run-hook-with-args 'after-load-functions abs-file))
4051 (defun eval-next-after-load (file)
4052 "Read the following input sexp, and run it whenever FILE is loaded.
4053 This makes or adds to an entry on `after-load-alist'.
4054 FILE should be the name of a library, with no directory name."
4055 (declare (obsolete eval-after-load "23.2"))
4056 (eval-after-load file (read)))
4059 (defun display-delayed-warnings ()
4060 "Display delayed warnings from `delayed-warnings-list'.
4061 Used from `delayed-warnings-hook' (which see)."
4062 (dolist (warning (nreverse delayed-warnings-list))
4063 (apply 'display-warning warning))
4064 (setq delayed-warnings-list nil))
4066 (defun collapse-delayed-warnings ()
4067 "Remove duplicates from `delayed-warnings-list'.
4068 Collapse identical adjacent warnings into one (plus count).
4069 Used from `delayed-warnings-hook' (which see)."
4070 (let ((count 1)
4071 collapsed warning)
4072 (while delayed-warnings-list
4073 (setq warning (pop delayed-warnings-list))
4074 (if (equal warning (car delayed-warnings-list))
4075 (setq count (1+ count))
4076 (when (> count 1)
4077 (setcdr warning (cons (format "%s [%d times]" (cadr warning) count)
4078 (cddr warning)))
4079 (setq count 1))
4080 (push warning collapsed)))
4081 (setq delayed-warnings-list (nreverse collapsed))))
4083 ;; At present this is only used for Emacs internals.
4084 ;; Ref http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00085.html
4085 (defvar delayed-warnings-hook '(collapse-delayed-warnings
4086 display-delayed-warnings)
4087 "Normal hook run to process and display delayed warnings.
4088 By default, this hook contains functions to consolidate the
4089 warnings listed in `delayed-warnings-list', display them, and set
4090 `delayed-warnings-list' back to nil.")
4092 (defun delay-warning (type message &optional level buffer-name)
4093 "Display a delayed warning.
4094 Aside from going through `delayed-warnings-list', this is equivalent
4095 to `display-warning'."
4096 (push (list type message level buffer-name) delayed-warnings-list))
4099 ;;;; invisibility specs
4101 (defun add-to-invisibility-spec (element)
4102 "Add ELEMENT to `buffer-invisibility-spec'.
4103 See documentation for `buffer-invisibility-spec' for the kind of elements
4104 that can be added."
4105 (if (eq buffer-invisibility-spec t)
4106 (setq buffer-invisibility-spec (list t)))
4107 (setq buffer-invisibility-spec
4108 (cons element buffer-invisibility-spec)))
4110 (defun remove-from-invisibility-spec (element)
4111 "Remove ELEMENT from `buffer-invisibility-spec'."
4112 (setq buffer-invisibility-spec
4113 (if (consp buffer-invisibility-spec)
4114 (delete element buffer-invisibility-spec)
4115 (list t))))
4117 ;;;; Syntax tables.
4119 (defmacro with-syntax-table (table &rest body)
4120 "Evaluate BODY with syntax table of current buffer set to TABLE.
4121 The syntax table of the current buffer is saved, BODY is evaluated, and the
4122 saved table is restored, even in case of an abnormal exit.
4123 Value is what BODY returns."
4124 (declare (debug t) (indent 1))
4125 (let ((old-table (make-symbol "table"))
4126 (old-buffer (make-symbol "buffer")))
4127 `(let ((,old-table (syntax-table))
4128 (,old-buffer (current-buffer)))
4129 (unwind-protect
4130 (progn
4131 (set-syntax-table ,table)
4132 ,@body)
4133 (save-current-buffer
4134 (set-buffer ,old-buffer)
4135 (set-syntax-table ,old-table))))))
4137 (defun make-syntax-table (&optional oldtable)
4138 "Return a new syntax table.
4139 Create a syntax table which inherits from OLDTABLE (if non-nil) or
4140 from `standard-syntax-table' otherwise."
4141 (let ((table (make-char-table 'syntax-table nil)))
4142 (set-char-table-parent table (or oldtable (standard-syntax-table)))
4143 table))
4145 (defun syntax-after (pos)
4146 "Return the raw syntax descriptor for the char after POS.
4147 If POS is outside the buffer's accessible portion, return nil."
4148 (unless (or (< pos (point-min)) (>= pos (point-max)))
4149 (let ((st (if parse-sexp-lookup-properties
4150 (get-char-property pos 'syntax-table))))
4151 (if (consp st) st
4152 (aref (or st (syntax-table)) (char-after pos))))))
4154 (defun syntax-class (syntax)
4155 "Return the code for the syntax class described by SYNTAX.
4157 SYNTAX should be a raw syntax descriptor; the return value is a
4158 integer which encodes the corresponding syntax class. See Info
4159 node `(elisp)Syntax Table Internals' for a list of codes.
4161 If SYNTAX is nil, return nil."
4162 (and syntax (logand (car syntax) 65535)))
4164 ;; Utility motion commands
4166 (defvar word-move-empty-char-table nil
4167 "Used in `forward-word-strictly' and `backward-word-strictly'
4168 to countermand the effect of `find-word-boundary-function-table'.")
4170 (defun forward-word-strictly (&optional arg)
4171 "Move point forward ARG words (backward if ARG is negative).
4172 If ARG is omitted or nil, move point forward one word.
4173 Normally returns t.
4174 If an edge of the buffer or a field boundary is reached, point is left there
4175 and the function returns nil. Field boundaries are not noticed if
4176 `inhibit-field-text-motion' is non-nil.
4178 This function is like `forward-word', but it is not affected
4179 by `find-word-boundary-function-table'. It is also not interactive."
4180 (let ((find-word-boundary-function-table
4181 (if (char-table-p word-move-empty-char-table)
4182 word-move-empty-char-table
4183 (setq word-move-empty-char-table (make-char-table nil)))))
4184 (forward-word (or arg 1))))
4186 (defun backward-word-strictly (&optional arg)
4187 "Move backward until encountering the beginning of a word.
4188 With argument ARG, do this that many times.
4189 If ARG is omitted or nil, move point backward one word.
4191 This function is like `forward-word', but it is not affected
4192 by `find-word-boundary-function-table'. It is also not interactive."
4193 (let ((find-word-boundary-function-table
4194 (if (char-table-p word-move-empty-char-table)
4195 word-move-empty-char-table
4196 (setq word-move-empty-char-table (make-char-table nil)))))
4197 (forward-word (- (or arg 1)))))
4199 ;; Whitespace
4201 (defun forward-whitespace (arg)
4202 "Move point to the end of the next sequence of whitespace chars.
4203 Each such sequence may be a single newline, or a sequence of
4204 consecutive space and/or tab characters.
4205 With prefix argument ARG, do it ARG times if positive, or move
4206 backwards ARG times if negative."
4207 (interactive "^p")
4208 (if (natnump arg)
4209 (re-search-forward "[ \t]+\\|\n" nil 'move arg)
4210 (while (< arg 0)
4211 (if (re-search-backward "[ \t]+\\|\n" nil 'move)
4212 (or (eq (char-after (match-beginning 0)) ?\n)
4213 (skip-chars-backward " \t")))
4214 (setq arg (1+ arg)))))
4216 ;; Symbols
4218 (defun forward-symbol (arg)
4219 "Move point to the next position that is the end of a symbol.
4220 A symbol is any sequence of characters that are in either the
4221 word constituent or symbol constituent syntax class.
4222 With prefix argument ARG, do it ARG times if positive, or move
4223 backwards ARG times if negative."
4224 (interactive "^p")
4225 (if (natnump arg)
4226 (re-search-forward "\\(\\sw\\|\\s_\\)+" nil 'move arg)
4227 (while (< arg 0)
4228 (if (re-search-backward "\\(\\sw\\|\\s_\\)+" nil 'move)
4229 (skip-syntax-backward "w_"))
4230 (setq arg (1+ arg)))))
4232 ;; Syntax blocks
4234 (defun forward-same-syntax (&optional arg)
4235 "Move point past all characters with the same syntax class.
4236 With prefix argument ARG, do it ARG times if positive, or move
4237 backwards ARG times if negative."
4238 (interactive "^p")
4239 (or arg (setq arg 1))
4240 (while (< arg 0)
4241 (skip-syntax-backward
4242 (char-to-string (char-syntax (char-before))))
4243 (setq arg (1+ arg)))
4244 (while (> arg 0)
4245 (skip-syntax-forward (char-to-string (char-syntax (char-after))))
4246 (setq arg (1- arg))))
4249 ;;;; Text clones
4251 (defvar text-clone--maintaining nil)
4253 (defun text-clone--maintain (ol1 after beg end &optional _len)
4254 "Propagate the changes made under the overlay OL1 to the other clones.
4255 This is used on the `modification-hooks' property of text clones."
4256 (when (and after (not undo-in-progress)
4257 (not text-clone--maintaining)
4258 (overlay-start ol1))
4259 (let ((margin (if (overlay-get ol1 'text-clone-spreadp) 1 0)))
4260 (setq beg (max beg (+ (overlay-start ol1) margin)))
4261 (setq end (min end (- (overlay-end ol1) margin)))
4262 (when (<= beg end)
4263 (save-excursion
4264 (when (overlay-get ol1 'text-clone-syntax)
4265 ;; Check content of the clone's text.
4266 (let ((cbeg (+ (overlay-start ol1) margin))
4267 (cend (- (overlay-end ol1) margin)))
4268 (goto-char cbeg)
4269 (save-match-data
4270 (if (not (re-search-forward
4271 (overlay-get ol1 'text-clone-syntax) cend t))
4272 ;; Mark the overlay for deletion.
4273 (setq end cbeg)
4274 (when (< (match-end 0) cend)
4275 ;; Shrink the clone at its end.
4276 (setq end (min end (match-end 0)))
4277 (move-overlay ol1 (overlay-start ol1)
4278 (+ (match-end 0) margin)))
4279 (when (> (match-beginning 0) cbeg)
4280 ;; Shrink the clone at its beginning.
4281 (setq beg (max (match-beginning 0) beg))
4282 (move-overlay ol1 (- (match-beginning 0) margin)
4283 (overlay-end ol1)))))))
4284 ;; Now go ahead and update the clones.
4285 (let ((head (- beg (overlay-start ol1)))
4286 (tail (- (overlay-end ol1) end))
4287 (str (buffer-substring beg end))
4288 (nothing-left t)
4289 (text-clone--maintaining t))
4290 (dolist (ol2 (overlay-get ol1 'text-clones))
4291 (let ((oe (overlay-end ol2)))
4292 (unless (or (eq ol1 ol2) (null oe))
4293 (setq nothing-left nil)
4294 (let ((mod-beg (+ (overlay-start ol2) head)))
4295 ;;(overlay-put ol2 'modification-hooks nil)
4296 (goto-char (- (overlay-end ol2) tail))
4297 (unless (> mod-beg (point))
4298 (save-excursion (insert str))
4299 (delete-region mod-beg (point)))
4300 ;;(overlay-put ol2 'modification-hooks '(text-clone--maintain))
4301 ))))
4302 (if nothing-left (delete-overlay ol1))))))))
4304 (defun text-clone-create (start end &optional spreadp syntax)
4305 "Create a text clone of START...END at point.
4306 Text clones are chunks of text that are automatically kept identical:
4307 changes done to one of the clones will be immediately propagated to the other.
4309 The buffer's content at point is assumed to be already identical to
4310 the one between START and END.
4311 If SYNTAX is provided it's a regexp that describes the possible text of
4312 the clones; the clone will be shrunk or killed if necessary to ensure that
4313 its text matches the regexp.
4314 If SPREADP is non-nil it indicates that text inserted before/after the
4315 clone should be incorporated in the clone."
4316 ;; To deal with SPREADP we can either use an overlay with `nil t' along
4317 ;; with insert-(behind|in-front-of)-hooks or use a slightly larger overlay
4318 ;; (with a one-char margin at each end) with `t nil'.
4319 ;; We opted for a larger overlay because it behaves better in the case
4320 ;; where the clone is reduced to the empty string (we want the overlay to
4321 ;; stay when the clone's content is the empty string and we want to use
4322 ;; `evaporate' to make sure those overlays get deleted when needed).
4324 (let* ((pt-end (+ (point) (- end start)))
4325 (start-margin (if (or (not spreadp) (bobp) (<= start (point-min)))
4326 0 1))
4327 (end-margin (if (or (not spreadp)
4328 (>= pt-end (point-max))
4329 (>= start (point-max)))
4330 0 1))
4331 ;; FIXME: Reuse overlays at point to extend dups!
4332 (ol1 (make-overlay (- start start-margin) (+ end end-margin) nil t))
4333 (ol2 (make-overlay (- (point) start-margin) (+ pt-end end-margin) nil t))
4334 (dups (list ol1 ol2)))
4335 (overlay-put ol1 'modification-hooks '(text-clone--maintain))
4336 (when spreadp (overlay-put ol1 'text-clone-spreadp t))
4337 (when syntax (overlay-put ol1 'text-clone-syntax syntax))
4338 ;;(overlay-put ol1 'face 'underline)
4339 (overlay-put ol1 'evaporate t)
4340 (overlay-put ol1 'text-clones dups)
4342 (overlay-put ol2 'modification-hooks '(text-clone--maintain))
4343 (when spreadp (overlay-put ol2 'text-clone-spreadp t))
4344 (when syntax (overlay-put ol2 'text-clone-syntax syntax))
4345 ;;(overlay-put ol2 'face 'underline)
4346 (overlay-put ol2 'evaporate t)
4347 (overlay-put ol2 'text-clones dups)))
4349 ;;;; Mail user agents.
4351 ;; Here we include just enough for other packages to be able
4352 ;; to define them.
4354 (defun define-mail-user-agent (symbol composefunc sendfunc
4355 &optional abortfunc hookvar)
4356 "Define a symbol to identify a mail-sending package for `mail-user-agent'.
4358 SYMBOL can be any Lisp symbol. Its function definition and/or
4359 value as a variable do not matter for this usage; we use only certain
4360 properties on its property list, to encode the rest of the arguments.
4362 COMPOSEFUNC is program callable function that composes an outgoing
4363 mail message buffer. This function should set up the basics of the
4364 buffer without requiring user interaction. It should populate the
4365 standard mail headers, leaving the `to:' and `subject:' headers blank
4366 by default.
4368 COMPOSEFUNC should accept several optional arguments--the same
4369 arguments that `compose-mail' takes. See that function's documentation.
4371 SENDFUNC is the command a user would run to send the message.
4373 Optional ABORTFUNC is the command a user would run to abort the
4374 message. For mail packages that don't have a separate abort function,
4375 this can be `kill-buffer' (the equivalent of omitting this argument).
4377 Optional HOOKVAR is a hook variable that gets run before the message
4378 is actually sent. Callers that use the `mail-user-agent' may
4379 install a hook function temporarily on this hook variable.
4380 If HOOKVAR is nil, `mail-send-hook' is used.
4382 The properties used on SYMBOL are `composefunc', `sendfunc',
4383 `abortfunc', and `hookvar'."
4384 (put symbol 'composefunc composefunc)
4385 (put symbol 'sendfunc sendfunc)
4386 (put symbol 'abortfunc (or abortfunc 'kill-buffer))
4387 (put symbol 'hookvar (or hookvar 'mail-send-hook)))
4389 (defvar called-interactively-p-functions nil
4390 "Special hook called to skip special frames in `called-interactively-p'.
4391 The functions are called with 3 arguments: (I FRAME1 FRAME2),
4392 where FRAME1 is a \"current frame\", FRAME2 is the next frame,
4393 I is the index of the frame after FRAME2. It should return nil
4394 if those frames don't seem special and otherwise, it should return
4395 the number of frames to skip (minus 1).")
4397 (defconst internal--funcall-interactively
4398 (symbol-function 'funcall-interactively))
4400 (defun called-interactively-p (&optional kind)
4401 "Return t if the containing function was called by `call-interactively'.
4402 If KIND is `interactive', then only return t if the call was made
4403 interactively by the user, i.e. not in `noninteractive' mode nor
4404 when `executing-kbd-macro'.
4405 If KIND is `any', on the other hand, it will return t for any kind of
4406 interactive call, including being called as the binding of a key or
4407 from a keyboard macro, even in `noninteractive' mode.
4409 This function is very brittle, it may fail to return the intended result when
4410 the code is debugged, advised, or instrumented in some form. Some macros and
4411 special forms (such as `condition-case') may also sometimes wrap their bodies
4412 in a `lambda', so any call to `called-interactively-p' from those bodies will
4413 indicate whether that lambda (rather than the surrounding function) was called
4414 interactively.
4416 Instead of using this function, it is cleaner and more reliable to give your
4417 function an extra optional argument whose `interactive' spec specifies
4418 non-nil unconditionally (\"p\" is a good way to do this), or via
4419 \(not (or executing-kbd-macro noninteractive)).
4421 The only known proper use of `interactive' for KIND is in deciding
4422 whether to display a helpful message, or how to display it. If you're
4423 thinking of using it for any other purpose, it is quite likely that
4424 you're making a mistake. Think: what do you want to do when the
4425 command is called from a keyboard macro?"
4426 (declare (advertised-calling-convention (kind) "23.1"))
4427 (when (not (and (eq kind 'interactive)
4428 (or executing-kbd-macro noninteractive)))
4429 (let* ((i 1) ;; 0 is the called-interactively-p frame.
4430 frame nextframe
4431 (get-next-frame
4432 (lambda ()
4433 (setq frame nextframe)
4434 (setq nextframe (backtrace-frame i 'called-interactively-p))
4435 ;; (message "Frame %d = %S" i nextframe)
4436 (setq i (1+ i)))))
4437 (funcall get-next-frame) ;; Get the first frame.
4438 (while
4439 ;; FIXME: The edebug and advice handling should be made modular and
4440 ;; provided directly by edebug.el and nadvice.el.
4441 (progn
4442 ;; frame =(backtrace-frame i-2)
4443 ;; nextframe=(backtrace-frame i-1)
4444 (funcall get-next-frame)
4445 ;; `pcase' would be a fairly good fit here, but it sometimes moves
4446 ;; branches within local functions, which then messes up the
4447 ;; `backtrace-frame' data we get,
4449 ;; Skip special forms (from non-compiled code).
4450 (and frame (null (car frame)))
4451 ;; Skip also `interactive-p' (because we don't want to know if
4452 ;; interactive-p was called interactively but if it's caller was)
4453 ;; and `byte-code' (idem; this appears in subexpressions of things
4454 ;; like condition-case, which are wrapped in a separate bytecode
4455 ;; chunk).
4456 ;; FIXME: For lexical-binding code, this is much worse,
4457 ;; because the frames look like "byte-code -> funcall -> #[...]",
4458 ;; which is not a reliable signature.
4459 (memq (nth 1 frame) '(interactive-p 'byte-code))
4460 ;; Skip package-specific stack-frames.
4461 (let ((skip (run-hook-with-args-until-success
4462 'called-interactively-p-functions
4463 i frame nextframe)))
4464 (pcase skip
4465 (`nil nil)
4466 (`0 t)
4467 (_ (setq i (+ i skip -1)) (funcall get-next-frame)))))))
4468 ;; Now `frame' should be "the function from which we were called".
4469 (pcase (cons frame nextframe)
4470 ;; No subr calls `interactive-p', so we can rule that out.
4471 (`((,_ ,(pred (lambda (f) (subrp (indirect-function f)))) . ,_) . ,_) nil)
4472 ;; In case #<subr funcall-interactively> without going through the
4473 ;; `funcall-interactively' symbol (bug#3984).
4474 (`(,_ . (t ,(pred (lambda (f)
4475 (eq internal--funcall-interactively
4476 (indirect-function f))))
4477 . ,_))
4478 t)))))
4480 (defun interactive-p ()
4481 "Return t if the containing function was run directly by user input.
4482 This means that the function was called with `call-interactively'
4483 \(which includes being called as the binding of a key)
4484 and input is currently coming from the keyboard (not a keyboard macro),
4485 and Emacs is not running in batch mode (`noninteractive' is nil).
4487 The only known proper use of `interactive-p' is in deciding whether to
4488 display a helpful message, or how to display it. If you're thinking
4489 of using it for any other purpose, it is quite likely that you're
4490 making a mistake. Think: what do you want to do when the command is
4491 called from a keyboard macro or in batch mode?
4493 To test whether your function was called with `call-interactively',
4494 either (i) add an extra optional argument and give it an `interactive'
4495 spec that specifies non-nil unconditionally (such as \"p\"); or (ii)
4496 use `called-interactively-p'."
4497 (declare (obsolete called-interactively-p "23.2"))
4498 (called-interactively-p 'interactive))
4500 (defun internal-push-keymap (keymap symbol)
4501 (let ((map (symbol-value symbol)))
4502 (unless (memq keymap map)
4503 (unless (memq 'add-keymap-witness (symbol-value symbol))
4504 (setq map (make-composed-keymap nil (symbol-value symbol)))
4505 (push 'add-keymap-witness (cdr map))
4506 (set symbol map))
4507 (push keymap (cdr map)))))
4509 (defun internal-pop-keymap (keymap symbol)
4510 (let ((map (symbol-value symbol)))
4511 (when (memq keymap map)
4512 (setf (cdr map) (delq keymap (cdr map))))
4513 (let ((tail (cddr map)))
4514 (and (or (null tail) (keymapp tail))
4515 (eq 'add-keymap-witness (nth 1 map))
4516 (set symbol tail)))))
4518 (define-obsolete-function-alias
4519 'set-temporary-overlay-map 'set-transient-map "24.4")
4521 (defun set-transient-map (map &optional keep-pred on-exit)
4522 "Set MAP as a temporary keymap taking precedence over other keymaps.
4523 Normally, MAP is used only once, to look up the very next key.
4524 However, if the optional argument KEEP-PRED is t, MAP stays
4525 active if a key from MAP is used. KEEP-PRED can also be a
4526 function of no arguments: it is called from `pre-command-hook' and
4527 if it returns non-nil, then MAP stays active.
4529 Optional arg ON-EXIT, if non-nil, specifies a function that is
4530 called, with no arguments, after MAP is deactivated.
4532 This uses `overriding-terminal-local-map' which takes precedence over all other
4533 keymaps. As usual, if no match for a key is found in MAP, the normal key
4534 lookup sequence then continues.
4536 This returns an \"exit function\", which can be called with no argument
4537 to deactivate this transient map, regardless of KEEP-PRED."
4538 (let* ((clearfun (make-symbol "clear-transient-map"))
4539 (exitfun
4540 (lambda ()
4541 (internal-pop-keymap map 'overriding-terminal-local-map)
4542 (remove-hook 'pre-command-hook clearfun)
4543 (when on-exit (funcall on-exit)))))
4544 ;; Don't use letrec, because equal (in add/remove-hook) would get trapped
4545 ;; in a cycle.
4546 (fset clearfun
4547 (lambda ()
4548 (with-demoted-errors "set-transient-map PCH: %S"
4549 (unless (cond
4550 ((null keep-pred) nil)
4551 ((and (not (eq map (cadr overriding-terminal-local-map)))
4552 (memq map (cddr overriding-terminal-local-map)))
4553 ;; There's presumably some other transient-map in
4554 ;; effect. Wait for that one to terminate before we
4555 ;; remove ourselves.
4556 ;; For example, if isearch and C-u both use transient
4557 ;; maps, then the lifetime of the C-u should be nested
4558 ;; within isearch's, so the pre-command-hook of
4559 ;; isearch should be suspended during the C-u one so
4560 ;; we don't exit isearch just because we hit 1 after
4561 ;; C-u and that 1 exits isearch whereas it doesn't
4562 ;; exit C-u.
4564 ((eq t keep-pred)
4565 (eq this-command
4566 (lookup-key map (this-command-keys-vector))))
4567 (t (funcall keep-pred)))
4568 (funcall exitfun)))))
4569 (add-hook 'pre-command-hook clearfun)
4570 (internal-push-keymap map 'overriding-terminal-local-map)
4571 exitfun))
4573 ;;;; Progress reporters.
4575 ;; Progress reporter has the following structure:
4577 ;; (NEXT-UPDATE-VALUE . [NEXT-UPDATE-TIME
4578 ;; MIN-VALUE
4579 ;; MAX-VALUE
4580 ;; MESSAGE
4581 ;; MIN-CHANGE
4582 ;; MIN-TIME])
4584 ;; This weirdness is for optimization reasons: we want
4585 ;; `progress-reporter-update' to be as fast as possible, so
4586 ;; `(car reporter)' is better than `(aref reporter 0)'.
4588 ;; NEXT-UPDATE-TIME is a float. While `float-time' loses a couple
4589 ;; digits of precision, it doesn't really matter here. On the other
4590 ;; hand, it greatly simplifies the code.
4592 (defsubst progress-reporter-update (reporter &optional value)
4593 "Report progress of an operation in the echo area.
4594 REPORTER should be the result of a call to `make-progress-reporter'.
4596 If REPORTER is a numerical progress reporter---i.e. if it was
4597 made using non-nil MIN-VALUE and MAX-VALUE arguments to
4598 `make-progress-reporter'---then VALUE should be a number between
4599 MIN-VALUE and MAX-VALUE.
4601 If REPORTER is a non-numerical reporter, VALUE should be nil.
4603 This function is relatively inexpensive. If the change since
4604 last update is too small or insufficient time has passed, it does
4605 nothing."
4606 (when (or (not (numberp value)) ; For pulsing reporter
4607 (>= value (car reporter))) ; For numerical reporter
4608 (progress-reporter-do-update reporter value)))
4610 (defun make-progress-reporter (message &optional min-value max-value
4611 current-value min-change min-time)
4612 "Return progress reporter object for use with `progress-reporter-update'.
4614 MESSAGE is shown in the echo area, with a status indicator
4615 appended to the end. When you call `progress-reporter-done', the
4616 word \"done\" is printed after the MESSAGE. You can change the
4617 MESSAGE of an existing progress reporter by calling
4618 `progress-reporter-force-update'.
4620 MIN-VALUE and MAX-VALUE, if non-nil, are starting (0% complete)
4621 and final (100% complete) states of operation; the latter should
4622 be larger. In this case, the status message shows the percentage
4623 progress.
4625 If MIN-VALUE and/or MAX-VALUE is omitted or nil, the status
4626 message shows a \"spinning\", non-numeric indicator.
4628 Optional CURRENT-VALUE is the initial progress; the default is
4629 MIN-VALUE.
4630 Optional MIN-CHANGE is the minimal change in percents to report;
4631 the default is 1%.
4632 CURRENT-VALUE and MIN-CHANGE do not have any effect if MIN-VALUE
4633 and/or MAX-VALUE are nil.
4635 Optional MIN-TIME specifies the minimum interval time between
4636 echo area updates (default is 0.2 seconds.) If the function
4637 `float-time' is not present, time is not tracked at all. If the
4638 OS is not capable of measuring fractions of seconds, this
4639 parameter is effectively rounded up."
4640 (when (string-match "[[:alnum:]]\\'" message)
4641 (setq message (concat message "...")))
4642 (unless min-time
4643 (setq min-time 0.2))
4644 (let ((reporter
4645 ;; Force a call to `message' now
4646 (cons (or min-value 0)
4647 (vector (if (and (fboundp 'float-time)
4648 (>= min-time 0.02))
4649 (float-time) nil)
4650 min-value
4651 max-value
4652 message
4653 (if min-change (max (min min-change 50) 1) 1)
4654 min-time))))
4655 (progress-reporter-update reporter (or current-value min-value))
4656 reporter))
4658 (defun progress-reporter-force-update (reporter &optional value new-message)
4659 "Report progress of an operation in the echo area unconditionally.
4661 The first two arguments are the same as in `progress-reporter-update'.
4662 NEW-MESSAGE, if non-nil, sets a new message for the reporter."
4663 (let ((parameters (cdr reporter)))
4664 (when new-message
4665 (aset parameters 3 new-message))
4666 (when (aref parameters 0)
4667 (aset parameters 0 (float-time)))
4668 (progress-reporter-do-update reporter value)))
4670 (defvar progress-reporter--pulse-characters ["-" "\\" "|" "/"]
4671 "Characters to use for pulsing progress reporters.")
4673 (defun progress-reporter-do-update (reporter value)
4674 (let* ((parameters (cdr reporter))
4675 (update-time (aref parameters 0))
4676 (min-value (aref parameters 1))
4677 (max-value (aref parameters 2))
4678 (text (aref parameters 3))
4679 (enough-time-passed
4680 ;; See if enough time has passed since the last update.
4681 (or (not update-time)
4682 (when (>= (float-time) update-time)
4683 ;; Calculate time for the next update
4684 (aset parameters 0 (+ update-time (aref parameters 5)))))))
4685 (cond ((and min-value max-value)
4686 ;; Numerical indicator
4687 (let* ((one-percent (/ (- max-value min-value) 100.0))
4688 (percentage (if (= max-value min-value)
4690 (truncate (/ (- value min-value)
4691 one-percent)))))
4692 ;; Calculate NEXT-UPDATE-VALUE. If we are not printing
4693 ;; message because not enough time has passed, use 1
4694 ;; instead of MIN-CHANGE. This makes delays between echo
4695 ;; area updates closer to MIN-TIME.
4696 (setcar reporter
4697 (min (+ min-value (* (+ percentage
4698 (if enough-time-passed
4699 ;; MIN-CHANGE
4700 (aref parameters 4)
4702 one-percent))
4703 max-value))
4704 (when (integerp value)
4705 (setcar reporter (ceiling (car reporter))))
4706 ;; Only print message if enough time has passed
4707 (when enough-time-passed
4708 (if (> percentage 0)
4709 (message "%s%d%%" text percentage)
4710 (message "%s" text)))))
4711 ;; Pulsing indicator
4712 (enough-time-passed
4713 (let ((index (mod (1+ (car reporter)) 4))
4714 (message-log-max nil))
4715 (setcar reporter index)
4716 (message "%s %s"
4717 text
4718 (aref progress-reporter--pulse-characters
4719 index)))))))
4721 (defun progress-reporter-done (reporter)
4722 "Print reporter's message followed by word \"done\" in echo area."
4723 (message "%sdone" (aref (cdr reporter) 3)))
4725 (defmacro dotimes-with-progress-reporter (spec message &rest body)
4726 "Loop a certain number of times and report progress in the echo area.
4727 Evaluate BODY with VAR bound to successive integers running from
4728 0, inclusive, to COUNT, exclusive. Then evaluate RESULT to get
4729 the return value (nil if RESULT is omitted).
4731 At each iteration MESSAGE followed by progress percentage is
4732 printed in the echo area. After the loop is finished, MESSAGE
4733 followed by word \"done\" is printed. This macro is a
4734 convenience wrapper around `make-progress-reporter' and friends.
4736 \(fn (VAR COUNT [RESULT]) MESSAGE BODY...)"
4737 (declare (indent 2) (debug ((symbolp form &optional form) form body)))
4738 (let ((temp (make-symbol "--dotimes-temp--"))
4739 (temp2 (make-symbol "--dotimes-temp2--"))
4740 (start 0)
4741 (end (nth 1 spec)))
4742 `(let ((,temp ,end)
4743 (,(car spec) ,start)
4744 (,temp2 (make-progress-reporter ,message ,start ,end)))
4745 (while (< ,(car spec) ,temp)
4746 ,@body
4747 (progress-reporter-update ,temp2
4748 (setq ,(car spec) (1+ ,(car spec)))))
4749 (progress-reporter-done ,temp2)
4750 nil ,@(cdr (cdr spec)))))
4753 ;;;; Comparing version strings.
4755 (defconst version-separator "."
4756 "Specify the string used to separate the version elements.
4758 Usually the separator is \".\", but it can be any other string.")
4761 (defconst version-regexp-alist
4762 '(("^[-._+ ]?snapshot$" . -4)
4763 ;; treat "1.2.3-20050920" and "1.2-3" as snapshot releases
4764 ("^[-._+]$" . -4)
4765 ;; treat "1.2.3-CVS" as snapshot release
4766 ("^[-._+ ]?\\(cvs\\|git\\|bzr\\|svn\\|hg\\|darcs\\)$" . -4)
4767 ("^[-._+ ]?alpha$" . -3)
4768 ("^[-._+ ]?beta$" . -2)
4769 ("^[-._+ ]?\\(pre\\|rc\\)$" . -1))
4770 "Specify association between non-numeric version and its priority.
4772 This association is used to handle version string like \"1.0pre2\",
4773 \"0.9alpha1\", etc. It's used by `version-to-list' (which see) to convert the
4774 non-numeric part of a version string to an integer. For example:
4776 String Version Integer List Version
4777 \"0.9snapshot\" (0 9 -4)
4778 \"1.0-git\" (1 0 -4)
4779 \"1.0.cvs\" (1 0 -4)
4780 \"1.0pre2\" (1 0 -1 2)
4781 \"1.0PRE2\" (1 0 -1 2)
4782 \"22.8beta3\" (22 8 -2 3)
4783 \"22.8 Beta3\" (22 8 -2 3)
4784 \"0.9alpha1\" (0 9 -3 1)
4785 \"0.9AlphA1\" (0 9 -3 1)
4786 \"0.9 alpha\" (0 9 -3)
4788 Each element has the following form:
4790 (REGEXP . PRIORITY)
4792 Where:
4794 REGEXP regexp used to match non-numeric part of a version string.
4795 It should begin with the `^' anchor and end with a `$' to
4796 prevent false hits. Letter-case is ignored while matching
4797 REGEXP.
4799 PRIORITY a negative integer specifying non-numeric priority of REGEXP.")
4802 (defun version-to-list (ver)
4803 "Convert version string VER into a list of integers.
4805 The version syntax is given by the following EBNF:
4807 VERSION ::= NUMBER ( SEPARATOR NUMBER )*.
4809 NUMBER ::= (0|1|2|3|4|5|6|7|8|9)+.
4811 SEPARATOR ::= `version-separator' (which see)
4812 | `version-regexp-alist' (which see).
4814 The NUMBER part is optional if SEPARATOR is a match for an element
4815 in `version-regexp-alist'.
4817 Examples of valid version syntax:
4819 1.0pre2 1.0.7.5 22.8beta3 0.9alpha1 6.9.30Beta 2.4.snapshot .5
4821 Examples of invalid version syntax:
4823 1.0prepre2 1.0..7.5 22.8X3 alpha3.2
4825 Examples of version conversion:
4827 Version String Version as a List of Integers
4828 \".5\" (0 5)
4829 \"0.9 alpha\" (0 9 -3)
4830 \"0.9AlphA1\" (0 9 -3 1)
4831 \"0.9snapshot\" (0 9 -4)
4832 \"1.0-git\" (1 0 -4)
4833 \"1.0.7.5\" (1 0 7 5)
4834 \"1.0.cvs\" (1 0 -4)
4835 \"1.0PRE2\" (1 0 -1 2)
4836 \"1.0pre2\" (1 0 -1 2)
4837 \"22.8 Beta3\" (22 8 -2 3)
4838 \"22.8beta3\" (22 8 -2 3)
4840 See documentation for `version-separator' and `version-regexp-alist'."
4841 (unless (stringp ver)
4842 (error "Version must be a string"))
4843 ;; Change .x.y to 0.x.y
4844 (if (and (>= (length ver) (length version-separator))
4845 (string-equal (substring ver 0 (length version-separator))
4846 version-separator))
4847 (setq ver (concat "0" ver)))
4848 (unless (string-match-p "^[0-9]" ver)
4849 (error "Invalid version syntax: `%s' (must start with a number)" ver))
4851 (save-match-data
4852 (let ((i 0)
4853 (case-fold-search t) ; ignore case in matching
4854 lst s al)
4855 ;; Parse the version-string up to a separator until there are none left
4856 (while (and (setq s (string-match "[0-9]+" ver i))
4857 (= s i))
4858 ;; Add the numeric part to the beginning of the version list;
4859 ;; lst gets reversed at the end
4860 (setq lst (cons (string-to-number (substring ver i (match-end 0)))
4861 lst)
4862 i (match-end 0))
4863 ;; handle non-numeric part
4864 (when (and (setq s (string-match "[^0-9]+" ver i))
4865 (= s i))
4866 (setq s (substring ver i (match-end 0))
4867 i (match-end 0))
4868 ;; handle alpha, beta, pre, etc. separator
4869 (unless (string= s version-separator)
4870 (setq al version-regexp-alist)
4871 (while (and al (not (string-match (caar al) s)))
4872 (setq al (cdr al)))
4873 (cond (al
4874 (push (cdar al) lst))
4875 ;; Convert 22.3a to 22.3.1, 22.3b to 22.3.2, etc., but only if
4876 ;; the letter is the end of the version-string, to avoid
4877 ;; 22.8X3 being valid
4878 ((and (string-match "^[-._+ ]?\\([a-zA-Z]\\)$" s)
4879 (= i (length ver)))
4880 (push (- (aref (downcase (match-string 1 s)) 0) ?a -1)
4881 lst))
4882 (t (error "Invalid version syntax: `%s'" ver))))))
4883 (nreverse lst))))
4885 (defun version-list-< (l1 l2)
4886 "Return t if L1, a list specification of a version, is lower than L2.
4888 Note that a version specified by the list (1) is equal to (1 0),
4889 \(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
4890 Also, a version given by the list (1) is higher than (1 -1), which in
4891 turn is higher than (1 -2), which is higher than (1 -3)."
4892 (while (and l1 l2 (= (car l1) (car l2)))
4893 (setq l1 (cdr l1)
4894 l2 (cdr l2)))
4895 (cond
4896 ;; l1 not null and l2 not null
4897 ((and l1 l2) (< (car l1) (car l2)))
4898 ;; l1 null and l2 null ==> l1 length = l2 length
4899 ((and (null l1) (null l2)) nil)
4900 ;; l1 not null and l2 null ==> l1 length > l2 length
4901 (l1 (< (version-list-not-zero l1) 0))
4902 ;; l1 null and l2 not null ==> l2 length > l1 length
4903 (t (< 0 (version-list-not-zero l2)))))
4906 (defun version-list-= (l1 l2)
4907 "Return t if L1, a list specification of a version, is equal to L2.
4909 Note that a version specified by the list (1) is equal to (1 0),
4910 \(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
4911 Also, a version given by the list (1) is higher than (1 -1), which in
4912 turn is higher than (1 -2), which is higher than (1 -3)."
4913 (while (and l1 l2 (= (car l1) (car l2)))
4914 (setq l1 (cdr l1)
4915 l2 (cdr l2)))
4916 (cond
4917 ;; l1 not null and l2 not null
4918 ((and l1 l2) nil)
4919 ;; l1 null and l2 null ==> l1 length = l2 length
4920 ((and (null l1) (null l2)))
4921 ;; l1 not null and l2 null ==> l1 length > l2 length
4922 (l1 (zerop (version-list-not-zero l1)))
4923 ;; l1 null and l2 not null ==> l2 length > l1 length
4924 (t (zerop (version-list-not-zero l2)))))
4927 (defun version-list-<= (l1 l2)
4928 "Return t if L1, a list specification of a version, is lower or equal to L2.
4930 Note that integer list (1) is equal to (1 0), (1 0 0), (1 0 0 0),
4931 etc. That is, the trailing zeroes are insignificant. Also, integer
4932 list (1) is greater than (1 -1) which is greater than (1 -2)
4933 which is greater than (1 -3)."
4934 (while (and l1 l2 (= (car l1) (car l2)))
4935 (setq l1 (cdr l1)
4936 l2 (cdr l2)))
4937 (cond
4938 ;; l1 not null and l2 not null
4939 ((and l1 l2) (< (car l1) (car l2)))
4940 ;; l1 null and l2 null ==> l1 length = l2 length
4941 ((and (null l1) (null l2)))
4942 ;; l1 not null and l2 null ==> l1 length > l2 length
4943 (l1 (<= (version-list-not-zero l1) 0))
4944 ;; l1 null and l2 not null ==> l2 length > l1 length
4945 (t (<= 0 (version-list-not-zero l2)))))
4947 (defun version-list-not-zero (lst)
4948 "Return the first non-zero element of LST, which is a list of integers.
4950 If all LST elements are zeros or LST is nil, return zero."
4951 (while (and lst (zerop (car lst)))
4952 (setq lst (cdr lst)))
4953 (if lst
4954 (car lst)
4955 ;; there is no element different of zero
4959 (defun version< (v1 v2)
4960 "Return t if version V1 is lower (older) than V2.
4962 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
4963 etc. That is, the trailing \".0\"s are insignificant. Also, version
4964 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
4965 which is higher than \"1alpha\", which is higher than \"1snapshot\".
4966 Also, \"-GIT\", \"-CVS\" and \"-NNN\" are treated as snapshot versions."
4967 (version-list-< (version-to-list v1) (version-to-list v2)))
4969 (defun version<= (v1 v2)
4970 "Return t if version V1 is lower (older) than or equal to V2.
4972 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
4973 etc. That is, the trailing \".0\"s are insignificant. Also, version
4974 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
4975 which is higher than \"1alpha\", which is higher than \"1snapshot\".
4976 Also, \"-GIT\", \"-CVS\" and \"-NNN\" are treated as snapshot versions."
4977 (version-list-<= (version-to-list v1) (version-to-list v2)))
4979 (defun version= (v1 v2)
4980 "Return t if version V1 is equal to V2.
4982 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
4983 etc. That is, the trailing \".0\"s are insignificant. Also, version
4984 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
4985 which is higher than \"1alpha\", which is higher than \"1snapshot\".
4986 Also, \"-GIT\", \"-CVS\" and \"-NNN\" are treated as snapshot versions."
4987 (version-list-= (version-to-list v1) (version-to-list v2)))
4989 (defvar package--builtin-versions
4990 ;; Mostly populated by loaddefs.el via autoload-builtin-package-versions.
4991 (purecopy `((emacs . ,(version-to-list emacs-version))))
4992 "Alist giving the version of each versioned builtin package.
4993 I.e. each element of the list is of the form (NAME . VERSION) where
4994 NAME is the package name as a symbol, and VERSION is its version
4995 as a list.")
4997 (defun package--description-file (dir)
4998 (concat (let ((subdir (file-name-nondirectory
4999 (directory-file-name dir))))
5000 (if (string-match "\\([^.].*?\\)-\\([0-9]+\\(?:[.][0-9]+\\|\\(?:pre\\|beta\\|alpha\\)[0-9]+\\)*\\)" subdir)
5001 (match-string 1 subdir) subdir))
5002 "-pkg.el"))
5005 ;;; Misc.
5007 (defvar definition-prefixes (make-hash-table :test 'equal)
5008 "Hash table mapping prefixes to the files in which they're used.
5009 This can be used to automatically fetch not-yet-loaded definitions.
5010 More specifically, if there is a value of the form (FILES...) for a string PREFIX
5011 it means that the FILES define variables or functions with names that start
5012 with PREFIX.
5014 Note that it does not imply that all definitions starting with PREFIX can
5015 be found in those files. E.g. if prefix is \"gnus-article-\" there might
5016 still be definitions of the form \"gnus-article-toto-titi\" in other files, which would
5017 presumably appear in this table under another prefix such as \"gnus-\"
5018 or \"gnus-article-toto-\".")
5020 (defun register-definition-prefixes (file prefixes)
5021 "Register that FILE uses PREFIXES."
5022 (dolist (prefix prefixes)
5023 (puthash prefix (cons file (gethash prefix definition-prefixes))
5024 definition-prefixes)))
5026 (defconst menu-bar-separator '("--")
5027 "Separator for menus.")
5029 ;; The following statement ought to be in print.c, but `provide' can't
5030 ;; be used there.
5031 ;; http://lists.gnu.org/archive/html/emacs-devel/2009-08/msg00236.html
5032 (when (hash-table-p (car (read-from-string
5033 (prin1-to-string (make-hash-table)))))
5034 (provide 'hashtable-print-readable))
5036 ;; This is used in lisp/Makefile.in and in leim/Makefile.in to
5037 ;; generate file names for autoloads, custom-deps, and finder-data.
5038 (defun unmsys--file-name (file)
5039 "Produce the canonical file name for FILE from its MSYS form.
5041 On systems other than MS-Windows, just returns FILE.
5042 On MS-Windows, converts /d/foo/bar form of file names
5043 passed by MSYS Make into d:/foo/bar that Emacs can grok.
5045 This function is called from lisp/Makefile and leim/Makefile."
5046 (when (and (eq system-type 'windows-nt)
5047 (string-match "\\`/[a-zA-Z]/" file))
5048 (setq file (concat (substring file 1 2) ":" (substring file 2))))
5049 file)
5052 ;;; subr.el ends here