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