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