Merge from trunk
[emacs.git] / lisp / subr.el
blob9f4e35fcbe0bde050a9560af25e654b310959d97
1 ;;; subr.el --- basic lisp subroutines for Emacs
3 ;; Copyright (C) 1985-1986, 1992, 1994-1995, 1999-2011
4 ;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
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 (defvar custom-declare-variable-list nil
30 "Record `defcustom' calls made before `custom.el' is loaded to handle them.
31 Each element of this list holds the arguments to one call to `defcustom'.")
33 ;; Use this, rather than defcustom, in subr.el and other files loaded
34 ;; before custom.el.
35 (defun custom-declare-variable-early (&rest arguments)
36 (setq custom-declare-variable-list
37 (cons arguments custom-declare-variable-list)))
39 (defmacro declare-function (fn file &optional arglist fileonly)
40 "Tell the byte-compiler that function FN is defined, in FILE.
41 Optional ARGLIST is the argument list used by the function. The
42 FILE argument is not used by the byte-compiler, but by the
43 `check-declare' package, which checks that FILE contains a
44 definition for FN. ARGLIST is used by both the byte-compiler and
45 `check-declare' to check for consistency.
47 FILE can be either a Lisp file (in which case the \".el\"
48 extension is optional), or a C file. C files are expanded
49 relative to the Emacs \"src/\" directory. Lisp files are
50 searched for using `locate-library', and if that fails they are
51 expanded relative to the location of the file containing the
52 declaration. A FILE with an \"ext:\" prefix is an external file.
53 `check-declare' will check such files if they are found, and skip
54 them without error if they are not.
56 FILEONLY non-nil means that `check-declare' will only check that
57 FILE exists, not that it defines FN. This is intended for
58 function-definitions that `check-declare' does not recognize, e.g.
59 `defstruct'.
61 To specify a value for FILEONLY without passing an argument list,
62 set ARGLIST to t. This is necessary because nil means an
63 empty argument list, rather than an unspecified one.
65 Note that for the purposes of `check-declare', this statement
66 must be the first non-whitespace on a line.
68 For more information, see Info node `(elisp)Declaring Functions'."
69 ;; Does nothing - byte-compile-declare-function does the work.
70 nil)
73 ;;;; Basic Lisp macros.
75 (defalias 'not 'null)
77 (defmacro noreturn (form)
78 "Evaluate FORM, expecting it not to return.
79 If FORM does return, signal an error."
80 `(prog1 ,form
81 (error "Form marked with `noreturn' did return")))
83 (defmacro 1value (form)
84 "Evaluate FORM, expecting a constant return value.
85 This is the global do-nothing version. There is also `testcover-1value'
86 that complains if FORM ever does return differing values."
87 form)
89 (defmacro def-edebug-spec (symbol spec)
90 "Set the `edebug-form-spec' property of SYMBOL according to SPEC.
91 Both SYMBOL and SPEC are unevaluated. The SPEC can be:
92 0 (instrument no arguments); t (instrument all arguments);
93 a symbol (naming a function with an Edebug specification); or a list.
94 The elements of the list describe the argument types; see
95 \(info \"(elisp)Specification List\") for details."
96 `(put (quote ,symbol) 'edebug-form-spec (quote ,spec)))
98 (defmacro lambda (&rest cdr)
99 "Return a lambda expression.
100 A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
101 self-quoting; the result of evaluating the lambda expression is the
102 expression itself. The lambda expression may then be treated as a
103 function, i.e., stored as the function value of a symbol, passed to
104 `funcall' or `mapcar', etc.
106 ARGS should take the same form as an argument list for a `defun'.
107 DOCSTRING is an optional documentation string.
108 If present, it should describe how to call the function.
109 But documentation strings are usually not useful in nameless functions.
110 INTERACTIVE should be a call to the function `interactive', which see.
111 It may also be omitted.
112 BODY should be a list of Lisp expressions.
114 \(fn ARGS [DOCSTRING] [INTERACTIVE] 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 ;; Partial application of functions (similar to "currying").
120 ;; This function is here rather than in subr.el because it uses CL.
121 (defun apply-partially (fun &rest args)
122 "Return a function that is a partial application of FUN to ARGS.
123 ARGS is a list of the first N arguments to pass to FUN.
124 The result is a new function which does the same as FUN, except that
125 the first N arguments are fixed at the values with which this function
126 was called."
127 `(closure () (&rest args)
128 (apply ',fun ,@(mapcar (lambda (arg) `',arg) args) args)))
130 (if (null (featurep 'cl))
131 (progn
132 ;; If we reload subr.el after having loaded CL, be careful not to
133 ;; overwrite CL's extended definition of `dolist', `dotimes',
134 ;; `declare', `push' and `pop'.
135 (defmacro push (newelt listname)
136 "Add NEWELT to the list stored in the symbol LISTNAME.
137 This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
138 LISTNAME must be a symbol."
139 (declare (debug (form sexp)))
140 (list 'setq listname
141 (list 'cons newelt listname)))
143 (defmacro pop (listname)
144 "Return the first element of LISTNAME's value, and remove it from the list.
145 LISTNAME must be a symbol whose value is a list.
146 If the value is nil, `pop' returns nil but does not actually
147 change the list."
148 (declare (debug (sexp)))
149 (list 'car
150 (list 'prog1 listname
151 (list 'setq listname (list 'cdr listname)))))
154 (defmacro when (cond &rest body)
155 "If COND yields non-nil, do BODY, else return nil.
156 When COND yields non-nil, eval BODY forms sequentially and return
157 value of last one, or nil if there are none.
159 \(fn COND BODY...)"
160 (declare (indent 1) (debug t))
161 (list 'if cond (cons 'progn body)))
163 (defmacro unless (cond &rest body)
164 "If COND yields nil, do BODY, else return nil.
165 When COND yields nil, eval BODY forms sequentially and return
166 value of last one, or nil if there are none.
168 \(fn COND BODY...)"
169 (declare (indent 1) (debug t))
170 (cons 'if (cons cond (cons nil body))))
172 (if (null (featurep 'cl))
173 (progn
174 ;; If we reload subr.el after having loaded CL, be careful not to
175 ;; overwrite CL's extended definition of `dolist', `dotimes',
176 ;; `declare', `push' and `pop'.
177 (defvar --dolist-tail-- nil
178 "Temporary variable used in `dolist' expansion.")
180 (defmacro dolist (spec &rest body)
181 "Loop over a list.
182 Evaluate BODY with VAR bound to each car from LIST, in turn.
183 Then evaluate RESULT to get return value, default nil.
185 \(fn (VAR LIST [RESULT]) BODY...)"
186 (declare (indent 1) (debug ((symbolp form &optional form) body)))
187 ;; It would be cleaner to create an uninterned symbol,
188 ;; but that uses a lot more space when many functions in many files
189 ;; use dolist.
190 ;; FIXME: This cost disappears in byte-compiled lexical-binding files.
191 (let ((temp '--dolist-tail--))
192 `(let ((,temp ,(nth 1 spec))
193 ,(car spec))
194 (while ,temp
195 ;; FIXME: In lexical-binding code, a `let' inside the loop might
196 ;; turn out to be faster than the an outside `let' this `setq'.
197 (setq ,(car spec) (car ,temp))
198 ,@body
199 (setq ,temp (cdr ,temp)))
200 ,@(if (cdr (cdr spec))
201 `((setq ,(car spec) nil) ,@(cdr (cdr spec)))))))
203 (defvar --dotimes-limit-- nil
204 "Temporary variable used in `dotimes' expansion.")
206 (defmacro dotimes (spec &rest body)
207 "Loop a certain number of times.
208 Evaluate BODY with VAR bound to successive integers running from 0,
209 inclusive, to COUNT, exclusive. Then evaluate RESULT to get
210 the return value (nil if RESULT is omitted).
212 \(fn (VAR COUNT [RESULT]) BODY...)"
213 (declare (indent 1) (debug dolist))
214 ;; It would be cleaner to create an uninterned symbol,
215 ;; but that uses a lot more space when many functions in many files
216 ;; use dotimes.
217 (let ((temp '--dotimes-limit--)
218 (start 0)
219 (end (nth 1 spec)))
220 `(let ((,temp ,end)
221 (,(car spec) ,start))
222 (while (< ,(car spec) ,temp)
223 ,@body
224 (setq ,(car spec) (1+ ,(car spec))))
225 ,@(cdr (cdr spec)))))
227 (defmacro declare (&rest specs)
228 "Do not evaluate any arguments and return nil.
229 Treated as a declaration when used at the right place in a
230 `defmacro' form. \(See Info anchor `(elisp)Definition of declare'.)"
231 nil)
234 (defmacro ignore-errors (&rest body)
235 "Execute BODY; if an error occurs, return nil.
236 Otherwise, return result of last form in BODY."
237 (declare (debug t) (indent 0))
238 `(condition-case nil (progn ,@body) (error nil)))
240 ;;;; Basic Lisp functions.
242 (defun ignore (&rest ignore)
243 "Do nothing and return nil.
244 This function accepts any number of arguments, but ignores them."
245 (interactive)
246 nil)
248 ;; Signal a compile-error if the first arg is missing.
249 (defun error (&rest args)
250 "Signal an error, making error message by passing all args to `format'.
251 In Emacs, the convention is that error messages start with a capital
252 letter but *do not* end with a period. Please follow this convention
253 for the sake of consistency."
254 (while t
255 (signal 'error (list (apply 'format args)))))
256 (set-advertised-calling-convention 'error '(string &rest args) "23.1")
258 ;; We put this here instead of in frame.el so that it's defined even on
259 ;; systems where frame.el isn't loaded.
260 (defun frame-configuration-p (object)
261 "Return non-nil if OBJECT seems to be a frame configuration.
262 Any list whose car is `frame-configuration' is assumed to be a frame
263 configuration."
264 (and (consp object)
265 (eq (car object) 'frame-configuration)))
267 ;;;; List functions.
269 (defsubst caar (x)
270 "Return the car of the car of X."
271 (car (car x)))
273 (defsubst cadr (x)
274 "Return the car of the cdr of X."
275 (car (cdr x)))
277 (defsubst cdar (x)
278 "Return the cdr of the car of X."
279 (cdr (car x)))
281 (defsubst cddr (x)
282 "Return the cdr of the cdr of X."
283 (cdr (cdr x)))
285 (defun last (list &optional n)
286 "Return the last link of LIST. Its car is the last element.
287 If LIST is nil, return nil.
288 If N is non-nil, return the Nth-to-last link of LIST.
289 If N is bigger than the length of LIST, return LIST."
290 (if n
291 (and (>= n 0)
292 (let ((m (safe-length list)))
293 (if (< n m) (nthcdr (- m n) list) list)))
294 (and list
295 (nthcdr (1- (safe-length list)) list))))
297 (defun butlast (list &optional n)
298 "Return a copy of LIST with the last N elements removed."
299 (if (and n (<= n 0)) list
300 (nbutlast (copy-sequence list) n)))
302 (defun nbutlast (list &optional n)
303 "Modifies LIST to remove the last N elements."
304 (let ((m (length list)))
305 (or n (setq n 1))
306 (and (< n m)
307 (progn
308 (if (> n 0) (setcdr (nthcdr (- (1- m) n) list) nil))
309 list))))
311 (defun delete-dups (list)
312 "Destructively remove `equal' duplicates from LIST.
313 Store the result in LIST and return it. LIST must be a proper list.
314 Of several `equal' occurrences of an element in LIST, the first
315 one is kept."
316 (let ((tail list))
317 (while tail
318 (setcdr tail (delete (car tail) (cdr tail)))
319 (setq tail (cdr tail))))
320 list)
322 (defun number-sequence (from &optional to inc)
323 "Return a sequence of numbers from FROM to TO (both inclusive) as a list.
324 INC is the increment used between numbers in the sequence and defaults to 1.
325 So, the Nth element of the list is \(+ FROM \(* N INC)) where N counts from
326 zero. TO is only included if there is an N for which TO = FROM + N * INC.
327 If TO is nil or numerically equal to FROM, return \(FROM).
328 If INC is positive and TO is less than FROM, or INC is negative
329 and TO is larger than FROM, return nil.
330 If INC is zero and TO is neither nil nor numerically equal to
331 FROM, signal an error.
333 This function is primarily designed for integer arguments.
334 Nevertheless, FROM, TO and INC can be integer or float. However,
335 floating point arithmetic is inexact. For instance, depending on
336 the machine, it may quite well happen that
337 \(number-sequence 0.4 0.6 0.2) returns the one element list \(0.4),
338 whereas \(number-sequence 0.4 0.8 0.2) returns a list with three
339 elements. Thus, if some of the arguments are floats and one wants
340 to make sure that TO is included, one may have to explicitly write
341 TO as \(+ FROM \(* N INC)) or use a variable whose value was
342 computed with this exact expression. Alternatively, you can,
343 of course, also replace TO with a slightly larger value
344 \(or a slightly more negative value if INC is negative)."
345 (if (or (not to) (= from to))
346 (list from)
347 (or inc (setq inc 1))
348 (when (zerop inc) (error "The increment can not be zero"))
349 (let (seq (n 0) (next from))
350 (if (> inc 0)
351 (while (<= next to)
352 (setq seq (cons next seq)
353 n (1+ n)
354 next (+ from (* n inc))))
355 (while (>= next to)
356 (setq seq (cons next seq)
357 n (1+ n)
358 next (+ from (* n inc)))))
359 (nreverse seq))))
361 (defun copy-tree (tree &optional vecp)
362 "Make a copy of TREE.
363 If TREE is a cons cell, this recursively copies both its car and its cdr.
364 Contrast to `copy-sequence', which copies only along the cdrs. With second
365 argument VECP, this copies vectors as well as conses."
366 (if (consp tree)
367 (let (result)
368 (while (consp tree)
369 (let ((newcar (car tree)))
370 (if (or (consp (car tree)) (and vecp (vectorp (car tree))))
371 (setq newcar (copy-tree (car tree) vecp)))
372 (push newcar result))
373 (setq tree (cdr tree)))
374 (nconc (nreverse result) tree))
375 (if (and vecp (vectorp tree))
376 (let ((i (length (setq tree (copy-sequence tree)))))
377 (while (>= (setq i (1- i)) 0)
378 (aset tree i (copy-tree (aref tree i) vecp)))
379 tree)
380 tree)))
382 ;;;; Various list-search functions.
384 (defun assoc-default (key alist &optional test default)
385 "Find object KEY in a pseudo-alist ALIST.
386 ALIST is a list of conses or objects. Each element
387 (or the element's car, if it is a cons) is compared with KEY by
388 calling TEST, with two arguments: (i) the element or its car,
389 and (ii) KEY.
390 If that is non-nil, the element matches; then `assoc-default'
391 returns the element's cdr, if it is a cons, or DEFAULT if the
392 element is not a cons.
394 If no element matches, the value is nil.
395 If TEST is omitted or nil, `equal' is used."
396 (let (found (tail alist) value)
397 (while (and tail (not found))
398 (let ((elt (car tail)))
399 (when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key)
400 (setq found t value (if (consp elt) (cdr elt) default))))
401 (setq tail (cdr tail)))
402 value))
404 (make-obsolete 'assoc-ignore-case 'assoc-string "22.1")
405 (defun assoc-ignore-case (key alist)
406 "Like `assoc', but ignores differences in case and text representation.
407 KEY must be a string. Upper-case and lower-case letters are treated as equal.
408 Unibyte strings are converted to multibyte for comparison."
409 (assoc-string key alist t))
411 (make-obsolete 'assoc-ignore-representation 'assoc-string "22.1")
412 (defun assoc-ignore-representation (key alist)
413 "Like `assoc', but ignores differences in text representation.
414 KEY must be a string.
415 Unibyte strings are converted to multibyte for comparison."
416 (assoc-string key alist nil))
418 (defun member-ignore-case (elt list)
419 "Like `member', but ignore differences in case and text representation.
420 ELT must be a string. Upper-case and lower-case letters are treated as equal.
421 Unibyte strings are converted to multibyte for comparison.
422 Non-strings in LIST are ignored."
423 (while (and list
424 (not (and (stringp (car list))
425 (eq t (compare-strings elt 0 nil (car list) 0 nil t)))))
426 (setq list (cdr list)))
427 list)
429 (defun assq-delete-all (key alist)
430 "Delete from ALIST all elements whose car is `eq' to KEY.
431 Return the modified alist.
432 Elements of ALIST that are not conses are ignored."
433 (while (and (consp (car alist))
434 (eq (car (car alist)) key))
435 (setq alist (cdr alist)))
436 (let ((tail alist) tail-cdr)
437 (while (setq tail-cdr (cdr tail))
438 (if (and (consp (car tail-cdr))
439 (eq (car (car tail-cdr)) key))
440 (setcdr tail (cdr tail-cdr))
441 (setq tail tail-cdr))))
442 alist)
444 (defun rassq-delete-all (value alist)
445 "Delete from ALIST all elements whose cdr is `eq' to VALUE.
446 Return the modified alist.
447 Elements of ALIST that are not conses are ignored."
448 (while (and (consp (car alist))
449 (eq (cdr (car alist)) value))
450 (setq alist (cdr alist)))
451 (let ((tail alist) tail-cdr)
452 (while (setq tail-cdr (cdr tail))
453 (if (and (consp (car tail-cdr))
454 (eq (cdr (car tail-cdr)) value))
455 (setcdr tail (cdr tail-cdr))
456 (setq tail tail-cdr))))
457 alist)
459 (defun remove (elt seq)
460 "Return a copy of SEQ with all occurrences of ELT removed.
461 SEQ must be a list, vector, or string. The comparison is done with `equal'."
462 (if (nlistp seq)
463 ;; If SEQ isn't a list, there's no need to copy SEQ because
464 ;; `delete' will return a new object.
465 (delete elt seq)
466 (delete elt (copy-sequence seq))))
468 (defun remq (elt list)
469 "Return LIST with all occurrences of ELT removed.
470 The comparison is done with `eq'. Contrary to `delq', this does not use
471 side-effects, and the argument LIST is not modified."
472 (if (memq elt list)
473 (delq elt (copy-sequence list))
474 list))
476 ;;;; Keymap support.
478 (defmacro kbd (keys)
479 "Convert KEYS to the internal Emacs key representation.
480 KEYS should be a string constant in the format used for
481 saving keyboard macros (see `edmacro-mode')."
482 (read-kbd-macro keys))
484 (defun undefined ()
485 "Beep to tell the user this binding is undefined."
486 (interactive)
487 (ding))
489 ;; Prevent the \{...} documentation construct
490 ;; from mentioning keys that run this command.
491 (put 'undefined 'suppress-keymap t)
493 (defun suppress-keymap (map &optional nodigits)
494 "Make MAP override all normally self-inserting keys to be undefined.
495 Normally, as an exception, digits and minus-sign are set to make prefix args,
496 but optional second arg NODIGITS non-nil treats them like other chars."
497 (define-key map [remap self-insert-command] 'undefined)
498 (or nodigits
499 (let (loop)
500 (define-key map "-" 'negative-argument)
501 ;; Make plain numbers do numeric args.
502 (setq loop ?0)
503 (while (<= loop ?9)
504 (define-key map (char-to-string loop) 'digit-argument)
505 (setq loop (1+ loop))))))
507 (defun define-key-after (keymap key definition &optional after)
508 "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
509 This is like `define-key' except that the binding for KEY is placed
510 just after the binding for the event AFTER, instead of at the beginning
511 of the map. Note that AFTER must be an event type (like KEY), NOT a command
512 \(like DEFINITION).
514 If AFTER is t or omitted, the new binding goes at the end of the keymap.
515 AFTER should be a single event type--a symbol or a character, not a sequence.
517 Bindings are always added before any inherited map.
519 The order of bindings in a keymap matters when it is used as a menu."
520 (unless after (setq after t))
521 (or (keymapp keymap)
522 (signal 'wrong-type-argument (list 'keymapp keymap)))
523 (setq key
524 (if (<= (length key) 1) (aref key 0)
525 (setq keymap (lookup-key keymap
526 (apply 'vector
527 (butlast (mapcar 'identity key)))))
528 (aref key (1- (length key)))))
529 (let ((tail keymap) done inserted)
530 (while (and (not done) tail)
531 ;; Delete any earlier bindings for the same key.
532 (if (eq (car-safe (car (cdr tail))) key)
533 (setcdr tail (cdr (cdr tail))))
534 ;; If we hit an included map, go down that one.
535 (if (keymapp (car tail)) (setq tail (car tail)))
536 ;; When we reach AFTER's binding, insert the new binding after.
537 ;; If we reach an inherited keymap, insert just before that.
538 ;; If we reach the end of this keymap, insert at the end.
539 (if (or (and (eq (car-safe (car tail)) after)
540 (not (eq after t)))
541 (eq (car (cdr tail)) 'keymap)
542 (null (cdr tail)))
543 (progn
544 ;; Stop the scan only if we find a parent keymap.
545 ;; Keep going past the inserted element
546 ;; so we can delete any duplications that come later.
547 (if (eq (car (cdr tail)) 'keymap)
548 (setq done t))
549 ;; Don't insert more than once.
550 (or inserted
551 (setcdr tail (cons (cons key definition) (cdr tail))))
552 (setq inserted t)))
553 (setq tail (cdr tail)))))
555 (defun map-keymap-sorted (function keymap)
556 "Implement `map-keymap' with sorting.
557 Don't call this function; it is for internal use only."
558 (let (list)
559 (map-keymap (lambda (a b) (push (cons a b) list))
560 keymap)
561 (setq list (sort list
562 (lambda (a b)
563 (setq a (car a) b (car b))
564 (if (integerp a)
565 (if (integerp b) (< a b)
567 (if (integerp b) t
568 ;; string< also accepts symbols.
569 (string< a b))))))
570 (dolist (p list)
571 (funcall function (car p) (cdr p)))))
573 (defun keymap-canonicalize (map)
574 "Return an equivalent keymap, without inheritance."
575 (let ((bindings ())
576 (ranges ())
577 (prompt (keymap-prompt map)))
578 (while (keymapp map)
579 (setq map (map-keymap-internal
580 (lambda (key item)
581 (if (consp key)
582 ;; Treat char-ranges specially.
583 (push (cons key item) ranges)
584 (push (cons key item) bindings)))
585 map)))
586 (setq map (funcall (if ranges 'make-keymap 'make-sparse-keymap) prompt))
587 (dolist (binding ranges)
588 ;; Treat char-ranges specially.
589 (define-key map (vector (car binding)) (cdr binding)))
590 (dolist (binding (prog1 bindings (setq bindings ())))
591 (let* ((key (car binding))
592 (item (cdr binding))
593 (oldbind (assq key bindings)))
594 ;; Newer bindings override older.
595 (if oldbind (setq bindings (delq oldbind bindings)))
596 (when item ;nil bindings just hide older ones.
597 (push binding bindings))))
598 (nconc map bindings)))
600 (put 'keyboard-translate-table 'char-table-extra-slots 0)
602 (defun keyboard-translate (from to)
603 "Translate character FROM to TO at a low level.
604 This function creates a `keyboard-translate-table' if necessary
605 and then modifies one entry in it."
606 (or (char-table-p keyboard-translate-table)
607 (setq keyboard-translate-table
608 (make-char-table 'keyboard-translate-table nil)))
609 (aset keyboard-translate-table from to))
611 ;;;; Key binding commands.
613 (defun global-set-key (key command)
614 "Give KEY a global binding as COMMAND.
615 COMMAND is the command definition to use; usually it is
616 a symbol naming an interactively-callable function.
617 KEY is a key sequence; noninteractively, it is a string or vector
618 of characters or event types, and non-ASCII characters with codes
619 above 127 (such as ISO Latin-1) can be included if you use a vector.
621 Note that if KEY has a local binding in the current buffer,
622 that local binding will continue to shadow any global binding
623 that you make with this function."
624 (interactive "KSet key globally: \nCSet key %s to command: ")
625 (or (vectorp key) (stringp key)
626 (signal 'wrong-type-argument (list 'arrayp key)))
627 (define-key (current-global-map) key command))
629 (defun local-set-key (key command)
630 "Give KEY a local binding as COMMAND.
631 COMMAND is the command definition to use; usually it is
632 a symbol naming an interactively-callable function.
633 KEY is a key sequence; noninteractively, it is a string or vector
634 of characters or event types, and non-ASCII characters with codes
635 above 127 (such as ISO Latin-1) can be included if you use a vector.
637 The binding goes in the current buffer's local map,
638 which in most cases is shared with all other buffers in the same major mode."
639 (interactive "KSet key locally: \nCSet key %s locally to command: ")
640 (let ((map (current-local-map)))
641 (or map
642 (use-local-map (setq map (make-sparse-keymap))))
643 (or (vectorp key) (stringp key)
644 (signal 'wrong-type-argument (list 'arrayp key)))
645 (define-key map key command)))
647 (defun global-unset-key (key)
648 "Remove global binding of KEY.
649 KEY is a string or vector representing a sequence of keystrokes."
650 (interactive "kUnset key globally: ")
651 (global-set-key key nil))
653 (defun local-unset-key (key)
654 "Remove local binding of KEY.
655 KEY is a string or vector representing a sequence of keystrokes."
656 (interactive "kUnset key locally: ")
657 (if (current-local-map)
658 (local-set-key key nil))
659 nil)
661 ;;;; substitute-key-definition and its subroutines.
663 (defvar key-substitution-in-progress nil
664 "Used internally by `substitute-key-definition'.")
666 (defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
667 "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
668 In other words, OLDDEF is replaced with NEWDEF where ever it appears.
669 Alternatively, if optional fourth argument OLDMAP is specified, we redefine
670 in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP.
672 If you don't specify OLDMAP, you can usually get the same results
673 in a cleaner way with command remapping, like this:
674 \(define-key KEYMAP [remap OLDDEF] NEWDEF)
675 \n(fn OLDDEF NEWDEF KEYMAP &optional OLDMAP)"
676 ;; Don't document PREFIX in the doc string because we don't want to
677 ;; advertise it. It's meant for recursive calls only. Here's its
678 ;; meaning
680 ;; If optional argument PREFIX is specified, it should be a key
681 ;; prefix, a string. Redefined bindings will then be bound to the
682 ;; original key, with PREFIX added at the front.
683 (or prefix (setq prefix ""))
684 (let* ((scan (or oldmap keymap))
685 (prefix1 (vconcat prefix [nil]))
686 (key-substitution-in-progress
687 (cons scan key-substitution-in-progress)))
688 ;; Scan OLDMAP, finding each char or event-symbol that
689 ;; has any definition, and act on it with hack-key.
690 (map-keymap
691 (lambda (char defn)
692 (aset prefix1 (length prefix) char)
693 (substitute-key-definition-key defn olddef newdef prefix1 keymap))
694 scan)))
696 (defun substitute-key-definition-key (defn olddef newdef prefix keymap)
697 (let (inner-def skipped menu-item)
698 ;; Find the actual command name within the binding.
699 (if (eq (car-safe defn) 'menu-item)
700 (setq menu-item defn defn (nth 2 defn))
701 ;; Skip past menu-prompt.
702 (while (stringp (car-safe defn))
703 (push (pop defn) skipped))
704 ;; Skip past cached key-equivalence data for menu items.
705 (if (consp (car-safe defn))
706 (setq defn (cdr defn))))
707 (if (or (eq defn olddef)
708 ;; Compare with equal if definition is a key sequence.
709 ;; That is useful for operating on function-key-map.
710 (and (or (stringp defn) (vectorp defn))
711 (equal defn olddef)))
712 (define-key keymap prefix
713 (if menu-item
714 (let ((copy (copy-sequence menu-item)))
715 (setcar (nthcdr 2 copy) newdef)
716 copy)
717 (nconc (nreverse skipped) newdef)))
718 ;; Look past a symbol that names a keymap.
719 (setq inner-def
720 (or (indirect-function defn t) defn))
721 ;; For nested keymaps, we use `inner-def' rather than `defn' so as to
722 ;; avoid autoloading a keymap. This is mostly done to preserve the
723 ;; original non-autoloading behavior of pre-map-keymap times.
724 (if (and (keymapp inner-def)
725 ;; Avoid recursively scanning
726 ;; where KEYMAP does not have a submap.
727 (let ((elt (lookup-key keymap prefix)))
728 (or (null elt) (natnump elt) (keymapp elt)))
729 ;; Avoid recursively rescanning keymap being scanned.
730 (not (memq inner-def key-substitution-in-progress)))
731 ;; If this one isn't being scanned already, scan it now.
732 (substitute-key-definition olddef newdef keymap inner-def prefix)))))
735 ;;;; The global keymap tree.
737 ;; global-map, esc-map, and ctl-x-map have their values set up in
738 ;; keymap.c; we just give them docstrings here.
740 (defvar global-map nil
741 "Default global keymap mapping Emacs keyboard input into commands.
742 The value is a keymap which is usually (but not necessarily) Emacs's
743 global map.")
745 (defvar esc-map nil
746 "Default keymap for ESC (meta) commands.
747 The normal global definition of the character ESC indirects to this keymap.")
749 (defvar ctl-x-map nil
750 "Default keymap for C-x commands.
751 The normal global definition of the character C-x indirects to this keymap.")
753 (defvar ctl-x-4-map (make-sparse-keymap)
754 "Keymap for subcommands of C-x 4.")
755 (defalias 'ctl-x-4-prefix ctl-x-4-map)
756 (define-key ctl-x-map "4" 'ctl-x-4-prefix)
758 (defvar ctl-x-5-map (make-sparse-keymap)
759 "Keymap for frame commands.")
760 (defalias 'ctl-x-5-prefix ctl-x-5-map)
761 (define-key ctl-x-map "5" 'ctl-x-5-prefix)
764 ;;;; Event manipulation functions.
766 (defconst listify-key-sequence-1 (logior 128 ?\M-\C-@))
768 (defun listify-key-sequence (key)
769 "Convert a key sequence to a list of events."
770 (if (vectorp key)
771 (append key nil)
772 (mapcar (function (lambda (c)
773 (if (> c 127)
774 (logxor c listify-key-sequence-1)
775 c)))
776 key)))
778 (defsubst eventp (obj)
779 "True if the argument is an event object."
780 (or (and (integerp obj)
781 ;; Filter out integers too large to be events.
782 ;; M is the biggest modifier.
783 (zerop (logand obj (lognot (1- (lsh ?\M-\^@ 1)))))
784 (characterp (event-basic-type obj)))
785 (and (symbolp obj)
786 (get obj 'event-symbol-elements))
787 (and (consp obj)
788 (symbolp (car obj))
789 (get (car obj) 'event-symbol-elements))))
791 (defun event-modifiers (event)
792 "Return a list of symbols representing the modifier keys in event EVENT.
793 The elements of the list may include `meta', `control',
794 `shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
795 and `down'.
796 EVENT may be an event or an event type. If EVENT is a symbol
797 that has never been used in an event that has been read as input
798 in the current Emacs session, then this function can return nil,
799 even when EVENT actually has modifiers."
800 (let ((type event))
801 (if (listp type)
802 (setq type (car type)))
803 (if (symbolp type)
804 ;; Don't read event-symbol-elements directly since we're not
805 ;; sure the symbol has already been parsed.
806 (cdr (internal-event-symbol-parse-modifiers type))
807 (let ((list nil)
808 (char (logand type (lognot (logior ?\M-\^@ ?\C-\^@ ?\S-\^@
809 ?\H-\^@ ?\s-\^@ ?\A-\^@)))))
810 (if (not (zerop (logand type ?\M-\^@)))
811 (push 'meta list))
812 (if (or (not (zerop (logand type ?\C-\^@)))
813 (< char 32))
814 (push 'control list))
815 (if (or (not (zerop (logand type ?\S-\^@)))
816 (/= char (downcase char)))
817 (push 'shift list))
818 (or (zerop (logand type ?\H-\^@))
819 (push 'hyper list))
820 (or (zerop (logand type ?\s-\^@))
821 (push 'super list))
822 (or (zerop (logand type ?\A-\^@))
823 (push 'alt list))
824 list))))
826 (defun event-basic-type (event)
827 "Return the basic type of the given event (all modifiers removed).
828 The value is a printing character (not upper case) or a symbol.
829 EVENT may be an event or an event type. If EVENT is a symbol
830 that has never been used in an event that has been read as input
831 in the current Emacs session, then this function may return nil."
832 (if (consp event)
833 (setq event (car event)))
834 (if (symbolp event)
835 (car (get event 'event-symbol-elements))
836 (let* ((base (logand event (1- ?\A-\^@)))
837 (uncontrolled (if (< base 32) (logior base 64) base)))
838 ;; There are some numbers that are invalid characters and
839 ;; cause `downcase' to get an error.
840 (condition-case ()
841 (downcase uncontrolled)
842 (error uncontrolled)))))
844 (defsubst mouse-movement-p (object)
845 "Return non-nil if OBJECT is a mouse movement event."
846 (eq (car-safe object) 'mouse-movement))
848 (defun mouse-event-p (object)
849 "Return non-nil if OBJECT is a mouse click event."
850 ;; is this really correct? maybe remove mouse-movement?
851 (memq (event-basic-type object) '(mouse-1 mouse-2 mouse-3 mouse-movement)))
853 (defsubst event-start (event)
854 "Return the starting position of EVENT.
855 EVENT should be a click, drag, or key press event.
856 If it is a key press event, the return value has the form
857 (WINDOW POS (0 . 0) 0)
858 If it is a click or drag event, it has the form
859 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
860 IMAGE (DX . DY) (WIDTH . HEIGHT))
861 The `posn-' functions access elements of such lists.
862 For more information, see Info node `(elisp)Click Events'.
864 If EVENT is a mouse or key press or a mouse click, this is the
865 position of the event. If EVENT is a drag, this is the starting
866 position of the drag."
867 (if (consp event) (nth 1 event)
868 (list (selected-window) (point) '(0 . 0) 0)))
870 (defsubst event-end (event)
871 "Return the ending location of EVENT.
872 EVENT should be a click, drag, or key press event.
873 If EVENT is a key press event, the return value has the form
874 (WINDOW POS (0 . 0) 0)
875 If EVENT is a click event, this function is the same as
876 `event-start'. For click and drag events, the return value has
877 the form
878 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
879 IMAGE (DX . DY) (WIDTH . HEIGHT))
880 The `posn-' functions access elements of such lists.
881 For more information, see Info node `(elisp)Click Events'.
883 If EVENT is a mouse or key press or a mouse click, this is the
884 position of the event. If EVENT is a drag, this is the starting
885 position of the drag."
886 (if (consp event) (nth (if (consp (nth 2 event)) 2 1) event)
887 (list (selected-window) (point) '(0 . 0) 0)))
889 (defsubst event-click-count (event)
890 "Return the multi-click count of EVENT, a click or drag event.
891 The return value is a positive integer."
892 (if (and (consp event) (integerp (nth 2 event))) (nth 2 event) 1))
894 ;;;; Extracting fields of the positions in an event.
896 (defsubst posn-window (position)
897 "Return the window in POSITION.
898 POSITION should be a list of the form returned by the `event-start'
899 and `event-end' functions."
900 (nth 0 position))
902 (defsubst posn-area (position)
903 "Return the window area recorded in POSITION, or nil for the text area.
904 POSITION should be a list of the form returned by the `event-start'
905 and `event-end' functions."
906 (let ((area (if (consp (nth 1 position))
907 (car (nth 1 position))
908 (nth 1 position))))
909 (and (symbolp area) area)))
911 (defsubst posn-point (position)
912 "Return the buffer location in POSITION.
913 POSITION should be a list of the form returned by the `event-start'
914 and `event-end' functions."
915 (or (nth 5 position)
916 (if (consp (nth 1 position))
917 (car (nth 1 position))
918 (nth 1 position))))
920 (defun posn-set-point (position)
921 "Move point to POSITION.
922 Select the corresponding window as well."
923 (if (not (windowp (posn-window position)))
924 (error "Position not in text area of window"))
925 (select-window (posn-window position))
926 (if (numberp (posn-point position))
927 (goto-char (posn-point position))))
929 (defsubst posn-x-y (position)
930 "Return the x and y coordinates in POSITION.
931 The return value has the form (X . Y), where X and Y are given in
932 pixels. POSITION should be a list of the form returned by
933 `event-start' and `event-end'."
934 (nth 2 position))
936 (declare-function scroll-bar-scale "scroll-bar" (num-denom whole))
938 (defun posn-col-row (position)
939 "Return the nominal column and row in POSITION, measured in characters.
940 The column and row values are approximations calculated from the x
941 and y coordinates in POSITION and the frame's default character width
942 and height.
943 For a scroll-bar event, the result column is 0, and the row
944 corresponds to the vertical position of the click in the scroll bar.
945 POSITION should be a list of the form returned by the `event-start'
946 and `event-end' functions."
947 (let* ((pair (posn-x-y position))
948 (window (posn-window position))
949 (area (posn-area position)))
950 (cond
951 ((null window)
952 '(0 . 0))
953 ((eq area 'vertical-scroll-bar)
954 (cons 0 (scroll-bar-scale pair (1- (window-height window)))))
955 ((eq area 'horizontal-scroll-bar)
956 (cons (scroll-bar-scale pair (window-width window)) 0))
958 (let* ((frame (if (framep window) window (window-frame window)))
959 ;; FIXME: This should take line-spacing properties on
960 ;; newlines into account.
961 (spacing (when (display-graphic-p frame)
962 (or (with-current-buffer (window-buffer window)
963 line-spacing)
964 (frame-parameter frame 'line-spacing)))))
965 (cond ((floatp spacing)
966 (setq spacing (truncate (* spacing
967 (frame-char-height frame)))))
968 ((null spacing)
969 (setq spacing 0)))
970 (cons (/ (car pair) (frame-char-width frame))
971 (- (/ (cdr pair) (+ (frame-char-height frame) spacing))
972 (if (null (with-current-buffer (window-buffer window)
973 header-line-format))
974 0 1))))))))
976 (defun posn-actual-col-row (position)
977 "Return the actual column and row in POSITION, measured in characters.
978 These are the actual row number in the window and character number in that row.
979 Return nil if POSITION does not contain the actual position; in that case
980 `posn-col-row' can be used to get approximate values.
981 POSITION should be a list of the form returned by the `event-start'
982 and `event-end' functions."
983 (nth 6 position))
985 (defsubst posn-timestamp (position)
986 "Return the timestamp of POSITION.
987 POSITION should be a list of the form returned by the `event-start'
988 and `event-end' functions."
989 (nth 3 position))
991 (defsubst posn-string (position)
992 "Return the string object of POSITION.
993 Value is a cons (STRING . STRING-POS), or nil if not a string.
994 POSITION should be a list of the form returned by the `event-start'
995 and `event-end' functions."
996 (nth 4 position))
998 (defsubst posn-image (position)
999 "Return the image object of POSITION.
1000 Value is a list (image ...), or nil if not an image.
1001 POSITION should be a list of the form returned by the `event-start'
1002 and `event-end' functions."
1003 (nth 7 position))
1005 (defsubst posn-object (position)
1006 "Return the object (image or string) of POSITION.
1007 Value is a list (image ...) for an image object, a cons cell
1008 \(STRING . STRING-POS) for a string object, and nil for a buffer position.
1009 POSITION should be a list of the form returned by the `event-start'
1010 and `event-end' functions."
1011 (or (posn-image position) (posn-string position)))
1013 (defsubst posn-object-x-y (position)
1014 "Return the x and y coordinates relative to the object of POSITION.
1015 The return value has the form (DX . DY), where DX and DY are
1016 given in pixels. POSITION should be a list of the form returned
1017 by `event-start' and `event-end'."
1018 (nth 8 position))
1020 (defsubst posn-object-width-height (position)
1021 "Return the pixel width and height of the object of POSITION.
1022 The return value has the form (WIDTH . HEIGHT). POSITION should
1023 be a list of the form returned by `event-start' and `event-end'."
1024 (nth 9 position))
1027 ;;;; Obsolescent names for functions.
1029 (define-obsolete-function-alias 'window-dot 'window-point "22.1")
1030 (define-obsolete-function-alias 'set-window-dot 'set-window-point "22.1")
1031 (define-obsolete-function-alias 'read-input 'read-string "22.1")
1032 (define-obsolete-function-alias 'show-buffer 'set-window-buffer "22.1")
1033 (define-obsolete-function-alias 'eval-current-buffer 'eval-buffer "22.1")
1034 (define-obsolete-function-alias 'string-to-int 'string-to-number "22.1")
1036 (make-obsolete 'forward-point "use (+ (point) N) instead." "23.1")
1038 (defun insert-string (&rest args)
1039 "Mocklisp-compatibility insert function.
1040 Like the function `insert' except that any argument that is a number
1041 is converted into a string by expressing it in decimal."
1042 (dolist (el args)
1043 (insert (if (integerp el) (number-to-string el) el))))
1044 (make-obsolete 'insert-string 'insert "22.1")
1046 (defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
1047 (make-obsolete 'makehash 'make-hash-table "22.1")
1049 ;; These are used by VM and some old programs
1050 (defalias 'focus-frame 'ignore "")
1051 (make-obsolete 'focus-frame "it does nothing." "22.1")
1052 (defalias 'unfocus-frame 'ignore "")
1053 (make-obsolete 'unfocus-frame "it does nothing." "22.1")
1054 (make-obsolete 'make-variable-frame-local
1055 "explicitly check for a frame-parameter instead." "22.2")
1056 (make-obsolete 'interactive-p 'called-interactively-p "23.2")
1057 (set-advertised-calling-convention 'called-interactively-p '(kind) "23.1")
1058 (set-advertised-calling-convention
1059 'all-completions '(string collection &optional predicate) "23.1")
1060 (set-advertised-calling-convention 'unintern '(name obarray) "23.3")
1062 ;;;; Obsolescence declarations for variables, and aliases.
1064 ;; Special "default-FOO" variables which contain the default value of
1065 ;; the "FOO" variable are nasty. Their implementation is brittle, and
1066 ;; slows down several unrelated variable operations; furthermore, they
1067 ;; can lead to really odd behavior if you decide to make them
1068 ;; buffer-local.
1070 ;; Not used at all in Emacs, last time I checked:
1071 (make-obsolete-variable 'default-mode-line-format 'mode-line-format "23.2")
1072 (make-obsolete-variable 'default-header-line-format 'header-line-format "23.2")
1073 (make-obsolete-variable 'default-line-spacing 'line-spacing "23.2")
1074 (make-obsolete-variable 'default-abbrev-mode 'abbrev-mode "23.2")
1075 (make-obsolete-variable 'default-ctl-arrow 'ctl-arrow "23.2")
1076 (make-obsolete-variable 'default-truncate-lines 'truncate-lines "23.2")
1077 (make-obsolete-variable 'default-left-margin 'left-margin "23.2")
1078 (make-obsolete-variable 'default-tab-width 'tab-width "23.2")
1079 (make-obsolete-variable 'default-case-fold-search 'case-fold-search "23.2")
1080 (make-obsolete-variable 'default-left-margin-width 'left-margin-width "23.2")
1081 (make-obsolete-variable 'default-right-margin-width 'right-margin-width "23.2")
1082 (make-obsolete-variable 'default-left-fringe-width 'left-fringe-width "23.2")
1083 (make-obsolete-variable 'default-right-fringe-width 'right-fringe-width "23.2")
1084 (make-obsolete-variable 'default-fringes-outside-margins 'fringes-outside-margins "23.2")
1085 (make-obsolete-variable 'default-scroll-bar-width 'scroll-bar-width "23.2")
1086 (make-obsolete-variable 'default-vertical-scroll-bar 'vertical-scroll-bar "23.2")
1087 (make-obsolete-variable 'default-indicate-empty-lines 'indicate-empty-lines "23.2")
1088 (make-obsolete-variable 'default-indicate-buffer-boundaries 'indicate-buffer-boundaries "23.2")
1089 (make-obsolete-variable 'default-fringe-indicator-alist 'fringe-indicator-alist "23.2")
1090 (make-obsolete-variable 'default-fringe-cursor-alist 'fringe-cursor-alist "23.2")
1091 (make-obsolete-variable 'default-scroll-up-aggressively 'scroll-up-aggressively "23.2")
1092 (make-obsolete-variable 'default-scroll-down-aggressively 'scroll-down-aggressively "23.2")
1093 (make-obsolete-variable 'default-fill-column 'fill-column "23.2")
1094 (make-obsolete-variable 'default-cursor-type 'cursor-type "23.2")
1095 (make-obsolete-variable 'default-buffer-file-type 'buffer-file-type "23.2")
1096 (make-obsolete-variable 'default-cursor-in-non-selected-windows 'cursor-in-non-selected-windows "23.2")
1097 (make-obsolete-variable 'default-buffer-file-coding-system 'buffer-file-coding-system "23.2")
1098 (make-obsolete-variable 'default-major-mode 'major-mode "23.2")
1099 (make-obsolete-variable 'default-enable-multibyte-characters
1100 "use enable-multibyte-characters or set-buffer-multibyte instead" "23.2")
1102 (make-obsolete-variable 'define-key-rebound-commands nil "23.2")
1103 (make-obsolete-variable 'redisplay-end-trigger-functions 'jit-lock-register "23.1")
1104 (make-obsolete 'window-redisplay-end-trigger nil "23.1")
1105 (make-obsolete 'set-window-redisplay-end-trigger nil "23.1")
1107 (make-obsolete 'process-filter-multibyte-p nil "23.1")
1108 (make-obsolete 'set-process-filter-multibyte nil "23.1")
1110 (make-obsolete-variable
1111 'mode-line-inverse-video
1112 "use the appropriate faces instead."
1113 "21.1")
1114 (make-obsolete-variable
1115 'unread-command-char
1116 "use `unread-command-events' instead. That variable is a list of events
1117 to reread, so it now uses nil to mean `no event', instead of -1."
1118 "before 19.15")
1120 ;; Lisp manual only updated in 22.1.
1121 (define-obsolete-variable-alias 'executing-macro 'executing-kbd-macro
1122 "before 19.34")
1124 (defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions)
1125 (make-obsolete-variable 'x-lost-selection-hooks
1126 'x-lost-selection-functions "22.1")
1127 (defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions)
1128 (make-obsolete-variable 'x-sent-selection-hooks
1129 'x-sent-selection-functions "22.1")
1131 ;; This was introduced in 21.4 for pre-unicode unification. That
1132 ;; usage was rendered obsolete in 23.1 which uses Unicode internally.
1133 ;; Other uses are possible, so this variable is not _really_ obsolete,
1134 ;; but Stefan insists to mark it so.
1135 (make-obsolete-variable 'translation-table-for-input nil "23.1")
1137 (defvaralias 'messages-buffer-max-lines 'message-log-max)
1139 ;; These aliases exist in Emacs 19.34, and probably before, but were
1140 ;; only marked as obsolete in 23.1.
1141 ;; The lisp manual (since at least Emacs 21) describes them as
1142 ;; existing "for compatibility with Emacs version 18".
1143 (define-obsolete-variable-alias 'last-input-char 'last-input-event
1144 "at least 19.34")
1145 (define-obsolete-variable-alias 'last-command-char 'last-command-event
1146 "at least 19.34")
1149 ;;;; Alternate names for functions - these are not being phased out.
1151 (defalias 'send-string 'process-send-string)
1152 (defalias 'send-region 'process-send-region)
1153 (defalias 'string= 'string-equal)
1154 (defalias 'string< 'string-lessp)
1155 (defalias 'move-marker 'set-marker)
1156 (defalias 'rplaca 'setcar)
1157 (defalias 'rplacd 'setcdr)
1158 (defalias 'beep 'ding) ;preserve lingual purity
1159 (defalias 'indent-to-column 'indent-to)
1160 (defalias 'backward-delete-char 'delete-backward-char)
1161 (defalias 'search-forward-regexp (symbol-function 're-search-forward))
1162 (defalias 'search-backward-regexp (symbol-function 're-search-backward))
1163 (defalias 'int-to-string 'number-to-string)
1164 (defalias 'store-match-data 'set-match-data)
1165 (defalias 'chmod 'set-file-modes)
1166 (defalias 'mkdir 'make-directory)
1167 ;; These are the XEmacs names:
1168 (defalias 'point-at-eol 'line-end-position)
1169 (defalias 'point-at-bol 'line-beginning-position)
1171 (defalias 'user-original-login-name 'user-login-name)
1174 ;;;; Hook manipulation functions.
1176 (defun add-hook (hook function &optional append local)
1177 "Add to the value of HOOK the function FUNCTION.
1178 FUNCTION is not added if already present.
1179 FUNCTION is added (if necessary) at the beginning of the hook list
1180 unless the optional argument APPEND is non-nil, in which case
1181 FUNCTION is added at the end.
1183 The optional fourth argument, LOCAL, if non-nil, says to modify
1184 the hook's buffer-local value rather than its default value.
1185 This makes the hook buffer-local if needed, and it makes t a member
1186 of the buffer-local value. That acts as a flag to run the hook
1187 functions in the default value as well as in the local value.
1189 HOOK should be a symbol, and FUNCTION may be any valid function. If
1190 HOOK is void, it is first set to nil. If HOOK's value is a single
1191 function, it is changed to a list of functions."
1192 (or (boundp hook) (set hook nil))
1193 (or (default-boundp hook) (set-default hook nil))
1194 (if local (unless (local-variable-if-set-p hook)
1195 (set (make-local-variable hook) (list t)))
1196 ;; Detect the case where make-local-variable was used on a hook
1197 ;; and do what we used to do.
1198 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook)))
1199 (setq local t)))
1200 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
1201 ;; If the hook value is a single function, turn it into a list.
1202 (when (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
1203 (setq hook-value (list hook-value)))
1204 ;; Do the actual addition if necessary
1205 (unless (member function hook-value)
1206 (when (stringp function)
1207 (setq function (purecopy function)))
1208 (setq hook-value
1209 (if append
1210 (append hook-value (list function))
1211 (cons function hook-value))))
1212 ;; Set the actual variable
1213 (if local
1214 (progn
1215 ;; If HOOK isn't a permanent local,
1216 ;; but FUNCTION wants to survive a change of modes,
1217 ;; mark HOOK as partially permanent.
1218 (and (symbolp function)
1219 (get function 'permanent-local-hook)
1220 (not (get hook 'permanent-local))
1221 (put hook 'permanent-local 'permanent-local-hook))
1222 (set hook hook-value))
1223 (set-default hook hook-value))))
1225 (defun remove-hook (hook function &optional local)
1226 "Remove from the value of HOOK the function FUNCTION.
1227 HOOK should be a symbol, and FUNCTION may be any valid function. If
1228 FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
1229 list of hooks to run in HOOK, then nothing is done. See `add-hook'.
1231 The optional third argument, LOCAL, if non-nil, says to modify
1232 the hook's buffer-local value rather than its default value."
1233 (or (boundp hook) (set hook nil))
1234 (or (default-boundp hook) (set-default hook nil))
1235 ;; Do nothing if LOCAL is t but this hook has no local binding.
1236 (unless (and local (not (local-variable-p hook)))
1237 ;; Detect the case where make-local-variable was used on a hook
1238 ;; and do what we used to do.
1239 (when (and (local-variable-p hook)
1240 (not (and (consp (symbol-value hook))
1241 (memq t (symbol-value hook)))))
1242 (setq local t))
1243 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
1244 ;; Remove the function, for both the list and the non-list cases.
1245 (if (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
1246 (if (equal hook-value function) (setq hook-value nil))
1247 (setq hook-value (delete function (copy-sequence hook-value))))
1248 ;; If the function is on the global hook, we need to shadow it locally
1249 ;;(when (and local (member function (default-value hook))
1250 ;; (not (member (cons 'not function) hook-value)))
1251 ;; (push (cons 'not function) hook-value))
1252 ;; Set the actual variable
1253 (if (not local)
1254 (set-default hook hook-value)
1255 (if (equal hook-value '(t))
1256 (kill-local-variable hook)
1257 (set hook hook-value))))))
1259 (defmacro letrec (binders &rest body)
1260 "Bind variables according to BINDERS then eval BODY.
1261 The value of the last form in BODY is returned.
1262 Each element of BINDERS is a list (SYMBOL VALUEFORM) which binds
1263 SYMBOL to the value of VALUEFORM.
1264 All symbols are bound before the VALUEFORMs are evalled."
1265 ;; Only useful in lexical-binding mode.
1266 ;; As a special-form, we could implement it more efficiently (and cleanly,
1267 ;; making the vars actually unbound during evaluation of the binders).
1268 (declare (debug let) (indent 1))
1269 `(let ,(mapcar #'car binders)
1270 ,@(mapcar (lambda (binder) `(setq ,@binder)) binders)
1271 ,@body))
1273 (defmacro with-wrapper-hook (var args &rest body)
1274 "Run BODY wrapped with the VAR hook.
1275 VAR is a special hook: its functions are called with a first argument
1276 which is the \"original\" code (the BODY), so the hook function can wrap
1277 the original function, or call it any number of times (including not calling
1278 it at all). This is similar to an `around' advice.
1279 VAR is normally a symbol (a variable) in which case it is treated like
1280 a hook, with a buffer-local and a global part. But it can also be an
1281 arbitrary expression.
1282 ARGS is a list of variables which will be passed as additional arguments
1283 to each function, after the initial argument, and which the first argument
1284 expects to receive when called."
1285 (declare (indent 2) (debug t))
1286 ;; We need those two gensyms because CL's lexical scoping is not available
1287 ;; for function arguments :-(
1288 (let ((funs (make-symbol "funs"))
1289 (global (make-symbol "global"))
1290 (argssym (make-symbol "args"))
1291 (runrestofhook (make-symbol "runrestofhook")))
1292 ;; Since the hook is a wrapper, the loop has to be done via
1293 ;; recursion: a given hook function will call its parameter in order to
1294 ;; continue looping.
1295 `(letrec ((,runrestofhook
1296 (lambda (,funs ,global ,argssym)
1297 ;; `funs' holds the functions left on the hook and `global'
1298 ;; holds the functions left on the global part of the hook
1299 ;; (in case the hook is local).
1300 (if (consp ,funs)
1301 (if (eq t (car ,funs))
1302 (funcall ,runrestofhook
1303 (append ,global (cdr ,funs)) nil ,argssym)
1304 (apply (car ,funs)
1305 (apply-partially
1306 (lambda (,funs ,global &rest ,argssym)
1307 (funcall ,runrestofhook ,funs ,global ,argssym))
1308 (cdr ,funs) ,global)
1309 ,argssym))
1310 ;; Once there are no more functions on the hook, run
1311 ;; the original body.
1312 (apply (lambda ,args ,@body) ,argssym)))))
1313 (funcall ,runrestofhook ,var
1314 ;; The global part of the hook, if any.
1315 ,(if (symbolp var)
1316 `(if (local-variable-p ',var)
1317 (default-value ',var)))
1318 (list ,@args)))))
1320 (defun add-to-list (list-var element &optional append compare-fn)
1321 "Add ELEMENT to the value of LIST-VAR if it isn't there yet.
1322 The test for presence of ELEMENT is done with `equal',
1323 or with COMPARE-FN if that's non-nil.
1324 If ELEMENT is added, it is added at the beginning of the list,
1325 unless the optional argument APPEND is non-nil, in which case
1326 ELEMENT is added at the end.
1328 The return value is the new value of LIST-VAR.
1330 If you want to use `add-to-list' on a variable that is not defined
1331 until a certain package is loaded, you should put the call to `add-to-list'
1332 into a hook function that will be run only after loading the package.
1333 `eval-after-load' provides one way to do this. In some cases
1334 other hooks, such as major mode hooks, can do the job."
1335 (if (cond
1336 ((null compare-fn)
1337 (member element (symbol-value list-var)))
1338 ((eq compare-fn 'eq)
1339 (memq element (symbol-value list-var)))
1340 ((eq compare-fn 'eql)
1341 (memql element (symbol-value list-var)))
1343 (let ((lst (symbol-value list-var)))
1344 (while (and lst
1345 (not (funcall compare-fn element (car lst))))
1346 (setq lst (cdr lst)))
1347 lst)))
1348 (symbol-value list-var)
1349 (set list-var
1350 (if append
1351 (append (symbol-value list-var) (list element))
1352 (cons element (symbol-value list-var))))))
1355 (defun add-to-ordered-list (list-var element &optional order)
1356 "Add ELEMENT to the value of LIST-VAR if it isn't there yet.
1357 The test for presence of ELEMENT is done with `eq'.
1359 The resulting list is reordered so that the elements are in the
1360 order given by each element's numeric list order. Elements
1361 without a numeric list order are placed at the end of the list.
1363 If the third optional argument ORDER is a number (integer or
1364 float), set the element's list order to the given value. If
1365 ORDER is nil or omitted, do not change the numeric order of
1366 ELEMENT. If ORDER has any other value, remove the numeric order
1367 of ELEMENT if it has one.
1369 The list order for each element is stored in LIST-VAR's
1370 `list-order' property.
1372 The return value is the new value of LIST-VAR."
1373 (let ((ordering (get list-var 'list-order)))
1374 (unless ordering
1375 (put list-var 'list-order
1376 (setq ordering (make-hash-table :weakness 'key :test 'eq))))
1377 (when order
1378 (puthash element (and (numberp order) order) ordering))
1379 (unless (memq element (symbol-value list-var))
1380 (set list-var (cons element (symbol-value list-var))))
1381 (set list-var (sort (symbol-value list-var)
1382 (lambda (a b)
1383 (let ((oa (gethash a ordering))
1384 (ob (gethash b ordering)))
1385 (if (and oa ob)
1386 (< oa ob)
1387 oa)))))))
1389 (defun add-to-history (history-var newelt &optional maxelt keep-all)
1390 "Add NEWELT to the history list stored in the variable HISTORY-VAR.
1391 Return the new history list.
1392 If MAXELT is non-nil, it specifies the maximum length of the history.
1393 Otherwise, the maximum history length is the value of the `history-length'
1394 property on symbol HISTORY-VAR, if set, or the value of the `history-length'
1395 variable.
1396 Remove duplicates of NEWELT if `history-delete-duplicates' is non-nil.
1397 If optional fourth arg KEEP-ALL is non-nil, add NEWELT to history even
1398 if it is empty or a duplicate."
1399 (unless maxelt
1400 (setq maxelt (or (get history-var 'history-length)
1401 history-length)))
1402 (let ((history (symbol-value history-var))
1403 tail)
1404 (when (and (listp history)
1405 (or keep-all
1406 (not (stringp newelt))
1407 (> (length newelt) 0))
1408 (or keep-all
1409 (not (equal (car history) newelt))))
1410 (if history-delete-duplicates
1411 (delete newelt history))
1412 (setq history (cons newelt history))
1413 (when (integerp maxelt)
1414 (if (= 0 maxelt)
1415 (setq history nil)
1416 (setq tail (nthcdr (1- maxelt) history))
1417 (when (consp tail)
1418 (setcdr tail nil)))))
1419 (set history-var history)))
1422 ;;;; Mode hooks.
1424 (defvar delay-mode-hooks nil
1425 "If non-nil, `run-mode-hooks' should delay running the hooks.")
1426 (defvar delayed-mode-hooks nil
1427 "List of delayed mode hooks waiting to be run.")
1428 (make-variable-buffer-local 'delayed-mode-hooks)
1429 (put 'delay-mode-hooks 'permanent-local t)
1431 (defvar after-change-major-mode-hook nil
1432 "Normal hook run at the very end of major mode functions.")
1434 (defun run-mode-hooks (&rest hooks)
1435 "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS.
1436 Execution is delayed if the variable `delay-mode-hooks' is non-nil.
1437 Otherwise, runs the mode hooks and then `after-change-major-mode-hook'.
1438 Major mode functions should use this instead of `run-hooks' when running their
1439 FOO-mode-hook."
1440 (if delay-mode-hooks
1441 ;; Delaying case.
1442 (dolist (hook hooks)
1443 (push hook delayed-mode-hooks))
1444 ;; Normal case, just run the hook as before plus any delayed hooks.
1445 (setq hooks (nconc (nreverse delayed-mode-hooks) hooks))
1446 (setq delayed-mode-hooks nil)
1447 (apply 'run-hooks hooks)
1448 (run-hooks 'after-change-major-mode-hook)))
1450 (defmacro delay-mode-hooks (&rest body)
1451 "Execute BODY, but delay any `run-mode-hooks'.
1452 These hooks will be executed by the first following call to
1453 `run-mode-hooks' that occurs outside any `delayed-mode-hooks' form.
1454 Only affects hooks run in the current buffer."
1455 (declare (debug t) (indent 0))
1456 `(progn
1457 (make-local-variable 'delay-mode-hooks)
1458 (let ((delay-mode-hooks t))
1459 ,@body)))
1461 ;; PUBLIC: find if the current mode derives from another.
1463 (defun derived-mode-p (&rest modes)
1464 "Non-nil if the current major mode is derived from one of MODES.
1465 Uses the `derived-mode-parent' property of the symbol to trace backwards."
1466 (let ((parent major-mode))
1467 (while (and (not (memq parent modes))
1468 (setq parent (get parent 'derived-mode-parent))))
1469 parent))
1471 ;;;; Minor modes.
1473 ;; If a minor mode is not defined with define-minor-mode,
1474 ;; add it here explicitly.
1475 ;; isearch-mode is deliberately excluded, since you should
1476 ;; not call it yourself.
1477 (defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
1478 overwrite-mode view-mode
1479 hs-minor-mode)
1480 "List of all minor mode functions.")
1482 (defun add-minor-mode (toggle name &optional keymap after toggle-fun)
1483 "Register a new minor mode.
1485 This is an XEmacs-compatibility function. Use `define-minor-mode' instead.
1487 TOGGLE is a symbol which is the name of a buffer-local variable that
1488 is toggled on or off to say whether the minor mode is active or not.
1490 NAME specifies what will appear in the mode line when the minor mode
1491 is active. NAME should be either a string starting with a space, or a
1492 symbol whose value is such a string.
1494 Optional KEYMAP is the keymap for the minor mode that will be added
1495 to `minor-mode-map-alist'.
1497 Optional AFTER specifies that TOGGLE should be added after AFTER
1498 in `minor-mode-alist'.
1500 Optional TOGGLE-FUN is an interactive function to toggle the mode.
1501 It defaults to (and should by convention be) TOGGLE.
1503 If TOGGLE has a non-nil `:included' property, an entry for the mode is
1504 included in the mode-line minor mode menu.
1505 If TOGGLE has a `:menu-tag', that is used for the menu item's label."
1506 (unless (memq toggle minor-mode-list)
1507 (push toggle minor-mode-list))
1509 (unless toggle-fun (setq toggle-fun toggle))
1510 (unless (eq toggle-fun toggle)
1511 (put toggle :minor-mode-function toggle-fun))
1512 ;; Add the name to the minor-mode-alist.
1513 (when name
1514 (let ((existing (assq toggle minor-mode-alist)))
1515 (if existing
1516 (setcdr existing (list name))
1517 (let ((tail minor-mode-alist) found)
1518 (while (and tail (not found))
1519 (if (eq after (caar tail))
1520 (setq found tail)
1521 (setq tail (cdr tail))))
1522 (if found
1523 (let ((rest (cdr found)))
1524 (setcdr found nil)
1525 (nconc found (list (list toggle name)) rest))
1526 (push (list toggle name) minor-mode-alist))))))
1527 ;; Add the toggle to the minor-modes menu if requested.
1528 (when (get toggle :included)
1529 (define-key mode-line-mode-menu
1530 (vector toggle)
1531 (list 'menu-item
1532 (concat
1533 (or (get toggle :menu-tag)
1534 (if (stringp name) name (symbol-name toggle)))
1535 (let ((mode-name (if (symbolp name) (symbol-value name))))
1536 (if (and (stringp mode-name) (string-match "[^ ]+" mode-name))
1537 (concat " (" (match-string 0 mode-name) ")"))))
1538 toggle-fun
1539 :button (cons :toggle toggle))))
1541 ;; Add the map to the minor-mode-map-alist.
1542 (when keymap
1543 (let ((existing (assq toggle minor-mode-map-alist)))
1544 (if existing
1545 (setcdr existing keymap)
1546 (let ((tail minor-mode-map-alist) found)
1547 (while (and tail (not found))
1548 (if (eq after (caar tail))
1549 (setq found tail)
1550 (setq tail (cdr tail))))
1551 (if found
1552 (let ((rest (cdr found)))
1553 (setcdr found nil)
1554 (nconc found (list (cons toggle keymap)) rest))
1555 (push (cons toggle keymap) minor-mode-map-alist)))))))
1557 ;;; Load history
1559 (defun symbol-file (symbol &optional type)
1560 "Return the name of the file that defined SYMBOL.
1561 The value is normally an absolute file name. It can also be nil,
1562 if the definition is not associated with any file. If SYMBOL
1563 specifies an autoloaded function, the value can be a relative
1564 file name without extension.
1566 If TYPE is nil, then any kind of definition is acceptable. If
1567 TYPE is `defun', `defvar', or `defface', that specifies function
1568 definition, variable definition, or face definition only."
1569 (if (and (or (null type) (eq type 'defun))
1570 (symbolp symbol) (fboundp symbol)
1571 (eq 'autoload (car-safe (symbol-function symbol))))
1572 (nth 1 (symbol-function symbol))
1573 (let ((files load-history)
1574 file)
1575 (while files
1576 (if (if type
1577 (if (eq type 'defvar)
1578 ;; Variables are present just as their names.
1579 (member symbol (cdr (car files)))
1580 ;; Other types are represented as (TYPE . NAME).
1581 (member (cons type symbol) (cdr (car files))))
1582 ;; We accept all types, so look for variable def
1583 ;; and then for any other kind.
1584 (or (member symbol (cdr (car files)))
1585 (rassq symbol (cdr (car files)))))
1586 (setq file (car (car files)) files nil))
1587 (setq files (cdr files)))
1588 file)))
1590 (defun locate-library (library &optional nosuffix path interactive-call)
1591 "Show the precise file name of Emacs library LIBRARY.
1592 LIBRARY should be a relative file name of the library, a string.
1593 It can omit the suffix (a.k.a. file-name extension) if NOSUFFIX is
1594 nil (which is the default, see below).
1595 This command searches the directories in `load-path' like `\\[load-library]'
1596 to find the file that `\\[load-library] RET LIBRARY RET' would load.
1597 Optional second arg NOSUFFIX non-nil means don't add suffixes `load-suffixes'
1598 to the specified name LIBRARY.
1600 If the optional third arg PATH is specified, that list of directories
1601 is used instead of `load-path'.
1603 When called from a program, the file name is normally returned as a
1604 string. When run interactively, the argument INTERACTIVE-CALL is t,
1605 and the file name is displayed in the echo area."
1606 (interactive (list (completing-read "Locate library: "
1607 (apply-partially
1608 'locate-file-completion-table
1609 load-path (get-load-suffixes)))
1610 nil nil
1612 (let ((file (locate-file library
1613 (or path load-path)
1614 (append (unless nosuffix (get-load-suffixes))
1615 load-file-rep-suffixes))))
1616 (if interactive-call
1617 (if file
1618 (message "Library is file %s" (abbreviate-file-name file))
1619 (message "No library %s in search path" library)))
1620 file))
1623 ;;;; Specifying things to do later.
1625 (defun load-history-regexp (file)
1626 "Form a regexp to find FILE in `load-history'.
1627 FILE, a string, is described in the function `eval-after-load'."
1628 (if (file-name-absolute-p file)
1629 (setq file (file-truename file)))
1630 (concat (if (file-name-absolute-p file) "\\`" "\\(\\`\\|/\\)")
1631 (regexp-quote file)
1632 (if (file-name-extension file)
1634 ;; Note: regexp-opt can't be used here, since we need to call
1635 ;; this before Emacs has been fully started. 2006-05-21
1636 (concat "\\(" (mapconcat 'regexp-quote load-suffixes "\\|") "\\)?"))
1637 "\\(" (mapconcat 'regexp-quote jka-compr-load-suffixes "\\|")
1638 "\\)?\\'"))
1640 (defun load-history-filename-element (file-regexp)
1641 "Get the first elt of `load-history' whose car matches FILE-REGEXP.
1642 Return nil if there isn't one."
1643 (let* ((loads load-history)
1644 (load-elt (and loads (car loads))))
1645 (save-match-data
1646 (while (and loads
1647 (or (null (car load-elt))
1648 (not (string-match file-regexp (car load-elt)))))
1649 (setq loads (cdr loads)
1650 load-elt (and loads (car loads)))))
1651 load-elt))
1653 (put 'eval-after-load 'lisp-indent-function 1)
1654 (defun eval-after-load (file form)
1655 "Arrange that, if FILE is ever loaded, FORM will be run at that time.
1656 If FILE is already loaded, evaluate FORM right now.
1658 If a matching file is loaded again, FORM will be evaluated again.
1660 If FILE is a string, it may be either an absolute or a relative file
1661 name, and may have an extension \(e.g. \".el\") or may lack one, and
1662 additionally may or may not have an extension denoting a compressed
1663 format \(e.g. \".gz\").
1665 When FILE is absolute, this first converts it to a true name by chasing
1666 symbolic links. Only a file of this name \(see next paragraph regarding
1667 extensions) will trigger the evaluation of FORM. When FILE is relative,
1668 a file whose absolute true name ends in FILE will trigger evaluation.
1670 When FILE lacks an extension, a file name with any extension will trigger
1671 evaluation. Otherwise, its extension must match FILE's. A further
1672 extension for a compressed format \(e.g. \".gz\") on FILE will not affect
1673 this name matching.
1675 Alternatively, FILE can be a feature (i.e. a symbol), in which case FORM
1676 is evaluated at the end of any file that `provide's this feature.
1678 Usually FILE is just a library name like \"font-lock\" or a feature name
1679 like 'font-lock.
1681 This function makes or adds to an entry on `after-load-alist'."
1682 ;; Add this FORM into after-load-alist (regardless of whether we'll be
1683 ;; evaluating it now).
1684 (let* ((regexp-or-feature
1685 (if (stringp file)
1686 (setq file (purecopy (load-history-regexp file)))
1687 file))
1688 (elt (assoc regexp-or-feature after-load-alist)))
1689 (unless elt
1690 (setq elt (list regexp-or-feature))
1691 (push elt after-load-alist))
1692 ;; Make sure `form' is evalled in the current lexical/dynamic code.
1693 (setq form `(funcall ',(eval `(lambda () ,form) lexical-binding)))
1694 (when (symbolp regexp-or-feature)
1695 ;; For features, the after-load-alist elements get run when `provide' is
1696 ;; called rather than at the end of the file. So add an indirection to
1697 ;; make sure that `form' is really run "after-load" in case the provide
1698 ;; call happens early.
1699 (setq form
1700 `(when load-file-name
1701 (let ((fun (make-symbol "eval-after-load-helper")))
1702 (fset fun `(lambda (file)
1703 (if (not (equal file ',load-file-name))
1705 (remove-hook 'after-load-functions ',fun)
1706 ,',form)))
1707 (add-hook 'after-load-functions fun)))))
1708 ;; Add FORM to the element unless it's already there.
1709 (unless (member form (cdr elt))
1710 (nconc elt (purecopy (list form))))
1712 ;; Is there an already loaded file whose name (or `provide' name)
1713 ;; matches FILE?
1714 (if (if (stringp file)
1715 (load-history-filename-element regexp-or-feature)
1716 (featurep file))
1717 (eval form))))
1719 (defvar after-load-functions nil
1720 "Special hook run after loading a file.
1721 Each function there is called with a single argument, the absolute
1722 name of the file just loaded.")
1724 (defun do-after-load-evaluation (abs-file)
1725 "Evaluate all `eval-after-load' forms, if any, for ABS-FILE.
1726 ABS-FILE, a string, should be the absolute true name of a file just loaded.
1727 This function is called directly from the C code."
1728 ;; Run the relevant eval-after-load forms.
1729 (mapc #'(lambda (a-l-element)
1730 (when (and (stringp (car a-l-element))
1731 (string-match-p (car a-l-element) abs-file))
1732 ;; discard the file name regexp
1733 (mapc #'eval (cdr a-l-element))))
1734 after-load-alist)
1735 ;; Complain when the user uses obsolete files.
1736 (when (string-match-p "/obsolete/[^/]*\\'" abs-file)
1737 (run-with-timer 0 nil
1738 (lambda (file)
1739 (message "Package %s is obsolete!"
1740 (substring file 0
1741 (string-match "\\.elc?\\>" file))))
1742 (file-name-nondirectory abs-file)))
1743 ;; Finally, run any other hook.
1744 (run-hook-with-args 'after-load-functions abs-file))
1746 (defun eval-next-after-load (file)
1747 "Read the following input sexp, and run it whenever FILE is loaded.
1748 This makes or adds to an entry on `after-load-alist'.
1749 FILE should be the name of a library, with no directory name."
1750 (eval-after-load file (read)))
1751 (make-obsolete 'eval-next-after-load `eval-after-load "23.2")
1753 ;;;; Process stuff.
1755 (defun process-lines (program &rest args)
1756 "Execute PROGRAM with ARGS, returning its output as a list of lines.
1757 Signal an error if the program returns with a non-zero exit status."
1758 (with-temp-buffer
1759 (let ((status (apply 'call-process program nil (current-buffer) nil args)))
1760 (unless (eq status 0)
1761 (error "%s exited with status %s" program status))
1762 (goto-char (point-min))
1763 (let (lines)
1764 (while (not (eobp))
1765 (setq lines (cons (buffer-substring-no-properties
1766 (line-beginning-position)
1767 (line-end-position))
1768 lines))
1769 (forward-line 1))
1770 (nreverse lines)))))
1772 ;; open-network-stream is a wrapper around make-network-process.
1774 (when (featurep 'make-network-process)
1775 (defun open-network-stream (name buffer host service)
1776 "Open a TCP connection for a service to a host.
1777 Returns a subprocess-object to represent the connection.
1778 Input and output work as for subprocesses; `delete-process' closes it.
1780 NAME is the name for the process. It is modified if necessary to make
1781 it unique.
1782 BUFFER is the buffer (or buffer name) to associate with the
1783 process. Process output goes at end of that buffer. BUFFER may
1784 be nil, meaning that this process is not associated with any buffer.
1785 HOST is the name or IP address of the host to connect to.
1786 SERVICE is the name of the service desired, or an integer specifying
1787 a port number to connect to.
1789 This is a wrapper around `make-network-process', and only offers a
1790 subset of its functionality."
1791 (make-network-process :name name :buffer buffer
1792 :host host :service service)))
1794 ;; compatibility
1796 (make-obsolete
1797 'process-kill-without-query
1798 "use `process-query-on-exit-flag' or `set-process-query-on-exit-flag'."
1799 "22.1")
1800 (defun process-kill-without-query (process &optional flag)
1801 "Say no query needed if PROCESS is running when Emacs is exited.
1802 Optional second argument if non-nil says to require a query.
1803 Value is t if a query was formerly required."
1804 (let ((old (process-query-on-exit-flag process)))
1805 (set-process-query-on-exit-flag process nil)
1806 old))
1808 (defun process-kill-buffer-query-function ()
1809 "Ask before killing a buffer that has a running process."
1810 (let ((process (get-buffer-process (current-buffer))))
1811 (or (not process)
1812 (not (memq (process-status process) '(run stop open listen)))
1813 (not (process-query-on-exit-flag process))
1814 (yes-or-no-p "Buffer has a running process; kill it? "))))
1816 (add-hook 'kill-buffer-query-functions 'process-kill-buffer-query-function)
1818 ;; process plist management
1820 (defun process-get (process propname)
1821 "Return the value of PROCESS' PROPNAME property.
1822 This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
1823 (plist-get (process-plist process) propname))
1825 (defun process-put (process propname value)
1826 "Change PROCESS' PROPNAME property to VALUE.
1827 It can be retrieved with `(process-get PROCESS PROPNAME)'."
1828 (set-process-plist process
1829 (plist-put (process-plist process) propname value)))
1832 ;;;; Input and display facilities.
1834 (defvar read-quoted-char-radix 8
1835 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
1836 Legitimate radix values are 8, 10 and 16.")
1838 (custom-declare-variable-early
1839 'read-quoted-char-radix 8
1840 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
1841 Legitimate radix values are 8, 10 and 16."
1842 :type '(choice (const 8) (const 10) (const 16))
1843 :group 'editing-basics)
1845 (defconst read-key-empty-map (make-sparse-keymap))
1847 (defvar read-key-delay 0.01) ;Fast enough for 100Hz repeat rate, hopefully.
1849 (defun read-key (&optional prompt)
1850 "Read a key from the keyboard.
1851 Contrary to `read-event' this will not return a raw event but instead will
1852 obey the input decoding and translations usually done by `read-key-sequence'.
1853 So escape sequences and keyboard encoding are taken into account.
1854 When there's an ambiguity because the key looks like the prefix of
1855 some sort of escape sequence, the ambiguity is resolved via `read-key-delay'."
1856 (let ((overriding-terminal-local-map read-key-empty-map)
1857 (overriding-local-map nil)
1858 (echo-keystrokes 0)
1859 (old-global-map (current-global-map))
1860 (timer (run-with-idle-timer
1861 ;; Wait long enough that Emacs has the time to receive and
1862 ;; process all the raw events associated with the single-key.
1863 ;; But don't wait too long, or the user may find the delay
1864 ;; annoying (or keep hitting more keys which may then get
1865 ;; lost or misinterpreted).
1866 ;; This is only relevant for keys which Emacs perceives as
1867 ;; "prefixes", such as C-x (because of the C-x 8 map in
1868 ;; key-translate-table and the C-x @ map in function-key-map)
1869 ;; or ESC (because of terminal escape sequences in
1870 ;; input-decode-map).
1871 read-key-delay t
1872 (lambda ()
1873 (let ((keys (this-command-keys-vector)))
1874 (unless (zerop (length keys))
1875 ;; `keys' is non-empty, so the user has hit at least
1876 ;; one key; there's no point waiting any longer, even
1877 ;; though read-key-sequence thinks we should wait
1878 ;; for more input to decide how to interpret the
1879 ;; current input.
1880 (throw 'read-key keys)))))))
1881 (unwind-protect
1882 (progn
1883 (use-global-map
1884 (let ((map (make-sparse-keymap)))
1885 ;; Don't hide the menu-bar and tool-bar entries.
1886 (define-key map [menu-bar] (lookup-key global-map [menu-bar]))
1887 (define-key map [tool-bar] (lookup-key global-map [tool-bar]))
1888 map))
1889 (aref (catch 'read-key (read-key-sequence-vector prompt nil t)) 0))
1890 (cancel-timer timer)
1891 (use-global-map old-global-map))))
1893 (defun read-quoted-char (&optional prompt)
1894 "Like `read-char', but do not allow quitting.
1895 Also, if the first character read is an octal digit,
1896 we read any number of octal digits and return the
1897 specified character code. Any nondigit terminates the sequence.
1898 If the terminator is RET, it is discarded;
1899 any other terminator is used itself as input.
1901 The optional argument PROMPT specifies a string to use to prompt the user.
1902 The variable `read-quoted-char-radix' controls which radix to use
1903 for numeric input."
1904 (let ((message-log-max nil) done (first t) (code 0) char translated)
1905 (while (not done)
1906 (let ((inhibit-quit first)
1907 ;; Don't let C-h get the help message--only help function keys.
1908 (help-char nil)
1909 (help-form
1910 "Type the special character you want to use,
1911 or the octal character code.
1912 RET terminates the character code and is discarded;
1913 any other non-digit terminates the character code and is then used as input."))
1914 (setq char (read-event (and prompt (format "%s-" prompt)) t))
1915 (if inhibit-quit (setq quit-flag nil)))
1916 ;; Translate TAB key into control-I ASCII character, and so on.
1917 ;; Note: `read-char' does it using the `ascii-character' property.
1918 ;; We should try and use read-key instead.
1919 (let ((translation (lookup-key local-function-key-map (vector char))))
1920 (setq translated (if (arrayp translation)
1921 (aref translation 0)
1922 char)))
1923 (if (integerp translated)
1924 (setq translated (char-resolve-modifiers translated)))
1925 (cond ((null translated))
1926 ((not (integerp translated))
1927 (setq unread-command-events (list char)
1928 done t))
1929 ((/= (logand translated ?\M-\^@) 0)
1930 ;; Turn a meta-character into a character with the 0200 bit set.
1931 (setq code (logior (logand translated (lognot ?\M-\^@)) 128)
1932 done t))
1933 ((and (<= ?0 translated)
1934 (< translated (+ ?0 (min 10 read-quoted-char-radix))))
1935 (setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
1936 (and prompt (setq prompt (message "%s %c" prompt translated))))
1937 ((and (<= ?a (downcase translated))
1938 (< (downcase translated)
1939 (+ ?a -10 (min 36 read-quoted-char-radix))))
1940 (setq code (+ (* code read-quoted-char-radix)
1941 (+ 10 (- (downcase translated) ?a))))
1942 (and prompt (setq prompt (message "%s %c" prompt translated))))
1943 ((and (not first) (eq translated ?\C-m))
1944 (setq done t))
1945 ((not first)
1946 (setq unread-command-events (list char)
1947 done t))
1948 (t (setq code translated
1949 done t)))
1950 (setq first nil))
1951 code))
1953 (defun read-passwd (prompt &optional confirm default)
1954 "Read a password, prompting with PROMPT, and return it.
1955 If optional CONFIRM is non-nil, read the password twice to make sure.
1956 Optional DEFAULT is a default password to use instead of empty input.
1958 This function echoes `.' for each character that the user types.
1960 The user ends with RET, LFD, or ESC. DEL or C-h rubs out.
1961 C-y yanks the current kill. C-u kills line.
1962 C-g quits; if `inhibit-quit' was non-nil around this function,
1963 then it returns nil if the user types C-g, but `quit-flag' remains set.
1965 Once the caller uses the password, it can erase the password
1966 by doing (clear-string STRING)."
1967 (with-local-quit
1968 (if confirm
1969 (let (success)
1970 (while (not success)
1971 (let ((first (read-passwd prompt nil default))
1972 (second (read-passwd "Confirm password: " nil default)))
1973 (if (equal first second)
1974 (progn
1975 (and (arrayp second) (clear-string second))
1976 (setq success first))
1977 (and (arrayp first) (clear-string first))
1978 (and (arrayp second) (clear-string second))
1979 (message "Password not repeated accurately; please start over")
1980 (sit-for 1))))
1981 success)
1982 (let ((pass nil)
1983 ;; Copy it so that add-text-properties won't modify
1984 ;; the object that was passed in by the caller.
1985 (prompt (copy-sequence prompt))
1986 (c 0)
1987 (echo-keystrokes 0)
1988 (cursor-in-echo-area t)
1989 (message-log-max nil)
1990 (stop-keys (list 'return ?\r ?\n ?\e))
1991 (rubout-keys (list 'backspace ?\b ?\177)))
1992 (add-text-properties 0 (length prompt)
1993 minibuffer-prompt-properties prompt)
1994 (while (progn (message "%s%s"
1995 prompt
1996 (make-string (length pass) ?.))
1997 (setq c (read-key))
1998 (not (memq c stop-keys)))
1999 (clear-this-command-keys)
2000 (cond ((memq c rubout-keys) ; rubout
2001 (when (> (length pass) 0)
2002 (let ((new-pass (substring pass 0 -1)))
2003 (and (arrayp pass) (clear-string pass))
2004 (setq pass new-pass))))
2005 ((eq c ?\C-g) (keyboard-quit))
2006 ((not (numberp c)))
2007 ((= c ?\C-u) ; kill line
2008 (and (arrayp pass) (clear-string pass))
2009 (setq pass ""))
2010 ((= c ?\C-y) ; yank
2011 (let* ((str (condition-case nil
2012 (current-kill 0)
2013 (error nil)))
2014 new-pass)
2015 (when str
2016 (setq new-pass
2017 (concat pass
2018 (substring-no-properties str)))
2019 (and (arrayp pass) (clear-string pass))
2020 (setq c ?\0)
2021 (setq pass new-pass))))
2022 ((characterp c) ; insert char
2023 (let* ((new-char (char-to-string c))
2024 (new-pass (concat pass new-char)))
2025 (and (arrayp pass) (clear-string pass))
2026 (clear-string new-char)
2027 (setq c ?\0)
2028 (setq pass new-pass)))))
2029 (message nil)
2030 (or pass default "")))))
2032 ;; This should be used by `call-interactively' for `n' specs.
2033 (defun read-number (prompt &optional default)
2034 "Read a numeric value in the minibuffer, prompting with PROMPT.
2035 DEFAULT specifies a default value to return if the user just types RET.
2036 The value of DEFAULT is inserted into PROMPT."
2037 (let ((n nil))
2038 (when default
2039 (setq prompt
2040 (if (string-match "\\(\\):[ \t]*\\'" prompt)
2041 (replace-match (format " (default %s)" default) t t prompt 1)
2042 (replace-regexp-in-string "[ \t]*\\'"
2043 (format " (default %s) " default)
2044 prompt t t))))
2045 (while
2046 (progn
2047 (let ((str (read-from-minibuffer prompt nil nil nil nil
2048 (and default
2049 (number-to-string default)))))
2050 (condition-case nil
2051 (setq n (cond
2052 ((zerop (length str)) default)
2053 ((stringp str) (read str))))
2054 (error nil)))
2055 (unless (numberp n)
2056 (message "Please enter a number.")
2057 (sit-for 1)
2058 t)))
2061 (defun read-char-choice (prompt chars &optional inhibit-keyboard-quit)
2062 "Read and return one of CHARS, prompting for PROMPT.
2063 Any input that is not one of CHARS is ignored.
2065 If optional argument INHIBIT-KEYBOARD-QUIT is non-nil, ignore
2066 keyboard-quit events while waiting for a valid input."
2067 (unless (consp chars)
2068 (error "Called `read-char-choice' without valid char choices"))
2069 (let (char done)
2070 (let ((cursor-in-echo-area t)
2071 (executing-kbd-macro executing-kbd-macro))
2072 (while (not done)
2073 (unless (get-text-property 0 'face prompt)
2074 (setq prompt (propertize prompt 'face 'minibuffer-prompt)))
2075 (setq char (let ((inhibit-quit inhibit-keyboard-quit))
2076 (read-key prompt)))
2077 (cond
2078 ((not (numberp char)))
2079 ((memq char chars)
2080 (setq done t))
2081 ((and executing-kbd-macro (= char -1))
2082 ;; read-event returns -1 if we are in a kbd macro and
2083 ;; there are no more events in the macro. Attempt to
2084 ;; get an event interactively.
2085 (setq executing-kbd-macro nil)))))
2086 ;; Display the question with the answer. But without cursor-in-echo-area.
2087 (message "%s%s" prompt (char-to-string char))
2088 char))
2090 (defun sit-for (seconds &optional nodisp obsolete)
2091 "Perform redisplay, then wait for SECONDS seconds or until input is available.
2092 SECONDS may be a floating-point value.
2093 \(On operating systems that do not support waiting for fractions of a
2094 second, floating-point values are rounded down to the nearest integer.)
2096 If optional arg NODISP is t, don't redisplay, just wait for input.
2097 Redisplay does not happen if input is available before it starts.
2099 Value is t if waited the full time with no input arriving, and nil otherwise.
2101 An obsolete, but still supported form is
2102 \(sit-for SECONDS &optional MILLISECONDS NODISP)
2103 where the optional arg MILLISECONDS specifies an additional wait period,
2104 in milliseconds; this was useful when Emacs was built without
2105 floating point support."
2106 (if (numberp nodisp)
2107 (setq seconds (+ seconds (* 1e-3 nodisp))
2108 nodisp obsolete)
2109 (if obsolete (setq nodisp obsolete)))
2110 (cond
2111 (noninteractive
2112 (sleep-for seconds)
2114 ((input-pending-p)
2115 nil)
2116 ((<= seconds 0)
2117 (or nodisp (redisplay)))
2119 (or nodisp (redisplay))
2120 (let ((read (read-event nil nil seconds)))
2121 (or (null read)
2122 (progn
2123 ;; If last command was a prefix arg, e.g. C-u, push this event onto
2124 ;; unread-command-events as (t . EVENT) so it will be added to
2125 ;; this-command-keys by read-key-sequence.
2126 (if (eq overriding-terminal-local-map universal-argument-map)
2127 (setq read (cons t read)))
2128 (push read unread-command-events)
2129 nil))))))
2130 (set-advertised-calling-convention 'sit-for '(seconds &optional nodisp) "22.1")
2132 (defun y-or-n-p (prompt)
2133 "Ask user a \"y or n\" question. Return t if answer is \"y\".
2134 PROMPT is the string to display to ask the question. It should
2135 end in a space; `y-or-n-p' adds \"(y or n) \" to it.
2137 No confirmation of the answer is requested; a single character is enough.
2138 Also accepts Space to mean yes, or Delete to mean no. \(Actually, it uses
2139 the bindings in `query-replace-map'; see the documentation of that variable
2140 for more information. In this case, the useful bindings are `act', `skip',
2141 `recenter', and `quit'.\)
2143 Under a windowing system a dialog box will be used if `last-nonmenu-event'
2144 is nil and `use-dialog-box' is non-nil."
2145 ;; ¡Beware! when I tried to edebug this code, Emacs got into a weird state
2146 ;; where all the keys were unbound (i.e. it somehow got triggered
2147 ;; within read-key, apparently). I had to kill it.
2148 (let ((answer 'recenter))
2149 (if (and (display-popup-menus-p)
2150 (listp last-nonmenu-event)
2151 use-dialog-box)
2152 (setq answer
2153 (x-popup-dialog t `(,prompt ("yes" . act) ("No" . skip))))
2154 (setq prompt (concat prompt
2155 (if (eq ?\s (aref prompt (1- (length prompt))))
2156 "" " ")
2157 "(y or n) "))
2158 (while
2159 (let* ((key
2160 (let ((cursor-in-echo-area t))
2161 (when minibuffer-auto-raise
2162 (raise-frame (window-frame (minibuffer-window))))
2163 (read-key (propertize (if (eq answer 'recenter)
2164 prompt
2165 (concat "Please answer y or n. "
2166 prompt))
2167 'face 'minibuffer-prompt)))))
2168 (setq answer (lookup-key query-replace-map (vector key) t))
2169 (cond
2170 ((memq answer '(skip act)) nil)
2171 ((eq answer 'recenter) (recenter) t)
2172 ((memq answer '(exit-prefix quit)) (signal 'quit nil) t)
2173 (t t)))
2174 (ding)
2175 (discard-input)))
2176 (let ((ret (eq answer 'act)))
2177 (unless noninteractive
2178 (message "%s %s" prompt (if ret "y" "n")))
2179 ret)))
2182 ;;; Atomic change groups.
2184 (defmacro atomic-change-group (&rest body)
2185 "Perform BODY as an atomic change group.
2186 This means that if BODY exits abnormally,
2187 all of its changes to the current buffer are undone.
2188 This works regardless of whether undo is enabled in the buffer.
2190 This mechanism is transparent to ordinary use of undo;
2191 if undo is enabled in the buffer and BODY succeeds, the
2192 user can undo the change normally."
2193 (declare (indent 0) (debug t))
2194 (let ((handle (make-symbol "--change-group-handle--"))
2195 (success (make-symbol "--change-group-success--")))
2196 `(let ((,handle (prepare-change-group))
2197 ;; Don't truncate any undo data in the middle of this.
2198 (undo-outer-limit nil)
2199 (undo-limit most-positive-fixnum)
2200 (undo-strong-limit most-positive-fixnum)
2201 (,success nil))
2202 (unwind-protect
2203 (progn
2204 ;; This is inside the unwind-protect because
2205 ;; it enables undo if that was disabled; we need
2206 ;; to make sure that it gets disabled again.
2207 (activate-change-group ,handle)
2208 ,@body
2209 (setq ,success t))
2210 ;; Either of these functions will disable undo
2211 ;; if it was disabled before.
2212 (if ,success
2213 (accept-change-group ,handle)
2214 (cancel-change-group ,handle))))))
2216 (defun prepare-change-group (&optional buffer)
2217 "Return a handle for the current buffer's state, for a change group.
2218 If you specify BUFFER, make a handle for BUFFER's state instead.
2220 Pass the handle to `activate-change-group' afterward to initiate
2221 the actual changes of the change group.
2223 To finish the change group, call either `accept-change-group' or
2224 `cancel-change-group' passing the same handle as argument. Call
2225 `accept-change-group' to accept the changes in the group as final;
2226 call `cancel-change-group' to undo them all. You should use
2227 `unwind-protect' to make sure the group is always finished. The call
2228 to `activate-change-group' should be inside the `unwind-protect'.
2229 Once you finish the group, don't use the handle again--don't try to
2230 finish the same group twice. For a simple example of correct use, see
2231 the source code of `atomic-change-group'.
2233 The handle records only the specified buffer. To make a multibuffer
2234 change group, call this function once for each buffer you want to
2235 cover, then use `nconc' to combine the returned values, like this:
2237 (nconc (prepare-change-group buffer-1)
2238 (prepare-change-group buffer-2))
2240 You can then activate that multibuffer change group with a single
2241 call to `activate-change-group' and finish it with a single call
2242 to `accept-change-group' or `cancel-change-group'."
2244 (if buffer
2245 (list (cons buffer (with-current-buffer buffer buffer-undo-list)))
2246 (list (cons (current-buffer) buffer-undo-list))))
2248 (defun activate-change-group (handle)
2249 "Activate a change group made with `prepare-change-group' (which see)."
2250 (dolist (elt handle)
2251 (with-current-buffer (car elt)
2252 (if (eq buffer-undo-list t)
2253 (setq buffer-undo-list nil)))))
2255 (defun accept-change-group (handle)
2256 "Finish a change group made with `prepare-change-group' (which see).
2257 This finishes the change group by accepting its changes as final."
2258 (dolist (elt handle)
2259 (with-current-buffer (car elt)
2260 (if (eq elt t)
2261 (setq buffer-undo-list t)))))
2263 (defun cancel-change-group (handle)
2264 "Finish a change group made with `prepare-change-group' (which see).
2265 This finishes the change group by reverting all of its changes."
2266 (dolist (elt handle)
2267 (with-current-buffer (car elt)
2268 (setq elt (cdr elt))
2269 (save-restriction
2270 ;; Widen buffer temporarily so if the buffer was narrowed within
2271 ;; the body of `atomic-change-group' all changes can be undone.
2272 (widen)
2273 (let ((old-car
2274 (if (consp elt) (car elt)))
2275 (old-cdr
2276 (if (consp elt) (cdr elt))))
2277 ;; Temporarily truncate the undo log at ELT.
2278 (when (consp elt)
2279 (setcar elt nil) (setcdr elt nil))
2280 (unless (eq last-command 'undo) (undo-start))
2281 ;; Make sure there's no confusion.
2282 (when (and (consp elt) (not (eq elt (last pending-undo-list))))
2283 (error "Undoing to some unrelated state"))
2284 ;; Undo it all.
2285 (save-excursion
2286 (while (listp pending-undo-list) (undo-more 1)))
2287 ;; Reset the modified cons cell ELT to its original content.
2288 (when (consp elt)
2289 (setcar elt old-car)
2290 (setcdr elt old-cdr))
2291 ;; Revert the undo info to what it was when we grabbed the state.
2292 (setq buffer-undo-list elt))))))
2294 ;;;; Display-related functions.
2296 ;; For compatibility.
2297 (defalias 'redraw-modeline 'force-mode-line-update)
2299 (defun force-mode-line-update (&optional all)
2300 "Force redisplay of the current buffer's mode line and header line.
2301 With optional non-nil ALL, force redisplay of all mode lines and
2302 header lines. This function also forces recomputation of the
2303 menu bar menus and the frame title."
2304 (if all (with-current-buffer (other-buffer)))
2305 (set-buffer-modified-p (buffer-modified-p)))
2307 (defun momentary-string-display (string pos &optional exit-char message)
2308 "Momentarily display STRING in the buffer at POS.
2309 Display remains until next event is input.
2310 If POS is a marker, only its position is used; its buffer is ignored.
2311 Optional third arg EXIT-CHAR can be a character, event or event
2312 description list. EXIT-CHAR defaults to SPC. If the input is
2313 EXIT-CHAR it is swallowed; otherwise it is then available as
2314 input (as a command if nothing else).
2315 Display MESSAGE (optional fourth arg) in the echo area.
2316 If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
2317 (or exit-char (setq exit-char ?\s))
2318 (let ((ol (make-overlay pos pos))
2319 (str (copy-sequence string)))
2320 (unwind-protect
2321 (progn
2322 (save-excursion
2323 (overlay-put ol 'after-string str)
2324 (goto-char pos)
2325 ;; To avoid trouble with out-of-bounds position
2326 (setq pos (point))
2327 ;; If the string end is off screen, recenter now.
2328 (if (<= (window-end nil t) pos)
2329 (recenter (/ (window-height) 2))))
2330 (message (or message "Type %s to continue editing.")
2331 (single-key-description exit-char))
2332 (let ((event (read-event)))
2333 ;; `exit-char' can be an event, or an event description list.
2334 (or (eq event exit-char)
2335 (eq event (event-convert-list exit-char))
2336 (setq unread-command-events (list event)))))
2337 (delete-overlay ol))))
2340 ;;;; Overlay operations
2342 (defun copy-overlay (o)
2343 "Return a copy of overlay O."
2344 (let ((o1 (if (overlay-buffer o)
2345 (make-overlay (overlay-start o) (overlay-end o)
2346 ;; FIXME: there's no easy way to find the
2347 ;; insertion-type of the two markers.
2348 (overlay-buffer o))
2349 (let ((o1 (make-overlay (point-min) (point-min))))
2350 (delete-overlay o1)
2351 o1)))
2352 (props (overlay-properties o)))
2353 (while props
2354 (overlay-put o1 (pop props) (pop props)))
2355 o1))
2357 (defun remove-overlays (&optional beg end name val)
2358 "Clear BEG and END of overlays whose property NAME has value VAL.
2359 Overlays might be moved and/or split.
2360 BEG and END default respectively to the beginning and end of buffer."
2361 ;; This speeds up the loops over overlays.
2362 (unless beg (setq beg (point-min)))
2363 (unless end (setq end (point-max)))
2364 (overlay-recenter end)
2365 (if (< end beg)
2366 (setq beg (prog1 end (setq end beg))))
2367 (save-excursion
2368 (dolist (o (overlays-in beg end))
2369 (when (eq (overlay-get o name) val)
2370 ;; Either push this overlay outside beg...end
2371 ;; or split it to exclude beg...end
2372 ;; or delete it entirely (if it is contained in beg...end).
2373 (if (< (overlay-start o) beg)
2374 (if (> (overlay-end o) end)
2375 (progn
2376 (move-overlay (copy-overlay o)
2377 (overlay-start o) beg)
2378 (move-overlay o end (overlay-end o)))
2379 (move-overlay o (overlay-start o) beg))
2380 (if (> (overlay-end o) end)
2381 (move-overlay o end (overlay-end o))
2382 (delete-overlay o)))))))
2384 ;;;; Miscellanea.
2386 (defvar suspend-hook nil
2387 "Normal hook run by `suspend-emacs', before suspending.")
2389 (defvar suspend-resume-hook nil
2390 "Normal hook run by `suspend-emacs', after Emacs is continued.")
2392 (defvar temp-buffer-show-hook nil
2393 "Normal hook run by `with-output-to-temp-buffer' after displaying the buffer.
2394 When the hook runs, the temporary buffer is current, and the window it
2395 was displayed in is selected.")
2397 (defvar temp-buffer-setup-hook nil
2398 "Normal hook run by `with-output-to-temp-buffer' at the start.
2399 When the hook runs, the temporary buffer is current.
2400 This hook is normally set up with a function to put the buffer in Help
2401 mode.")
2403 ;; Avoid compiler warnings about this variable,
2404 ;; which has a special meaning on certain system types.
2405 (defvar buffer-file-type nil
2406 "Non-nil if the visited file is a binary file.
2407 This variable is meaningful on MS-DOG and Windows NT.
2408 On those systems, it is automatically local in every buffer.
2409 On other systems, this variable is normally always nil.")
2411 ;; The `assert' macro from the cl package signals
2412 ;; `cl-assertion-failed' at runtime so always define it.
2413 (put 'cl-assertion-failed 'error-conditions '(error))
2414 (put 'cl-assertion-failed 'error-message (purecopy "Assertion failed"))
2416 (defconst user-emacs-directory
2417 (if (eq system-type 'ms-dos)
2418 ;; MS-DOS cannot have initial dot.
2419 "~/_emacs.d/"
2420 "~/.emacs.d/")
2421 "Directory beneath which additional per-user Emacs-specific files are placed.
2422 Various programs in Emacs store information in this directory.
2423 Note that this should end with a directory separator.
2424 See also `locate-user-emacs-file'.")
2426 (defun locate-user-emacs-file (new-name &optional old-name)
2427 "Return an absolute per-user Emacs-specific file name.
2428 If OLD-NAME is non-nil and ~/OLD-NAME exists, return ~/OLD-NAME.
2429 Else return NEW-NAME in `user-emacs-directory', creating the
2430 directory if it does not exist."
2431 (convert-standard-filename
2432 (let* ((home (concat "~" (or init-file-user "")))
2433 (at-home (and old-name (expand-file-name old-name home))))
2434 (if (and at-home (file-readable-p at-home))
2435 at-home
2436 ;; Make sure `user-emacs-directory' exists,
2437 ;; unless we're in batch mode or dumping Emacs
2438 (or noninteractive
2439 purify-flag
2440 (file-accessible-directory-p
2441 (directory-file-name user-emacs-directory))
2442 (let ((umask (default-file-modes)))
2443 (unwind-protect
2444 (progn
2445 (set-default-file-modes ?\700)
2446 (make-directory user-emacs-directory))
2447 (set-default-file-modes umask))))
2448 (abbreviate-file-name
2449 (expand-file-name new-name user-emacs-directory))))))
2451 ;;;; Misc. useful functions.
2453 (defun find-tag-default ()
2454 "Determine default tag to search for, based on text at point.
2455 If there is no plausible default, return nil."
2456 (let (from to bound)
2457 (when (or (progn
2458 ;; Look at text around `point'.
2459 (save-excursion
2460 (skip-syntax-backward "w_") (setq from (point)))
2461 (save-excursion
2462 (skip-syntax-forward "w_") (setq to (point)))
2463 (> to from))
2464 ;; Look between `line-beginning-position' and `point'.
2465 (save-excursion
2466 (and (setq bound (line-beginning-position))
2467 (skip-syntax-backward "^w_" bound)
2468 (> (setq to (point)) bound)
2469 (skip-syntax-backward "w_")
2470 (setq from (point))))
2471 ;; Look between `point' and `line-end-position'.
2472 (save-excursion
2473 (and (setq bound (line-end-position))
2474 (skip-syntax-forward "^w_" bound)
2475 (< (setq from (point)) bound)
2476 (skip-syntax-forward "w_")
2477 (setq to (point)))))
2478 (buffer-substring-no-properties from to))))
2480 (defun play-sound (sound)
2481 "SOUND is a list of the form `(sound KEYWORD VALUE...)'.
2482 The following keywords are recognized:
2484 :file FILE - read sound data from FILE. If FILE isn't an
2485 absolute file name, it is searched in `data-directory'.
2487 :data DATA - read sound data from string DATA.
2489 Exactly one of :file or :data must be present.
2491 :volume VOL - set volume to VOL. VOL must an integer in the
2492 range 0..100 or a float in the range 0..1.0. If not specified,
2493 don't change the volume setting of the sound device.
2495 :device DEVICE - play sound on DEVICE. If not specified,
2496 a system-dependent default device name is used.
2498 Note: :data and :device are currently not supported on Windows."
2499 (if (fboundp 'play-sound-internal)
2500 (play-sound-internal sound)
2501 (error "This Emacs binary lacks sound support")))
2503 (declare-function w32-shell-dos-semantics "w32-fns" nil)
2505 (defun shell-quote-argument (argument)
2506 "Quote ARGUMENT for passing as argument to an inferior shell."
2507 (if (or (eq system-type 'ms-dos)
2508 (and (eq system-type 'windows-nt) (w32-shell-dos-semantics)))
2509 ;; Quote using double quotes, but escape any existing quotes in
2510 ;; the argument with backslashes.
2511 (let ((result "")
2512 (start 0)
2513 end)
2514 (if (or (null (string-match "[^\"]" argument))
2515 (< (match-end 0) (length argument)))
2516 (while (string-match "[\"]" argument start)
2517 (setq end (match-beginning 0)
2518 result (concat result (substring argument start end)
2519 "\\" (substring argument end (1+ end)))
2520 start (1+ end))))
2521 (concat "\"" result (substring argument start) "\""))
2522 (if (equal argument "")
2523 "''"
2524 ;; Quote everything except POSIX filename characters.
2525 ;; This should be safe enough even for really weird shells.
2526 (replace-regexp-in-string "\n" "'\n'"
2527 (replace-regexp-in-string "[^-0-9a-zA-Z_./\n]" "\\\\\\&" argument)))))
2529 (defun string-or-null-p (object)
2530 "Return t if OBJECT is a string or nil.
2531 Otherwise, return nil."
2532 (or (stringp object) (null object)))
2534 (defun booleanp (object)
2535 "Return t if OBJECT is one of the two canonical boolean values: t or nil.
2536 Otherwise, return nil."
2537 (and (memq object '(nil t)) t))
2539 (defun field-at-pos (pos)
2540 "Return the field at position POS, taking stickiness etc into account."
2541 (let ((raw-field (get-char-property (field-beginning pos) 'field)))
2542 (if (eq raw-field 'boundary)
2543 (get-char-property (1- (field-end pos)) 'field)
2544 raw-field)))
2547 ;;;; Support for yanking and text properties.
2549 (defvar yank-excluded-properties)
2551 (defun remove-yank-excluded-properties (start end)
2552 "Remove `yank-excluded-properties' between START and END positions.
2553 Replaces `category' properties with their defined properties."
2554 (let ((inhibit-read-only t))
2555 ;; Replace any `category' property with the properties it stands
2556 ;; for. This is to remove `mouse-face' properties that are placed
2557 ;; on categories in *Help* buffers' buttons. See
2558 ;; http://lists.gnu.org/archive/html/emacs-devel/2002-04/msg00648.html
2559 ;; for the details.
2560 (unless (memq yank-excluded-properties '(t nil))
2561 (save-excursion
2562 (goto-char start)
2563 (while (< (point) end)
2564 (let ((cat (get-text-property (point) 'category))
2565 run-end)
2566 (setq run-end
2567 (next-single-property-change (point) 'category nil end))
2568 (when cat
2569 (let (run-end2 original)
2570 (remove-list-of-text-properties (point) run-end '(category))
2571 (while (< (point) run-end)
2572 (setq run-end2 (next-property-change (point) nil run-end))
2573 (setq original (text-properties-at (point)))
2574 (set-text-properties (point) run-end2 (symbol-plist cat))
2575 (add-text-properties (point) run-end2 original)
2576 (goto-char run-end2))))
2577 (goto-char run-end)))))
2578 (if (eq yank-excluded-properties t)
2579 (set-text-properties start end nil)
2580 (remove-list-of-text-properties start end yank-excluded-properties))))
2582 (defvar yank-undo-function)
2584 (defun insert-for-yank (string)
2585 "Call `insert-for-yank-1' repetitively for each `yank-handler' segment.
2587 See `insert-for-yank-1' for more details."
2588 (let (to)
2589 (while (setq to (next-single-property-change 0 'yank-handler string))
2590 (insert-for-yank-1 (substring string 0 to))
2591 (setq string (substring string to))))
2592 (insert-for-yank-1 string))
2594 (defun insert-for-yank-1 (string)
2595 "Insert STRING at point, stripping some text properties.
2597 Strip text properties from the inserted text according to
2598 `yank-excluded-properties'. Otherwise just like (insert STRING).
2600 If STRING has a non-nil `yank-handler' property on the first character,
2601 the normal insert behavior is modified in various ways. The value of
2602 the yank-handler property must be a list with one to four elements
2603 with the following format: (FUNCTION PARAM NOEXCLUDE UNDO).
2604 When FUNCTION is present and non-nil, it is called instead of `insert'
2605 to insert the string. FUNCTION takes one argument--the object to insert.
2606 If PARAM is present and non-nil, it replaces STRING as the object
2607 passed to FUNCTION (or `insert'); for example, if FUNCTION is
2608 `yank-rectangle', PARAM may be a list of strings to insert as a
2609 rectangle.
2610 If NOEXCLUDE is present and non-nil, the normal removal of the
2611 `yank-excluded-properties' is not performed; instead FUNCTION is
2612 responsible for removing those properties. This may be necessary
2613 if FUNCTION adjusts point before or after inserting the object.
2614 If UNDO is present and non-nil, it is a function that will be called
2615 by `yank-pop' to undo the insertion of the current object. It is
2616 called with two arguments, the start and end of the current region.
2617 FUNCTION may set `yank-undo-function' to override the UNDO value."
2618 (let* ((handler (and (stringp string)
2619 (get-text-property 0 'yank-handler string)))
2620 (param (or (nth 1 handler) string))
2621 (opoint (point))
2622 (inhibit-read-only inhibit-read-only)
2623 end)
2625 (setq yank-undo-function t)
2626 (if (nth 0 handler) ;; FUNCTION
2627 (funcall (car handler) param)
2628 (insert param))
2629 (setq end (point))
2631 ;; Prevent read-only properties from interfering with the
2632 ;; following text property changes.
2633 (setq inhibit-read-only t)
2635 ;; What should we do with `font-lock-face' properties?
2636 (if font-lock-defaults
2637 ;; No, just wipe them.
2638 (remove-list-of-text-properties opoint end '(font-lock-face))
2639 ;; Convert them to `face'.
2640 (save-excursion
2641 (goto-char opoint)
2642 (while (< (point) end)
2643 (let ((face (get-text-property (point) 'font-lock-face))
2644 run-end)
2645 (setq run-end
2646 (next-single-property-change (point) 'font-lock-face nil end))
2647 (when face
2648 (remove-text-properties (point) run-end '(font-lock-face nil))
2649 (put-text-property (point) run-end 'face face))
2650 (goto-char run-end)))))
2652 (unless (nth 2 handler) ;; NOEXCLUDE
2653 (remove-yank-excluded-properties opoint (point)))
2655 ;; If last inserted char has properties, mark them as rear-nonsticky.
2656 (if (and (> end opoint)
2657 (text-properties-at (1- end)))
2658 (put-text-property (1- end) end 'rear-nonsticky t))
2660 (if (eq yank-undo-function t) ;; not set by FUNCTION
2661 (setq yank-undo-function (nth 3 handler))) ;; UNDO
2662 (if (nth 4 handler) ;; COMMAND
2663 (setq this-command (nth 4 handler)))))
2665 (defun insert-buffer-substring-no-properties (buffer &optional start end)
2666 "Insert before point a substring of BUFFER, without text properties.
2667 BUFFER may be a buffer or a buffer name.
2668 Arguments START and END are character positions specifying the substring.
2669 They default to the values of (point-min) and (point-max) in BUFFER."
2670 (let ((opoint (point)))
2671 (insert-buffer-substring buffer start end)
2672 (let ((inhibit-read-only t))
2673 (set-text-properties opoint (point) nil))))
2675 (defun insert-buffer-substring-as-yank (buffer &optional start end)
2676 "Insert before point a part of BUFFER, stripping some text properties.
2677 BUFFER may be a buffer or a buffer name.
2678 Arguments START and END are character positions specifying the substring.
2679 They default to the values of (point-min) and (point-max) in BUFFER.
2680 Strip text properties from the inserted text according to
2681 `yank-excluded-properties'."
2682 ;; Since the buffer text should not normally have yank-handler properties,
2683 ;; there is no need to handle them here.
2684 (let ((opoint (point)))
2685 (insert-buffer-substring buffer start end)
2686 (remove-yank-excluded-properties opoint (point))))
2689 ;;;; Synchronous shell commands.
2691 (defun start-process-shell-command (name buffer &rest args)
2692 "Start a program in a subprocess. Return the process object for it.
2693 NAME is name for process. It is modified if necessary to make it unique.
2694 BUFFER is the buffer (or buffer name) to associate with the process.
2695 Process output goes at end of that buffer, unless you specify
2696 an output stream or filter function to handle the output.
2697 BUFFER may be also nil, meaning that this process is not associated
2698 with any buffer
2699 COMMAND is the shell command to run.
2701 An old calling convention accepted any number of arguments after COMMAND,
2702 which were just concatenated to COMMAND. This is still supported but strongly
2703 discouraged."
2704 ;; We used to use `exec' to replace the shell with the command,
2705 ;; but that failed to handle (...) and semicolon, etc.
2706 (start-process name buffer shell-file-name shell-command-switch
2707 (mapconcat 'identity args " ")))
2708 (set-advertised-calling-convention 'start-process-shell-command
2709 '(name buffer command) "23.1")
2711 (defun start-file-process-shell-command (name buffer &rest args)
2712 "Start a program in a subprocess. Return the process object for it.
2713 Similar to `start-process-shell-command', but calls `start-file-process'."
2714 (start-file-process
2715 name buffer
2716 (if (file-remote-p default-directory) "/bin/sh" shell-file-name)
2717 (if (file-remote-p default-directory) "-c" shell-command-switch)
2718 (mapconcat 'identity args " ")))
2719 (set-advertised-calling-convention 'start-file-process-shell-command
2720 '(name buffer command) "23.1")
2722 (defun call-process-shell-command (command &optional infile buffer display
2723 &rest args)
2724 "Execute the shell command COMMAND synchronously in separate process.
2725 The remaining arguments are optional.
2726 The program's input comes from file INFILE (nil means `/dev/null').
2727 Insert output in BUFFER before point; t means current buffer;
2728 nil for BUFFER means discard it; 0 means discard and don't wait.
2729 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
2730 REAL-BUFFER says what to do with standard output, as above,
2731 while STDERR-FILE says what to do with standard error in the child.
2732 STDERR-FILE may be nil (discard standard error output),
2733 t (mix it with ordinary output), or a file name string.
2735 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
2736 Remaining arguments are strings passed as additional arguments for COMMAND.
2737 Wildcards and redirection are handled as usual in the shell.
2739 If BUFFER is 0, `call-process-shell-command' returns immediately with value nil.
2740 Otherwise it waits for COMMAND to terminate and returns a numeric exit
2741 status or a signal description string.
2742 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
2743 ;; We used to use `exec' to replace the shell with the command,
2744 ;; but that failed to handle (...) and semicolon, etc.
2745 (call-process shell-file-name
2746 infile buffer display
2747 shell-command-switch
2748 (mapconcat 'identity (cons command args) " ")))
2750 (defun process-file-shell-command (command &optional infile buffer display
2751 &rest args)
2752 "Process files synchronously in a separate process.
2753 Similar to `call-process-shell-command', but calls `process-file'."
2754 (process-file
2755 (if (file-remote-p default-directory) "/bin/sh" shell-file-name)
2756 infile buffer display
2757 (if (file-remote-p default-directory) "-c" shell-command-switch)
2758 (mapconcat 'identity (cons command args) " ")))
2760 ;;;; Lisp macros to do various things temporarily.
2762 (defmacro with-current-buffer (buffer-or-name &rest body)
2763 "Execute the forms in BODY with BUFFER-OR-NAME temporarily current.
2764 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
2765 The value returned is the value of the last form in BODY. See
2766 also `with-temp-buffer'."
2767 (declare (indent 1) (debug t))
2768 `(save-current-buffer
2769 (set-buffer ,buffer-or-name)
2770 ,@body))
2772 (defmacro with-selected-window (window &rest body)
2773 "Execute the forms in BODY with WINDOW as the selected window.
2774 The value returned is the value of the last form in BODY.
2776 This macro saves and restores the selected window, as well as the
2777 selected window of each frame. It does not change the order of
2778 recently selected windows. If the previously selected window of
2779 some frame is no longer live at the end of BODY, that frame's
2780 selected window is left alone. If the selected window is no
2781 longer live, then whatever window is selected at the end of BODY
2782 remains selected.
2784 This macro uses `save-current-buffer' to save and restore the
2785 current buffer, since otherwise its normal operation could
2786 potentially make a different buffer current. It does not alter
2787 the buffer list ordering."
2788 (declare (indent 1) (debug t))
2789 ;; Most of this code is a copy of save-selected-window.
2790 `(let ((save-selected-window-window (selected-window))
2791 ;; It is necessary to save all of these, because calling
2792 ;; select-window changes frame-selected-window for whatever
2793 ;; frame that window is in.
2794 (save-selected-window-alist
2795 (mapcar (lambda (frame) (list frame (frame-selected-window frame)))
2796 (frame-list))))
2797 (save-current-buffer
2798 (unwind-protect
2799 (progn (select-window ,window 'norecord)
2800 ,@body)
2801 (dolist (elt save-selected-window-alist)
2802 (and (frame-live-p (car elt))
2803 (window-live-p (cadr elt))
2804 (set-frame-selected-window (car elt) (cadr elt) 'norecord)))
2805 (when (window-live-p save-selected-window-window)
2806 (select-window save-selected-window-window 'norecord))))))
2808 (defmacro with-selected-frame (frame &rest body)
2809 "Execute the forms in BODY with FRAME as the selected frame.
2810 The value returned is the value of the last form in BODY.
2812 This macro neither changes the order of recently selected windows
2813 nor the buffer list."
2814 (declare (indent 1) (debug t))
2815 (let ((old-frame (make-symbol "old-frame"))
2816 (old-buffer (make-symbol "old-buffer")))
2817 `(let ((,old-frame (selected-frame))
2818 (,old-buffer (current-buffer)))
2819 (unwind-protect
2820 (progn (select-frame ,frame 'norecord)
2821 ,@body)
2822 (when (frame-live-p ,old-frame)
2823 (select-frame ,old-frame 'norecord))
2824 (when (buffer-live-p ,old-buffer)
2825 (set-buffer ,old-buffer))))))
2827 (defmacro save-window-excursion (&rest body)
2828 "Execute BODY, preserving window sizes and contents.
2829 Return the value of the last form in BODY.
2830 Restore which buffer appears in which window, where display starts,
2831 and the value of point and mark for each window.
2832 Also restore the choice of selected window.
2833 Also restore which buffer is current.
2834 Does not restore the value of point in current buffer.
2836 BEWARE: Most uses of this macro introduce bugs.
2837 E.g. it should not be used to try and prevent some code from opening
2838 a new window, since that window may sometimes appear in another frame,
2839 in which case `save-window-excursion' cannot help."
2840 (declare (indent 0) (debug t))
2841 (let ((c (make-symbol "wconfig")))
2842 `(let ((,c (current-window-configuration)))
2843 (unwind-protect (progn ,@body)
2844 (set-window-configuration ,c)))))
2846 (defmacro with-output-to-temp-buffer (bufname &rest body)
2847 "Bind `standard-output' to buffer BUFNAME, eval BODY, then show that buffer.
2849 This construct makes buffer BUFNAME empty before running BODY.
2850 It does not make the buffer current for BODY.
2851 Instead it binds `standard-output' to that buffer, so that output
2852 generated with `prin1' and similar functions in BODY goes into
2853 the buffer.
2855 At the end of BODY, this marks buffer BUFNAME unmodifed and displays
2856 it in a window, but does not select it. The normal way to do this is
2857 by calling `display-buffer', then running `temp-buffer-show-hook'.
2858 However, if `temp-buffer-show-function' is non-nil, it calls that
2859 function instead (and does not run `temp-buffer-show-hook'). The
2860 function gets one argument, the buffer to display.
2862 The return value of `with-output-to-temp-buffer' is the value of the
2863 last form in BODY. If BODY does not finish normally, the buffer
2864 BUFNAME is not displayed.
2866 This runs the hook `temp-buffer-setup-hook' before BODY,
2867 with the buffer BUFNAME temporarily current. It runs the hook
2868 `temp-buffer-show-hook' after displaying buffer BUFNAME, with that
2869 buffer temporarily current, and the window that was used to display it
2870 temporarily selected. But it doesn't run `temp-buffer-show-hook'
2871 if it uses `temp-buffer-show-function'."
2872 (let ((old-dir (make-symbol "old-dir"))
2873 (buf (make-symbol "buf")))
2874 `(let ((,old-dir default-directory))
2875 (with-current-buffer (get-buffer-create ,bufname)
2876 (kill-all-local-variables)
2877 ;; FIXME: delete_all_overlays
2878 (setq default-directory ,old-dir)
2879 (setq buffer-read-only nil)
2880 (setq buffer-file-name nil)
2881 (setq buffer-undo-list t)
2882 (let ((,buf (current-buffer)))
2883 (let ((inhibit-read-only t)
2884 (inhibit-modification-hooks t))
2885 (erase-buffer)
2886 (run-hooks 'temp-buffer-setup-hook))
2887 (let ((standard-output ,buf))
2888 (prog1 (progn ,@body)
2889 (internal-temp-output-buffer-show ,buf))))))))
2891 (defmacro with-temp-file (file &rest body)
2892 "Create a new buffer, evaluate BODY there, and write the buffer to FILE.
2893 The value returned is the value of the last form in BODY.
2894 See also `with-temp-buffer'."
2895 (declare (indent 1) (debug t))
2896 (let ((temp-file (make-symbol "temp-file"))
2897 (temp-buffer (make-symbol "temp-buffer")))
2898 `(let ((,temp-file ,file)
2899 (,temp-buffer
2900 (get-buffer-create (generate-new-buffer-name " *temp file*"))))
2901 (unwind-protect
2902 (prog1
2903 (with-current-buffer ,temp-buffer
2904 ,@body)
2905 (with-current-buffer ,temp-buffer
2906 (write-region nil nil ,temp-file nil 0)))
2907 (and (buffer-name ,temp-buffer)
2908 (kill-buffer ,temp-buffer))))))
2910 (defmacro with-temp-message (message &rest body)
2911 "Display MESSAGE temporarily if non-nil while BODY is evaluated.
2912 The original message is restored to the echo area after BODY has finished.
2913 The value returned is the value of the last form in BODY.
2914 MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
2915 If MESSAGE is nil, the echo area and message log buffer are unchanged.
2916 Use a MESSAGE of \"\" to temporarily clear the echo area."
2917 (declare (debug t) (indent 1))
2918 (let ((current-message (make-symbol "current-message"))
2919 (temp-message (make-symbol "with-temp-message")))
2920 `(let ((,temp-message ,message)
2921 (,current-message))
2922 (unwind-protect
2923 (progn
2924 (when ,temp-message
2925 (setq ,current-message (current-message))
2926 (message "%s" ,temp-message))
2927 ,@body)
2928 (and ,temp-message
2929 (if ,current-message
2930 (message "%s" ,current-message)
2931 (message nil)))))))
2933 (defmacro with-temp-buffer (&rest body)
2934 "Create a temporary buffer, and evaluate BODY there like `progn'.
2935 See also `with-temp-file' and `with-output-to-string'."
2936 (declare (indent 0) (debug t))
2937 (let ((temp-buffer (make-symbol "temp-buffer")))
2938 `(let ((,temp-buffer (generate-new-buffer " *temp*")))
2939 ;; FIXME: kill-buffer can change current-buffer in some odd cases.
2940 (with-current-buffer ,temp-buffer
2941 (unwind-protect
2942 (progn ,@body)
2943 (and (buffer-name ,temp-buffer)
2944 (kill-buffer ,temp-buffer)))))))
2946 (defmacro with-silent-modifications (&rest body)
2947 "Execute BODY, pretending it does not modify the buffer.
2948 If BODY performs real modifications to the buffer's text, other
2949 than cosmetic ones, undo data may become corrupted.
2950 Typically used around modifications of text-properties which do not really
2951 affect the buffer's content."
2952 (declare (debug t) (indent 0))
2953 (let ((modified (make-symbol "modified")))
2954 `(let* ((,modified (buffer-modified-p))
2955 (buffer-undo-list t)
2956 (inhibit-read-only t)
2957 (inhibit-modification-hooks t)
2958 deactivate-mark
2959 ;; Avoid setting and removing file locks and checking
2960 ;; buffer's uptodate-ness w.r.t the underlying file.
2961 buffer-file-name
2962 buffer-file-truename)
2963 (unwind-protect
2964 (progn
2965 ,@body)
2966 (unless ,modified
2967 (restore-buffer-modified-p nil))))))
2969 (defmacro with-output-to-string (&rest body)
2970 "Execute BODY, return the text it sent to `standard-output', as a string."
2971 (declare (indent 0) (debug t))
2972 `(let ((standard-output
2973 (get-buffer-create (generate-new-buffer-name " *string-output*"))))
2974 (unwind-protect
2975 (progn
2976 (let ((standard-output standard-output))
2977 ,@body)
2978 (with-current-buffer standard-output
2979 (buffer-string)))
2980 (kill-buffer standard-output))))
2982 (defmacro with-local-quit (&rest body)
2983 "Execute BODY, allowing quits to terminate BODY but not escape further.
2984 When a quit terminates BODY, `with-local-quit' returns nil but
2985 requests another quit. That quit will be processed as soon as quitting
2986 is allowed once again. (Immediately, if `inhibit-quit' is nil.)"
2987 (declare (debug t) (indent 0))
2988 `(condition-case nil
2989 (let ((inhibit-quit nil))
2990 ,@body)
2991 (quit (setq quit-flag t)
2992 ;; This call is to give a chance to handle quit-flag
2993 ;; in case inhibit-quit is nil.
2994 ;; Without this, it will not be handled until the next function
2995 ;; call, and that might allow it to exit thru a condition-case
2996 ;; that intends to handle the quit signal next time.
2997 (eval '(ignore nil)))))
2999 (defmacro while-no-input (&rest body)
3000 "Execute BODY only as long as there's no pending input.
3001 If input arrives, that ends the execution of BODY,
3002 and `while-no-input' returns t. Quitting makes it return nil.
3003 If BODY finishes, `while-no-input' returns whatever value BODY produced."
3004 (declare (debug t) (indent 0))
3005 (let ((catch-sym (make-symbol "input")))
3006 `(with-local-quit
3007 (catch ',catch-sym
3008 (let ((throw-on-input ',catch-sym))
3009 (or (input-pending-p)
3010 (progn ,@body)))))))
3012 (defmacro condition-case-no-debug (var bodyform &rest handlers)
3013 "Like `condition-case' except that it does not catch anything when debugging.
3014 More specifically if `debug-on-error' is set, then it does not catch any signal."
3015 (declare (debug condition-case) (indent 2))
3016 (let ((bodysym (make-symbol "body")))
3017 `(let ((,bodysym (lambda () ,bodyform)))
3018 (if debug-on-error
3019 (funcall ,bodysym)
3020 (condition-case ,var
3021 (funcall ,bodysym)
3022 ,@handlers)))))
3024 (defmacro with-demoted-errors (&rest body)
3025 "Run BODY and demote any errors to simple messages.
3026 If `debug-on-error' is non-nil, run BODY without catching its errors.
3027 This is to be used around code which is not expected to signal an error
3028 but which should be robust in the unexpected case that an error is signaled."
3029 (declare (debug t) (indent 0))
3030 (let ((err (make-symbol "err")))
3031 `(condition-case-no-debug ,err
3032 (progn ,@body)
3033 (error (message "Error: %S" ,err) nil))))
3035 (defmacro combine-after-change-calls (&rest body)
3036 "Execute BODY, but don't call the after-change functions till the end.
3037 If BODY makes changes in the buffer, they are recorded
3038 and the functions on `after-change-functions' are called several times
3039 when BODY is finished.
3040 The return value is the value of the last form in BODY.
3042 If `before-change-functions' is non-nil, then calls to the after-change
3043 functions can't be deferred, so in that case this macro has no effect.
3045 Do not alter `after-change-functions' or `before-change-functions'
3046 in BODY."
3047 (declare (indent 0) (debug t))
3048 `(unwind-protect
3049 (let ((combine-after-change-calls t))
3050 . ,body)
3051 (combine-after-change-execute)))
3053 (defmacro with-case-table (table &rest body)
3054 "Execute the forms in BODY with TABLE as the current case table.
3055 The value returned is the value of the last form in BODY."
3056 (declare (indent 1) (debug t))
3057 (let ((old-case-table (make-symbol "table"))
3058 (old-buffer (make-symbol "buffer")))
3059 `(let ((,old-case-table (current-case-table))
3060 (,old-buffer (current-buffer)))
3061 (unwind-protect
3062 (progn (set-case-table ,table)
3063 ,@body)
3064 (with-current-buffer ,old-buffer
3065 (set-case-table ,old-case-table))))))
3067 ;;; Matching and match data.
3069 (defvar save-match-data-internal)
3071 ;; We use save-match-data-internal as the local variable because
3072 ;; that works ok in practice (people should not use that variable elsewhere).
3073 ;; We used to use an uninterned symbol; the compiler handles that properly
3074 ;; now, but it generates slower code.
3075 (defmacro save-match-data (&rest body)
3076 "Execute the BODY forms, restoring the global value of the match data.
3077 The value returned is the value of the last form in BODY."
3078 ;; It is better not to use backquote here,
3079 ;; because that makes a bootstrapping problem
3080 ;; if you need to recompile all the Lisp files using interpreted code.
3081 (declare (indent 0) (debug t))
3082 (list 'let
3083 '((save-match-data-internal (match-data)))
3084 (list 'unwind-protect
3085 (cons 'progn body)
3086 ;; It is safe to free (evaporate) markers immediately here,
3087 ;; as Lisp programs should not copy from save-match-data-internal.
3088 '(set-match-data save-match-data-internal 'evaporate))))
3090 (defun match-string (num &optional string)
3091 "Return string of text matched by last search.
3092 NUM specifies which parenthesized expression in the last regexp.
3093 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
3094 Zero means the entire text matched by the whole regexp or whole string.
3095 STRING should be given if the last search was by `string-match' on STRING."
3096 (if (match-beginning num)
3097 (if string
3098 (substring string (match-beginning num) (match-end num))
3099 (buffer-substring (match-beginning num) (match-end num)))))
3101 (defun match-string-no-properties (num &optional string)
3102 "Return string of text matched by last search, without text properties.
3103 NUM specifies which parenthesized expression in the last regexp.
3104 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
3105 Zero means the entire text matched by the whole regexp or whole string.
3106 STRING should be given if the last search was by `string-match' on STRING."
3107 (if (match-beginning num)
3108 (if string
3109 (substring-no-properties string (match-beginning num)
3110 (match-end num))
3111 (buffer-substring-no-properties (match-beginning num)
3112 (match-end num)))))
3115 (defun match-substitute-replacement (replacement
3116 &optional fixedcase literal string subexp)
3117 "Return REPLACEMENT as it will be inserted by `replace-match'.
3118 In other words, all back-references in the form `\\&' and `\\N'
3119 are substituted with actual strings matched by the last search.
3120 Optional FIXEDCASE, LITERAL, STRING and SUBEXP have the same
3121 meaning as for `replace-match'."
3122 (let ((match (match-string 0 string)))
3123 (save-match-data
3124 (set-match-data (mapcar (lambda (x)
3125 (if (numberp x)
3126 (- x (match-beginning 0))
3128 (match-data t)))
3129 (replace-match replacement fixedcase literal match subexp))))
3132 (defun looking-back (regexp &optional limit greedy)
3133 "Return non-nil if text before point matches regular expression REGEXP.
3134 Like `looking-at' except matches before point, and is slower.
3135 LIMIT if non-nil speeds up the search by specifying a minimum
3136 starting position, to avoid checking matches that would start
3137 before LIMIT.
3139 If GREEDY is non-nil, extend the match backwards as far as
3140 possible, stopping when a single additional previous character
3141 cannot be part of a match for REGEXP. When the match is
3142 extended, its starting position is allowed to occur before
3143 LIMIT."
3144 (let ((start (point))
3145 (pos
3146 (save-excursion
3147 (and (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)
3148 (point)))))
3149 (if (and greedy pos)
3150 (save-restriction
3151 (narrow-to-region (point-min) start)
3152 (while (and (> pos (point-min))
3153 (save-excursion
3154 (goto-char pos)
3155 (backward-char 1)
3156 (looking-at (concat "\\(?:" regexp "\\)\\'"))))
3157 (setq pos (1- pos)))
3158 (save-excursion
3159 (goto-char pos)
3160 (looking-at (concat "\\(?:" regexp "\\)\\'")))))
3161 (not (null pos))))
3163 (defsubst looking-at-p (regexp)
3165 Same as `looking-at' except this function does not change the match data."
3166 (let ((inhibit-changing-match-data t))
3167 (looking-at regexp)))
3169 (defsubst string-match-p (regexp string &optional start)
3171 Same as `string-match' except this function does not change the match data."
3172 (let ((inhibit-changing-match-data t))
3173 (string-match regexp string start)))
3175 (defun subregexp-context-p (regexp pos &optional start)
3176 "Return non-nil if POS is in a normal subregexp context in REGEXP.
3177 A subregexp context is one where a sub-regexp can appear.
3178 A non-subregexp context is for example within brackets, or within a
3179 repetition bounds operator `\\=\\{...\\}', or right after a `\\'.
3180 If START is non-nil, it should be a position in REGEXP, smaller
3181 than POS, and known to be in a subregexp context."
3182 ;; Here's one possible implementation, with the great benefit that it
3183 ;; reuses the regexp-matcher's own parser, so it understands all the
3184 ;; details of the syntax. A disadvantage is that it needs to match the
3185 ;; error string.
3186 (condition-case err
3187 (progn
3188 (string-match (substring regexp (or start 0) pos) "")
3190 (invalid-regexp
3191 (not (member (cadr err) '("Unmatched [ or [^"
3192 "Unmatched \\{"
3193 "Trailing backslash")))))
3194 ;; An alternative implementation:
3195 ;; (defconst re-context-re
3196 ;; (let* ((harmless-ch "[^\\[]")
3197 ;; (harmless-esc "\\\\[^{]")
3198 ;; (class-harmless-ch "[^][]")
3199 ;; (class-lb-harmless "[^]:]")
3200 ;; (class-lb-colon-maybe-charclass ":\\([a-z]+:]\\)?")
3201 ;; (class-lb (concat "\\[\\(" class-lb-harmless
3202 ;; "\\|" class-lb-colon-maybe-charclass "\\)"))
3203 ;; (class
3204 ;; (concat "\\[^?]?"
3205 ;; "\\(" class-harmless-ch
3206 ;; "\\|" class-lb "\\)*"
3207 ;; "\\[?]")) ; special handling for bare [ at end of re
3208 ;; (braces "\\\\{[0-9,]+\\\\}"))
3209 ;; (concat "\\`\\(" harmless-ch "\\|" harmless-esc
3210 ;; "\\|" class "\\|" braces "\\)*\\'"))
3211 ;; "Matches any prefix that corresponds to a normal subregexp context.")
3212 ;; (string-match re-context-re (substring regexp (or start 0) pos))
3215 ;;;; split-string
3217 (defconst split-string-default-separators "[ \f\t\n\r\v]+"
3218 "The default value of separators for `split-string'.
3220 A regexp matching strings of whitespace. May be locale-dependent
3221 \(as yet unimplemented). Should not match non-breaking spaces.
3223 Warning: binding this to a different value and using it as default is
3224 likely to have undesired semantics.")
3226 ;; The specification says that if both SEPARATORS and OMIT-NULLS are
3227 ;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical
3228 ;; expression leads to the equivalent implementation that if SEPARATORS
3229 ;; is defaulted, OMIT-NULLS is treated as t.
3230 (defun split-string (string &optional separators omit-nulls)
3231 "Split STRING into substrings bounded by matches for SEPARATORS.
3233 The beginning and end of STRING, and each match for SEPARATORS, are
3234 splitting points. The substrings matching SEPARATORS are removed, and
3235 the substrings between the splitting points are collected as a list,
3236 which is returned.
3238 If SEPARATORS is non-nil, it should be a regular expression matching text
3239 which separates, but is not part of, the substrings. If nil it defaults to
3240 `split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and
3241 OMIT-NULLS is forced to t.
3243 If OMIT-NULLS is t, zero-length substrings are omitted from the list \(so
3244 that for the default value of SEPARATORS leading and trailing whitespace
3245 are effectively trimmed). If nil, all zero-length substrings are retained,
3246 which correctly parses CSV format, for example.
3248 Note that the effect of `(split-string STRING)' is the same as
3249 `(split-string STRING split-string-default-separators t)'. In the rare
3250 case that you wish to retain zero-length substrings when splitting on
3251 whitespace, use `(split-string STRING split-string-default-separators)'.
3253 Modifies the match data; use `save-match-data' if necessary."
3254 (let ((keep-nulls (not (if separators omit-nulls t)))
3255 (rexp (or separators split-string-default-separators))
3256 (start 0)
3257 notfirst
3258 (list nil))
3259 (while (and (string-match rexp string
3260 (if (and notfirst
3261 (= start (match-beginning 0))
3262 (< start (length string)))
3263 (1+ start) start))
3264 (< start (length string)))
3265 (setq notfirst t)
3266 (if (or keep-nulls (< start (match-beginning 0)))
3267 (setq list
3268 (cons (substring string start (match-beginning 0))
3269 list)))
3270 (setq start (match-end 0)))
3271 (if (or keep-nulls (< start (length string)))
3272 (setq list
3273 (cons (substring string start)
3274 list)))
3275 (nreverse list)))
3277 (defun combine-and-quote-strings (strings &optional separator)
3278 "Concatenate the STRINGS, adding the SEPARATOR (default \" \").
3279 This tries to quote the strings to avoid ambiguity such that
3280 (split-string-and-unquote (combine-and-quote-strings strs)) == strs
3281 Only some SEPARATORs will work properly."
3282 (let* ((sep (or separator " "))
3283 (re (concat "[\\\"]" "\\|" (regexp-quote sep))))
3284 (mapconcat
3285 (lambda (str)
3286 (if (string-match re str)
3287 (concat "\"" (replace-regexp-in-string "[\\\"]" "\\\\\\&" str) "\"")
3288 str))
3289 strings sep)))
3291 (defun split-string-and-unquote (string &optional separator)
3292 "Split the STRING into a list of strings.
3293 It understands Emacs Lisp quoting within STRING, such that
3294 (split-string-and-unquote (combine-and-quote-strings strs)) == strs
3295 The SEPARATOR regexp defaults to \"\\s-+\"."
3296 (let ((sep (or separator "\\s-+"))
3297 (i (string-match "\"" string)))
3298 (if (null i)
3299 (split-string string sep t) ; no quoting: easy
3300 (append (unless (eq i 0) (split-string (substring string 0 i) sep t))
3301 (let ((rfs (read-from-string string i)))
3302 (cons (car rfs)
3303 (split-string-and-unquote (substring string (cdr rfs))
3304 sep)))))))
3307 ;;;; Replacement in strings.
3309 (defun subst-char-in-string (fromchar tochar string &optional inplace)
3310 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
3311 Unless optional argument INPLACE is non-nil, return a new string."
3312 (let ((i (length string))
3313 (newstr (if inplace string (copy-sequence string))))
3314 (while (> i 0)
3315 (setq i (1- i))
3316 (if (eq (aref newstr i) fromchar)
3317 (aset newstr i tochar)))
3318 newstr))
3320 (defun replace-regexp-in-string (regexp rep string &optional
3321 fixedcase literal subexp start)
3322 "Replace all matches for REGEXP with REP in STRING.
3324 Return a new string containing the replacements.
3326 Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
3327 arguments with the same names of function `replace-match'. If START
3328 is non-nil, start replacements at that index in STRING.
3330 REP is either a string used as the NEWTEXT arg of `replace-match' or a
3331 function. If it is a function, it is called with the actual text of each
3332 match, and its value is used as the replacement text. When REP is called,
3333 the match data are the result of matching REGEXP against a substring
3334 of STRING.
3336 To replace only the first match (if any), make REGEXP match up to \\'
3337 and replace a sub-expression, e.g.
3338 (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\'\" \"bar\" \" foo foo\" nil nil 1)
3339 => \" bar foo\"
3342 ;; To avoid excessive consing from multiple matches in long strings,
3343 ;; don't just call `replace-match' continually. Walk down the
3344 ;; string looking for matches of REGEXP and building up a (reversed)
3345 ;; list MATCHES. This comprises segments of STRING which weren't
3346 ;; matched interspersed with replacements for segments that were.
3347 ;; [For a `large' number of replacements it's more efficient to
3348 ;; operate in a temporary buffer; we can't tell from the function's
3349 ;; args whether to choose the buffer-based implementation, though it
3350 ;; might be reasonable to do so for long enough STRING.]
3351 (let ((l (length string))
3352 (start (or start 0))
3353 matches str mb me)
3354 (save-match-data
3355 (while (and (< start l) (string-match regexp string start))
3356 (setq mb (match-beginning 0)
3357 me (match-end 0))
3358 ;; If we matched the empty string, make sure we advance by one char
3359 (when (= me mb) (setq me (min l (1+ mb))))
3360 ;; Generate a replacement for the matched substring.
3361 ;; Operate only on the substring to minimize string consing.
3362 ;; Set up match data for the substring for replacement;
3363 ;; presumably this is likely to be faster than munging the
3364 ;; match data directly in Lisp.
3365 (string-match regexp (setq str (substring string mb me)))
3366 (setq matches
3367 (cons (replace-match (if (stringp rep)
3369 (funcall rep (match-string 0 str)))
3370 fixedcase literal str subexp)
3371 (cons (substring string start mb) ; unmatched prefix
3372 matches)))
3373 (setq start me))
3374 ;; Reconstruct a string from the pieces.
3375 (setq matches (cons (substring string start l) matches)) ; leftover
3376 (apply #'concat (nreverse matches)))))
3378 (defun string-prefix-p (str1 str2 &optional ignore-case)
3379 "Return non-nil if STR1 is a prefix of STR2.
3380 If IGNORE-CASE is non-nil, the comparison is done without paying attention
3381 to case differences."
3382 (eq t (compare-strings str1 nil nil
3383 str2 0 (length str1) ignore-case)))
3385 ;;;; invisibility specs
3387 (defun add-to-invisibility-spec (element)
3388 "Add ELEMENT to `buffer-invisibility-spec'.
3389 See documentation for `buffer-invisibility-spec' for the kind of elements
3390 that can be added."
3391 (if (eq buffer-invisibility-spec t)
3392 (setq buffer-invisibility-spec (list t)))
3393 (setq buffer-invisibility-spec
3394 (cons element buffer-invisibility-spec)))
3396 (defun remove-from-invisibility-spec (element)
3397 "Remove ELEMENT from `buffer-invisibility-spec'."
3398 (if (consp buffer-invisibility-spec)
3399 (setq buffer-invisibility-spec
3400 (delete element buffer-invisibility-spec))))
3402 ;;;; Syntax tables.
3404 (defmacro with-syntax-table (table &rest body)
3405 "Evaluate BODY with syntax table of current buffer set to TABLE.
3406 The syntax table of the current buffer is saved, BODY is evaluated, and the
3407 saved table is restored, even in case of an abnormal exit.
3408 Value is what BODY returns."
3409 (declare (debug t) (indent 1))
3410 (let ((old-table (make-symbol "table"))
3411 (old-buffer (make-symbol "buffer")))
3412 `(let ((,old-table (syntax-table))
3413 (,old-buffer (current-buffer)))
3414 (unwind-protect
3415 (progn
3416 (set-syntax-table ,table)
3417 ,@body)
3418 (save-current-buffer
3419 (set-buffer ,old-buffer)
3420 (set-syntax-table ,old-table))))))
3422 (defun make-syntax-table (&optional oldtable)
3423 "Return a new syntax table.
3424 Create a syntax table which inherits from OLDTABLE (if non-nil) or
3425 from `standard-syntax-table' otherwise."
3426 (let ((table (make-char-table 'syntax-table nil)))
3427 (set-char-table-parent table (or oldtable (standard-syntax-table)))
3428 table))
3430 (defun syntax-after (pos)
3431 "Return the raw syntax of the char after POS.
3432 If POS is outside the buffer's accessible portion, return nil."
3433 (unless (or (< pos (point-min)) (>= pos (point-max)))
3434 (let ((st (if parse-sexp-lookup-properties
3435 (get-char-property pos 'syntax-table))))
3436 (if (consp st) st
3437 (aref (or st (syntax-table)) (char-after pos))))))
3439 (defun syntax-class (syntax)
3440 "Return the syntax class part of the syntax descriptor SYNTAX.
3441 If SYNTAX is nil, return nil."
3442 (and syntax (logand (car syntax) 65535)))
3444 ;;;; Text clones
3446 (defun text-clone-maintain (ol1 after beg end &optional len)
3447 "Propagate the changes made under the overlay OL1 to the other clones.
3448 This is used on the `modification-hooks' property of text clones."
3449 (when (and after (not undo-in-progress) (overlay-start ol1))
3450 (let ((margin (if (overlay-get ol1 'text-clone-spreadp) 1 0)))
3451 (setq beg (max beg (+ (overlay-start ol1) margin)))
3452 (setq end (min end (- (overlay-end ol1) margin)))
3453 (when (<= beg end)
3454 (save-excursion
3455 (when (overlay-get ol1 'text-clone-syntax)
3456 ;; Check content of the clone's text.
3457 (let ((cbeg (+ (overlay-start ol1) margin))
3458 (cend (- (overlay-end ol1) margin)))
3459 (goto-char cbeg)
3460 (save-match-data
3461 (if (not (re-search-forward
3462 (overlay-get ol1 'text-clone-syntax) cend t))
3463 ;; Mark the overlay for deletion.
3464 (overlay-put ol1 'text-clones nil)
3465 (when (< (match-end 0) cend)
3466 ;; Shrink the clone at its end.
3467 (setq end (min end (match-end 0)))
3468 (move-overlay ol1 (overlay-start ol1)
3469 (+ (match-end 0) margin)))
3470 (when (> (match-beginning 0) cbeg)
3471 ;; Shrink the clone at its beginning.
3472 (setq beg (max (match-beginning 0) beg))
3473 (move-overlay ol1 (- (match-beginning 0) margin)
3474 (overlay-end ol1)))))))
3475 ;; Now go ahead and update the clones.
3476 (let ((head (- beg (overlay-start ol1)))
3477 (tail (- (overlay-end ol1) end))
3478 (str (buffer-substring beg end))
3479 (nothing-left t)
3480 (inhibit-modification-hooks t))
3481 (dolist (ol2 (overlay-get ol1 'text-clones))
3482 (let ((oe (overlay-end ol2)))
3483 (unless (or (eq ol1 ol2) (null oe))
3484 (setq nothing-left nil)
3485 (let ((mod-beg (+ (overlay-start ol2) head)))
3486 ;;(overlay-put ol2 'modification-hooks nil)
3487 (goto-char (- (overlay-end ol2) tail))
3488 (unless (> mod-beg (point))
3489 (save-excursion (insert str))
3490 (delete-region mod-beg (point)))
3491 ;;(overlay-put ol2 'modification-hooks '(text-clone-maintain))
3492 ))))
3493 (if nothing-left (delete-overlay ol1))))))))
3495 (defun text-clone-create (start end &optional spreadp syntax)
3496 "Create a text clone of START...END at point.
3497 Text clones are chunks of text that are automatically kept identical:
3498 changes done to one of the clones will be immediately propagated to the other.
3500 The buffer's content at point is assumed to be already identical to
3501 the one between START and END.
3502 If SYNTAX is provided it's a regexp that describes the possible text of
3503 the clones; the clone will be shrunk or killed if necessary to ensure that
3504 its text matches the regexp.
3505 If SPREADP is non-nil it indicates that text inserted before/after the
3506 clone should be incorporated in the clone."
3507 ;; To deal with SPREADP we can either use an overlay with `nil t' along
3508 ;; with insert-(behind|in-front-of)-hooks or use a slightly larger overlay
3509 ;; (with a one-char margin at each end) with `t nil'.
3510 ;; We opted for a larger overlay because it behaves better in the case
3511 ;; where the clone is reduced to the empty string (we want the overlay to
3512 ;; stay when the clone's content is the empty string and we want to use
3513 ;; `evaporate' to make sure those overlays get deleted when needed).
3515 (let* ((pt-end (+ (point) (- end start)))
3516 (start-margin (if (or (not spreadp) (bobp) (<= start (point-min)))
3517 0 1))
3518 (end-margin (if (or (not spreadp)
3519 (>= pt-end (point-max))
3520 (>= start (point-max)))
3521 0 1))
3522 (ol1 (make-overlay (- start start-margin) (+ end end-margin) nil t))
3523 (ol2 (make-overlay (- (point) start-margin) (+ pt-end end-margin) nil t))
3524 (dups (list ol1 ol2)))
3525 (overlay-put ol1 'modification-hooks '(text-clone-maintain))
3526 (when spreadp (overlay-put ol1 'text-clone-spreadp t))
3527 (when syntax (overlay-put ol1 'text-clone-syntax syntax))
3528 ;;(overlay-put ol1 'face 'underline)
3529 (overlay-put ol1 'evaporate t)
3530 (overlay-put ol1 'text-clones dups)
3532 (overlay-put ol2 'modification-hooks '(text-clone-maintain))
3533 (when spreadp (overlay-put ol2 'text-clone-spreadp t))
3534 (when syntax (overlay-put ol2 'text-clone-syntax syntax))
3535 ;;(overlay-put ol2 'face 'underline)
3536 (overlay-put ol2 'evaporate t)
3537 (overlay-put ol2 'text-clones dups)))
3539 ;;;; Mail user agents.
3541 ;; Here we include just enough for other packages to be able
3542 ;; to define them.
3544 (defun define-mail-user-agent (symbol composefunc sendfunc
3545 &optional abortfunc hookvar)
3546 "Define a symbol to identify a mail-sending package for `mail-user-agent'.
3548 SYMBOL can be any Lisp symbol. Its function definition and/or
3549 value as a variable do not matter for this usage; we use only certain
3550 properties on its property list, to encode the rest of the arguments.
3552 COMPOSEFUNC is program callable function that composes an outgoing
3553 mail message buffer. This function should set up the basics of the
3554 buffer without requiring user interaction. It should populate the
3555 standard mail headers, leaving the `to:' and `subject:' headers blank
3556 by default.
3558 COMPOSEFUNC should accept several optional arguments--the same
3559 arguments that `compose-mail' takes. See that function's documentation.
3561 SENDFUNC is the command a user would run to send the message.
3563 Optional ABORTFUNC is the command a user would run to abort the
3564 message. For mail packages that don't have a separate abort function,
3565 this can be `kill-buffer' (the equivalent of omitting this argument).
3567 Optional HOOKVAR is a hook variable that gets run before the message
3568 is actually sent. Callers that use the `mail-user-agent' may
3569 install a hook function temporarily on this hook variable.
3570 If HOOKVAR is nil, `mail-send-hook' is used.
3572 The properties used on SYMBOL are `composefunc', `sendfunc',
3573 `abortfunc', and `hookvar'."
3574 (put symbol 'composefunc composefunc)
3575 (put symbol 'sendfunc sendfunc)
3576 (put symbol 'abortfunc (or abortfunc 'kill-buffer))
3577 (put symbol 'hookvar (or hookvar 'mail-send-hook)))
3579 ;;;; Progress reporters.
3581 ;; Progress reporter has the following structure:
3583 ;; (NEXT-UPDATE-VALUE . [NEXT-UPDATE-TIME
3584 ;; MIN-VALUE
3585 ;; MAX-VALUE
3586 ;; MESSAGE
3587 ;; MIN-CHANGE
3588 ;; MIN-TIME])
3590 ;; This weirdeness is for optimization reasons: we want
3591 ;; `progress-reporter-update' to be as fast as possible, so
3592 ;; `(car reporter)' is better than `(aref reporter 0)'.
3594 ;; NEXT-UPDATE-TIME is a float. While `float-time' loses a couple
3595 ;; digits of precision, it doesn't really matter here. On the other
3596 ;; hand, it greatly simplifies the code.
3598 (defsubst progress-reporter-update (reporter &optional value)
3599 "Report progress of an operation in the echo area.
3600 REPORTER should be the result of a call to `make-progress-reporter'.
3602 If REPORTER is a numerical progress reporter---i.e. if it was
3603 made using non-nil MIN-VALUE and MAX-VALUE arguments to
3604 `make-progress-reporter'---then VALUE should be a number between
3605 MIN-VALUE and MAX-VALUE.
3607 If REPORTER is a non-numerical reporter, VALUE should be nil.
3609 This function is relatively inexpensive. If the change since
3610 last update is too small or insufficient time has passed, it does
3611 nothing."
3612 (when (or (not (numberp value)) ; For pulsing reporter
3613 (>= value (car reporter))) ; For numerical reporter
3614 (progress-reporter-do-update reporter value)))
3616 (defun make-progress-reporter (message &optional min-value max-value
3617 current-value min-change min-time)
3618 "Return progress reporter object for use with `progress-reporter-update'.
3620 MESSAGE is shown in the echo area, with a status indicator
3621 appended to the end. When you call `progress-reporter-done', the
3622 word \"done\" is printed after the MESSAGE. You can change the
3623 MESSAGE of an existing progress reporter by calling
3624 `progress-reporter-force-update'.
3626 MIN-VALUE and MAX-VALUE, if non-nil, are starting (0% complete)
3627 and final (100% complete) states of operation; the latter should
3628 be larger. In this case, the status message shows the percentage
3629 progress.
3631 If MIN-VALUE and/or MAX-VALUE is omitted or nil, the status
3632 message shows a \"spinning\", non-numeric indicator.
3634 Optional CURRENT-VALUE is the initial progress; the default is
3635 MIN-VALUE.
3636 Optional MIN-CHANGE is the minimal change in percents to report;
3637 the default is 1%.
3638 CURRENT-VALUE and MIN-CHANGE do not have any effect if MIN-VALUE
3639 and/or MAX-VALUE are nil.
3641 Optional MIN-TIME specifies the minimum interval time between
3642 echo area updates (default is 0.2 seconds.) If the function
3643 `float-time' is not present, time is not tracked at all. If the
3644 OS is not capable of measuring fractions of seconds, this
3645 parameter is effectively rounded up."
3646 (unless min-time
3647 (setq min-time 0.2))
3648 (let ((reporter
3649 ;; Force a call to `message' now
3650 (cons (or min-value 0)
3651 (vector (if (and (fboundp 'float-time)
3652 (>= min-time 0.02))
3653 (float-time) nil)
3654 min-value
3655 max-value
3656 message
3657 (if min-change (max (min min-change 50) 1) 1)
3658 min-time))))
3659 (progress-reporter-update reporter (or current-value min-value))
3660 reporter))
3662 (defun progress-reporter-force-update (reporter &optional value new-message)
3663 "Report progress of an operation in the echo area unconditionally.
3665 The first two arguments are the same as in `progress-reporter-update'.
3666 NEW-MESSAGE, if non-nil, sets a new message for the reporter."
3667 (let ((parameters (cdr reporter)))
3668 (when new-message
3669 (aset parameters 3 new-message))
3670 (when (aref parameters 0)
3671 (aset parameters 0 (float-time)))
3672 (progress-reporter-do-update reporter value)))
3674 (defvar progress-reporter--pulse-characters ["-" "\\" "|" "/"]
3675 "Characters to use for pulsing progress reporters.")
3677 (defun progress-reporter-do-update (reporter value)
3678 (let* ((parameters (cdr reporter))
3679 (update-time (aref parameters 0))
3680 (min-value (aref parameters 1))
3681 (max-value (aref parameters 2))
3682 (text (aref parameters 3))
3683 (current-time (float-time))
3684 (enough-time-passed
3685 ;; See if enough time has passed since the last update.
3686 (or (not update-time)
3687 (when (>= current-time update-time)
3688 ;; Calculate time for the next update
3689 (aset parameters 0 (+ update-time (aref parameters 5)))))))
3690 (cond ((and min-value max-value)
3691 ;; Numerical indicator
3692 (let* ((one-percent (/ (- max-value min-value) 100.0))
3693 (percentage (if (= max-value min-value)
3695 (truncate (/ (- value min-value)
3696 one-percent)))))
3697 ;; Calculate NEXT-UPDATE-VALUE. If we are not printing
3698 ;; message because not enough time has passed, use 1
3699 ;; instead of MIN-CHANGE. This makes delays between echo
3700 ;; area updates closer to MIN-TIME.
3701 (setcar reporter
3702 (min (+ min-value (* (+ percentage
3703 (if enough-time-passed
3704 ;; MIN-CHANGE
3705 (aref parameters 4)
3707 one-percent))
3708 max-value))
3709 (when (integerp value)
3710 (setcar reporter (ceiling (car reporter))))
3711 ;; Only print message if enough time has passed
3712 (when enough-time-passed
3713 (if (> percentage 0)
3714 (message "%s%d%%" text percentage)
3715 (message "%s" text)))))
3716 ;; Pulsing indicator
3717 (enough-time-passed
3718 (let ((index (mod (1+ (car reporter)) 4))
3719 (message-log-max nil))
3720 (setcar reporter index)
3721 (message "%s %s"
3722 text
3723 (aref progress-reporter--pulse-characters
3724 index)))))))
3726 (defun progress-reporter-done (reporter)
3727 "Print reporter's message followed by word \"done\" in echo area."
3728 (message "%sdone" (aref (cdr reporter) 3)))
3730 (defmacro dotimes-with-progress-reporter (spec message &rest body)
3731 "Loop a certain number of times and report progress in the echo area.
3732 Evaluate BODY with VAR bound to successive integers running from
3733 0, inclusive, to COUNT, exclusive. Then evaluate RESULT to get
3734 the return value (nil if RESULT is omitted).
3736 At each iteration MESSAGE followed by progress percentage is
3737 printed in the echo area. After the loop is finished, MESSAGE
3738 followed by word \"done\" is printed. This macro is a
3739 convenience wrapper around `make-progress-reporter' and friends.
3741 \(fn (VAR COUNT [RESULT]) MESSAGE BODY...)"
3742 (declare (indent 2) (debug ((symbolp form &optional form) form body)))
3743 (let ((temp (make-symbol "--dotimes-temp--"))
3744 (temp2 (make-symbol "--dotimes-temp2--"))
3745 (start 0)
3746 (end (nth 1 spec)))
3747 `(let ((,temp ,end)
3748 (,(car spec) ,start)
3749 (,temp2 (make-progress-reporter ,message ,start ,end)))
3750 (while (< ,(car spec) ,temp)
3751 ,@body
3752 (progress-reporter-update ,temp2
3753 (setq ,(car spec) (1+ ,(car spec)))))
3754 (progress-reporter-done ,temp2)
3755 nil ,@(cdr (cdr spec)))))
3758 ;;;; Comparing version strings.
3760 (defconst version-separator "."
3761 "Specify the string used to separate the version elements.
3763 Usually the separator is \".\", but it can be any other string.")
3766 (defconst version-regexp-alist
3767 '(("^[-_+ ]?alpha$" . -3)
3768 ("^[-_+]$" . -3) ; treat "1.2.3-20050920" and "1.2-3" as alpha releases
3769 ("^[-_+ ]cvs$" . -3) ; treat "1.2.3-CVS" as alpha release
3770 ("^[-_+ ]?beta$" . -2)
3771 ("^[-_+ ]?\\(pre\\|rcc\\)$" . -1))
3772 "Specify association between non-numeric version and its priority.
3774 This association is used to handle version string like \"1.0pre2\",
3775 \"0.9alpha1\", etc. It's used by `version-to-list' (which see) to convert the
3776 non-numeric part of a version string to an integer. For example:
3778 String Version Integer List Version
3779 \"1.0pre2\" (1 0 -1 2)
3780 \"1.0PRE2\" (1 0 -1 2)
3781 \"22.8beta3\" (22 8 -2 3)
3782 \"22.8 Beta3\" (22 8 -2 3)
3783 \"0.9alpha1\" (0 9 -3 1)
3784 \"0.9AlphA1\" (0 9 -3 1)
3785 \"0.9 alpha\" (0 9 -3)
3787 Each element has the following form:
3789 (REGEXP . PRIORITY)
3791 Where:
3793 REGEXP regexp used to match non-numeric part of a version string.
3794 It should begin with the `^' anchor and end with a `$' to
3795 prevent false hits. Letter-case is ignored while matching
3796 REGEXP.
3798 PRIORITY a negative integer specifying non-numeric priority of REGEXP.")
3801 (defun version-to-list (ver)
3802 "Convert version string VER into a list of integers.
3804 The version syntax is given by the following EBNF:
3806 VERSION ::= NUMBER ( SEPARATOR NUMBER )*.
3808 NUMBER ::= (0|1|2|3|4|5|6|7|8|9)+.
3810 SEPARATOR ::= `version-separator' (which see)
3811 | `version-regexp-alist' (which see).
3813 The NUMBER part is optional if SEPARATOR is a match for an element
3814 in `version-regexp-alist'.
3816 Examples of valid version syntax:
3818 1.0pre2 1.0.7.5 22.8beta3 0.9alpha1 6.9.30Beta
3820 Examples of invalid version syntax:
3822 1.0prepre2 1.0..7.5 22.8X3 alpha3.2 .5
3824 Examples of version conversion:
3826 Version String Version as a List of Integers
3827 \"1.0.7.5\" (1 0 7 5)
3828 \"1.0pre2\" (1 0 -1 2)
3829 \"1.0PRE2\" (1 0 -1 2)
3830 \"22.8beta3\" (22 8 -2 3)
3831 \"22.8Beta3\" (22 8 -2 3)
3832 \"0.9alpha1\" (0 9 -3 1)
3833 \"0.9AlphA1\" (0 9 -3 1)
3834 \"0.9alpha\" (0 9 -3)
3836 See documentation for `version-separator' and `version-regexp-alist'."
3837 (or (and (stringp ver) (> (length ver) 0))
3838 (error "Invalid version string: '%s'" ver))
3839 ;; Change .x.y to 0.x.y
3840 (if (and (>= (length ver) (length version-separator))
3841 (string-equal (substring ver 0 (length version-separator))
3842 version-separator))
3843 (setq ver (concat "0" ver)))
3844 (save-match-data
3845 (let ((i 0)
3846 (case-fold-search t) ; ignore case in matching
3847 lst s al)
3848 (while (and (setq s (string-match "[0-9]+" ver i))
3849 (= s i))
3850 ;; handle numeric part
3851 (setq lst (cons (string-to-number (substring ver i (match-end 0)))
3852 lst)
3853 i (match-end 0))
3854 ;; handle non-numeric part
3855 (when (and (setq s (string-match "[^0-9]+" ver i))
3856 (= s i))
3857 (setq s (substring ver i (match-end 0))
3858 i (match-end 0))
3859 ;; handle alpha, beta, pre, etc. separator
3860 (unless (string= s version-separator)
3861 (setq al version-regexp-alist)
3862 (while (and al (not (string-match (caar al) s)))
3863 (setq al (cdr al)))
3864 (cond (al
3865 (push (cdar al) lst))
3866 ;; Convert 22.3a to 22.3.1, 22.3b to 22.3.2, etc.
3867 ((string-match "^[-_+ ]?\\([a-zA-Z]\\)$" s)
3868 (push (- (aref (downcase (match-string 1 s)) 0) ?a -1)
3869 lst))
3870 (t (error "Invalid version syntax: '%s'" ver))))))
3871 (if (null lst)
3872 (error "Invalid version syntax: '%s'" ver)
3873 (nreverse lst)))))
3876 (defun version-list-< (l1 l2)
3877 "Return t if L1, a list specification of a version, is lower than L2.
3879 Note that a version specified by the list (1) is equal to (1 0),
3880 \(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
3881 Also, a version given by the list (1) is higher than (1 -1), which in
3882 turn is higher than (1 -2), which is higher than (1 -3)."
3883 (while (and l1 l2 (= (car l1) (car l2)))
3884 (setq l1 (cdr l1)
3885 l2 (cdr l2)))
3886 (cond
3887 ;; l1 not null and l2 not null
3888 ((and l1 l2) (< (car l1) (car l2)))
3889 ;; l1 null and l2 null ==> l1 length = l2 length
3890 ((and (null l1) (null l2)) nil)
3891 ;; l1 not null and l2 null ==> l1 length > l2 length
3892 (l1 (< (version-list-not-zero l1) 0))
3893 ;; l1 null and l2 not null ==> l2 length > l1 length
3894 (t (< 0 (version-list-not-zero l2)))))
3897 (defun version-list-= (l1 l2)
3898 "Return t if L1, a list specification of a version, is equal to L2.
3900 Note that a version specified by the list (1) is equal to (1 0),
3901 \(1 0 0), (1 0 0 0), etc. That is, the trailing zeros are insignificant.
3902 Also, a version given by the list (1) is higher than (1 -1), which in
3903 turn is higher than (1 -2), which is higher than (1 -3)."
3904 (while (and l1 l2 (= (car l1) (car l2)))
3905 (setq l1 (cdr l1)
3906 l2 (cdr l2)))
3907 (cond
3908 ;; l1 not null and l2 not null
3909 ((and l1 l2) nil)
3910 ;; l1 null and l2 null ==> l1 length = l2 length
3911 ((and (null l1) (null l2)))
3912 ;; l1 not null and l2 null ==> l1 length > l2 length
3913 (l1 (zerop (version-list-not-zero l1)))
3914 ;; l1 null and l2 not null ==> l2 length > l1 length
3915 (t (zerop (version-list-not-zero l2)))))
3918 (defun version-list-<= (l1 l2)
3919 "Return t if L1, a list specification of a version, is lower or equal to L2.
3921 Note that integer list (1) is equal to (1 0), (1 0 0), (1 0 0 0),
3922 etc. That is, the trailing zeroes are insignificant. Also, integer
3923 list (1) is greater than (1 -1) which is greater than (1 -2)
3924 which is greater than (1 -3)."
3925 (while (and l1 l2 (= (car l1) (car l2)))
3926 (setq l1 (cdr l1)
3927 l2 (cdr l2)))
3928 (cond
3929 ;; l1 not null and l2 not null
3930 ((and l1 l2) (< (car l1) (car l2)))
3931 ;; l1 null and l2 null ==> l1 length = l2 length
3932 ((and (null l1) (null l2)))
3933 ;; l1 not null and l2 null ==> l1 length > l2 length
3934 (l1 (<= (version-list-not-zero l1) 0))
3935 ;; l1 null and l2 not null ==> l2 length > l1 length
3936 (t (<= 0 (version-list-not-zero l2)))))
3938 (defun version-list-not-zero (lst)
3939 "Return the first non-zero element of LST, which is a list of integers.
3941 If all LST elements are zeros or LST is nil, return zero."
3942 (while (and lst (zerop (car lst)))
3943 (setq lst (cdr lst)))
3944 (if lst
3945 (car lst)
3946 ;; there is no element different of zero
3950 (defun version< (v1 v2)
3951 "Return t if version V1 is lower (older) than V2.
3953 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
3954 etc. That is, the trailing \".0\"s are insignificant. Also, version
3955 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
3956 which is higher than \"1alpha\"."
3957 (version-list-< (version-to-list v1) (version-to-list v2)))
3960 (defun version<= (v1 v2)
3961 "Return t if version V1 is lower (older) than or equal to V2.
3963 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
3964 etc. That is, the trailing \".0\"s are insignificant. Also, version
3965 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
3966 which is higher than \"1alpha\"."
3967 (version-list-<= (version-to-list v1) (version-to-list v2)))
3969 (defun version= (v1 v2)
3970 "Return t if version V1 is equal to V2.
3972 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
3973 etc. That is, the trailing \".0\"s are insignificant. Also, version
3974 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
3975 which is higher than \"1alpha\"."
3976 (version-list-= (version-to-list v1) (version-to-list v2)))
3979 ;;; Misc.
3980 (defconst menu-bar-separator '("--")
3981 "Separator for menus.")
3983 ;; The following statement ought to be in print.c, but `provide' can't
3984 ;; be used there.
3985 ;; http://lists.gnu.org/archive/html/emacs-devel/2009-08/msg00236.html
3986 (when (hash-table-p (car (read-from-string
3987 (prin1-to-string (make-hash-table)))))
3988 (provide 'hashtable-print-readable))
3990 ;;; subr.el ends here