Full support for multiple terminal I/O (with some rough edges).
[emacs.git] / lisp / subr.el
blob2996f2903e0b80fbae6947fc50e6936ebad2a645
1 ;;; subr.el --- basic lisp subroutines for Emacs
3 ;; Copyright (C) 1985, 86, 92, 94, 95, 99, 2000, 2001, 2002, 2003
4 ;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: internal
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;;; 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)))
40 (defun macro-declaration-function (macro decl)
41 "Process a declaration found in a macro definition.
42 This is set as the value of the variable `macro-declaration-function'.
43 MACRO is the name of the macro being defined.
44 DECL is a list `(declare ...)' containing the declarations.
45 The return value of this function is not used."
46 ;; We can't use `dolist' or `cadr' yet for bootstrapping reasons.
47 (let (d)
48 ;; Ignore the first element of `decl' (it's always `declare').
49 (while (setq decl (cdr decl))
50 (setq d (car decl))
51 (cond ((and (consp d) (eq (car d) 'indent))
52 (put macro 'lisp-indent-function (car (cdr d))))
53 ((and (consp d) (eq (car d) 'debug))
54 (put macro 'edebug-form-spec (car (cdr d))))
56 (message "Unknown declaration %s" d))))))
58 (setq macro-declaration-function 'macro-declaration-function)
61 ;;;; Lisp language features.
63 (defalias 'not 'null)
65 (defmacro noreturn (form)
66 "Evaluates FORM, with the expectation that the evaluation will signal an error
67 instead of returning to its caller. If FORM does return, an error is
68 signalled."
69 `(prog1 ,form
70 (error "Form marked with `noreturn' did return")))
72 (defmacro 1value (form)
73 "Evaluates FORM, with the expectation that all the same value will be returned
74 from all evaluations of FORM. This is the global do-nothing
75 version of `1value'. There is also `testcover-1value' that
76 complains if FORM ever does return differing values."
77 form)
79 (defmacro lambda (&rest cdr)
80 "Return a lambda expression.
81 A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
82 self-quoting; the result of evaluating the lambda expression is the
83 expression itself. The lambda expression may then be treated as a
84 function, i.e., stored as the function value of a symbol, passed to
85 funcall or mapcar, etc.
87 ARGS should take the same form as an argument list for a `defun'.
88 DOCSTRING is an optional documentation string.
89 If present, it should describe how to call the function.
90 But documentation strings are usually not useful in nameless functions.
91 INTERACTIVE should be a call to the function `interactive', which see.
92 It may also be omitted.
93 BODY should be a list of Lisp expressions."
94 ;; Note that this definition should not use backquotes; subr.el should not
95 ;; depend on backquote.el.
96 (list 'function (cons 'lambda cdr)))
98 (defmacro push (newelt listname)
99 "Add NEWELT to the list stored in the symbol LISTNAME.
100 This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
101 LISTNAME must be a symbol."
102 (declare (debug (form sexp)))
103 (list 'setq listname
104 (list 'cons newelt listname)))
106 (defmacro pop (listname)
107 "Return the first element of LISTNAME's value, and remove it from the list.
108 LISTNAME must be a symbol whose value is a list.
109 If the value is nil, `pop' returns nil but does not actually
110 change the list."
111 (declare (debug (sexp)))
112 (list 'car
113 (list 'prog1 listname
114 (list 'setq listname (list 'cdr listname)))))
116 (defmacro when (cond &rest body)
117 "If COND yields non-nil, do BODY, else return nil."
118 (declare (indent 1) (debug t))
119 (list 'if cond (cons 'progn body)))
121 (defmacro unless (cond &rest body)
122 "If COND yields nil, do BODY, else return nil."
123 (declare (indent 1) (debug t))
124 (cons 'if (cons cond (cons nil body))))
126 (defmacro dolist (spec &rest body)
127 "Loop over a list.
128 Evaluate BODY with VAR bound to each car from LIST, in turn.
129 Then evaluate RESULT to get return value, default nil.
131 \(fn (VAR LIST [RESULT]) BODY...)"
132 (declare (indent 1) (debug ((symbolp form &optional form) body)))
133 (let ((temp (make-symbol "--dolist-temp--")))
134 `(let ((,temp ,(nth 1 spec))
135 ,(car spec))
136 (while ,temp
137 (setq ,(car spec) (car ,temp))
138 (setq ,temp (cdr ,temp))
139 ,@body)
140 ,@(if (cdr (cdr spec))
141 `((setq ,(car spec) nil) ,@(cdr (cdr spec)))))))
143 (defmacro dotimes (spec &rest body)
144 "Loop a certain number of times.
145 Evaluate BODY with VAR bound to successive integers running from 0,
146 inclusive, to COUNT, exclusive. Then evaluate RESULT to get
147 the return value (nil if RESULT is omitted).
149 \(fn (VAR COUNT [RESULT]) BODY...)"
150 (declare (indent 1) (debug dolist))
151 (let ((temp (make-symbol "--dotimes-temp--"))
152 (start 0)
153 (end (nth 1 spec)))
154 `(let ((,temp ,end)
155 (,(car spec) ,start))
156 (while (< ,(car spec) ,temp)
157 ,@body
158 (setq ,(car spec) (1+ ,(car spec))))
159 ,@(cdr (cdr spec)))))
161 (defsubst caar (x)
162 "Return the car of the car of X."
163 (car (car x)))
165 (defsubst cadr (x)
166 "Return the car of the cdr of X."
167 (car (cdr x)))
169 (defsubst cdar (x)
170 "Return the cdr of the car of X."
171 (cdr (car x)))
173 (defsubst cddr (x)
174 "Return the cdr of the cdr of X."
175 (cdr (cdr x)))
177 (defun last (x &optional n)
178 "Return the last link of the list X. Its car is the last element.
179 If X is nil, return nil.
180 If N is non-nil, return the Nth-to-last link of X.
181 If N is bigger than the length of X, return X."
182 (if n
183 (let ((m 0) (p x))
184 (while (consp p)
185 (setq m (1+ m) p (cdr p)))
186 (if (<= n 0) p
187 (if (< n m) (nthcdr (- m n) x) x)))
188 (while (consp (cdr x))
189 (setq x (cdr x)))
192 (defun butlast (x &optional n)
193 "Returns a copy of LIST with the last N elements removed."
194 (if (and n (<= n 0)) x
195 (nbutlast (copy-sequence x) n)))
197 (defun nbutlast (x &optional n)
198 "Modifies LIST to remove the last N elements."
199 (let ((m (length x)))
200 (or n (setq n 1))
201 (and (< n m)
202 (progn
203 (if (> n 0) (setcdr (nthcdr (- (1- m) n) x) nil))
204 x))))
206 (defun number-sequence (from &optional to inc)
207 "Return a sequence of numbers from FROM to TO (both inclusive) as a list.
208 INC is the increment used between numbers in the sequence and defaults to 1.
209 So, the Nth element of the list is \(+ FROM \(* N INC)) where N counts from
210 zero. TO is only included if there is an N for which TO = FROM + N * INC.
211 If TO is nil or numerically equal to FROM, return \(FROM).
212 If INC is positive and TO is less than FROM, or INC is negative
213 and TO is larger than FROM, return nil.
214 If INC is zero and TO is neither nil nor numerically equal to
215 FROM, signal an error.
217 This function is primarily designed for integer arguments.
218 Nevertheless, FROM, TO and INC can be integer or float. However,
219 floating point arithmetic is inexact. For instance, depending on
220 the machine, it may quite well happen that
221 \(number-sequence 0.4 0.6 0.2) returns the one element list \(0.4),
222 whereas \(number-sequence 0.4 0.8 0.2) returns a list with three
223 elements. Thus, if some of the arguments are floats and one wants
224 to make sure that TO is included, one may have to explicitly write
225 TO as \(+ FROM \(* N INC)) or use a variable whose value was
226 computed with this exact expression. Alternatively, you can,
227 of course, also replace TO with a slightly larger value
228 \(or a slightly more negative value if INC is negative)."
229 (if (or (not to) (= from to))
230 (list from)
231 (or inc (setq inc 1))
232 (when (zerop inc) (error "The increment can not be zero"))
233 (let (seq (n 0) (next from))
234 (if (> inc 0)
235 (while (<= next to)
236 (setq seq (cons next seq)
237 n (1+ n)
238 next (+ from (* n inc))))
239 (while (>= next to)
240 (setq seq (cons next seq)
241 n (1+ n)
242 next (+ from (* n inc)))))
243 (nreverse seq))))
245 (defun remove (elt seq)
246 "Return a copy of SEQ with all occurrences of ELT removed.
247 SEQ must be a list, vector, or string. The comparison is done with `equal'."
248 (if (nlistp seq)
249 ;; If SEQ isn't a list, there's no need to copy SEQ because
250 ;; `delete' will return a new object.
251 (delete elt seq)
252 (delete elt (copy-sequence seq))))
254 (defun remq (elt list)
255 "Return LIST with all occurrences of ELT removed.
256 The comparison is done with `eq'. Contrary to `delq', this does not use
257 side-effects, and the argument LIST is not modified."
258 (if (memq elt list)
259 (delq elt (copy-sequence list))
260 list))
262 (defun copy-tree (tree &optional vecp)
263 "Make a copy of TREE.
264 If TREE is a cons cell, this recursively copies both its car and its cdr.
265 Contrast to `copy-sequence', which copies only along the cdrs. With second
266 argument VECP, this copies vectors as well as conses."
267 (if (consp tree)
268 (let (result)
269 (while (consp tree)
270 (let ((newcar (car tree)))
271 (if (or (consp (car tree)) (and vecp (vectorp (car tree))))
272 (setq newcar (copy-tree (car tree) vecp)))
273 (push newcar result))
274 (setq tree (cdr tree)))
275 (nconc (nreverse result) tree))
276 (if (and vecp (vectorp tree))
277 (let ((i (length (setq tree (copy-sequence tree)))))
278 (while (>= (setq i (1- i)) 0)
279 (aset tree i (copy-tree (aref tree i) vecp)))
280 tree)
281 tree)))
283 (defun assoc-default (key alist &optional test default)
284 "Find object KEY in a pseudo-alist ALIST.
285 ALIST is a list of conses or objects. Each element (or the element's car,
286 if it is a cons) is compared with KEY by evaluating (TEST (car elt) KEY).
287 If that is non-nil, the element matches;
288 then `assoc-default' returns the element's cdr, if it is a cons,
289 or DEFAULT if the element is not a cons.
291 If no element matches, the value is nil.
292 If TEST is omitted or nil, `equal' is used."
293 (let (found (tail alist) value)
294 (while (and tail (not found))
295 (let ((elt (car tail)))
296 (when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key)
297 (setq found t value (if (consp elt) (cdr elt) default))))
298 (setq tail (cdr tail)))
299 value))
301 (defun assoc-ignore-case (key alist)
302 "Like `assoc', but ignores differences in case and text representation.
303 KEY must be a string. Upper-case and lower-case letters are treated as equal.
304 Unibyte strings are converted to multibyte for comparison."
305 (let (element)
306 (while (and alist (not element))
307 (if (eq t (compare-strings key 0 nil (car (car alist)) 0 nil t))
308 (setq element (car alist)))
309 (setq alist (cdr alist)))
310 element))
312 (defun assoc-ignore-representation (key alist)
313 "Like `assoc', but ignores differences in text representation.
314 KEY must be a string.
315 Unibyte strings are converted to multibyte for comparison."
316 (let (element)
317 (while (and alist (not element))
318 (if (eq t (compare-strings key 0 nil (car (car alist)) 0 nil))
319 (setq element (car alist)))
320 (setq alist (cdr alist)))
321 element))
323 (defun member-ignore-case (elt list)
324 "Like `member', but ignores differences in case and text representation.
325 ELT must be a string. Upper-case and lower-case letters are treated as equal.
326 Unibyte strings are converted to multibyte for comparison.
327 Non-strings in LIST are ignored."
328 (while (and list
329 (not (and (stringp (car list))
330 (eq t (compare-strings elt 0 nil (car list) 0 nil t)))))
331 (setq list (cdr list)))
332 list)
335 ;;;; Keymap support.
337 (defun undefined ()
338 (interactive)
339 (ding))
341 ;Prevent the \{...} documentation construct
342 ;from mentioning keys that run this command.
343 (put 'undefined 'suppress-keymap t)
345 (defun suppress-keymap (map &optional nodigits)
346 "Make MAP override all normally self-inserting keys to be undefined.
347 Normally, as an exception, digits and minus-sign are set to make prefix args,
348 but optional second arg NODIGITS non-nil treats them like other chars."
349 (define-key map [remap self-insert-command] 'undefined)
350 (or nodigits
351 (let (loop)
352 (define-key map "-" 'negative-argument)
353 ;; Make plain numbers do numeric args.
354 (setq loop ?0)
355 (while (<= loop ?9)
356 (define-key map (char-to-string loop) 'digit-argument)
357 (setq loop (1+ loop))))))
359 ;Moved to keymap.c
360 ;(defun copy-keymap (keymap)
361 ; "Return a copy of KEYMAP"
362 ; (while (not (keymapp keymap))
363 ; (setq keymap (signal 'wrong-type-argument (list 'keymapp keymap))))
364 ; (if (vectorp keymap)
365 ; (copy-sequence keymap)
366 ; (copy-alist keymap)))
368 (defvar key-substitution-in-progress nil
369 "Used internally by substitute-key-definition.")
371 (defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
372 "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
373 In other words, OLDDEF is replaced with NEWDEF where ever it appears.
374 Alternatively, if optional fourth argument OLDMAP is specified, we redefine
375 in KEYMAP as NEWDEF those keys which are defined as OLDDEF in OLDMAP."
376 ;; Don't document PREFIX in the doc string because we don't want to
377 ;; advertise it. It's meant for recursive calls only. Here's its
378 ;; meaning
380 ;; If optional argument PREFIX is specified, it should be a key
381 ;; prefix, a string. Redefined bindings will then be bound to the
382 ;; original key, with PREFIX added at the front.
383 (or prefix (setq prefix ""))
384 (let* ((scan (or oldmap keymap))
385 (vec1 (vector nil))
386 (prefix1 (vconcat prefix vec1))
387 (key-substitution-in-progress
388 (cons scan key-substitution-in-progress)))
389 ;; Scan OLDMAP, finding each char or event-symbol that
390 ;; has any definition, and act on it with hack-key.
391 (while (consp scan)
392 (if (consp (car scan))
393 (let ((char (car (car scan)))
394 (defn (cdr (car scan))))
395 ;; The inside of this let duplicates exactly
396 ;; the inside of the following let that handles array elements.
397 (aset vec1 0 char)
398 (aset prefix1 (length prefix) char)
399 (let (inner-def skipped)
400 ;; Skip past menu-prompt.
401 (while (stringp (car-safe defn))
402 (setq skipped (cons (car defn) skipped))
403 (setq defn (cdr defn)))
404 ;; Skip past cached key-equivalence data for menu items.
405 (and (consp defn) (consp (car defn))
406 (setq defn (cdr defn)))
407 (setq inner-def defn)
408 ;; Look past a symbol that names a keymap.
409 (while (and (symbolp inner-def)
410 (fboundp inner-def))
411 (setq inner-def (symbol-function inner-def)))
412 (if (or (eq defn olddef)
413 ;; Compare with equal if definition is a key sequence.
414 ;; That is useful for operating on function-key-map.
415 (and (or (stringp defn) (vectorp defn))
416 (equal defn olddef)))
417 (define-key keymap prefix1 (nconc (nreverse skipped) newdef))
418 (if (and (keymapp defn)
419 ;; Avoid recursively scanning
420 ;; where KEYMAP does not have a submap.
421 (let ((elt (lookup-key keymap prefix1)))
422 (or (null elt)
423 (keymapp elt)))
424 ;; Avoid recursively rescanning keymap being scanned.
425 (not (memq inner-def
426 key-substitution-in-progress)))
427 ;; If this one isn't being scanned already,
428 ;; scan it now.
429 (substitute-key-definition olddef newdef keymap
430 inner-def
431 prefix1)))))
432 (if (vectorp (car scan))
433 (let* ((array (car scan))
434 (len (length array))
435 (i 0))
436 (while (< i len)
437 (let ((char i) (defn (aref array i)))
438 ;; The inside of this let duplicates exactly
439 ;; the inside of the previous let.
440 (aset vec1 0 char)
441 (aset prefix1 (length prefix) char)
442 (let (inner-def skipped)
443 ;; Skip past menu-prompt.
444 (while (stringp (car-safe defn))
445 (setq skipped (cons (car defn) skipped))
446 (setq defn (cdr defn)))
447 (and (consp defn) (consp (car defn))
448 (setq defn (cdr defn)))
449 (setq inner-def defn)
450 (while (and (symbolp inner-def)
451 (fboundp inner-def))
452 (setq inner-def (symbol-function inner-def)))
453 (if (or (eq defn olddef)
454 (and (or (stringp defn) (vectorp defn))
455 (equal defn olddef)))
456 (define-key keymap prefix1
457 (nconc (nreverse skipped) newdef))
458 (if (and (keymapp defn)
459 (let ((elt (lookup-key keymap prefix1)))
460 (or (null elt)
461 (keymapp elt)))
462 (not (memq inner-def
463 key-substitution-in-progress)))
464 (substitute-key-definition olddef newdef keymap
465 inner-def
466 prefix1)))))
467 (setq i (1+ i))))
468 (if (char-table-p (car scan))
469 (map-char-table
470 (function (lambda (char defn)
471 (let ()
472 ;; The inside of this let duplicates exactly
473 ;; the inside of the previous let,
474 ;; except that it uses set-char-table-range
475 ;; instead of define-key.
476 (aset vec1 0 char)
477 (aset prefix1 (length prefix) char)
478 (let (inner-def skipped)
479 ;; Skip past menu-prompt.
480 (while (stringp (car-safe defn))
481 (setq skipped (cons (car defn) skipped))
482 (setq defn (cdr defn)))
483 (and (consp defn) (consp (car defn))
484 (setq defn (cdr defn)))
485 (setq inner-def defn)
486 (while (and (symbolp inner-def)
487 (fboundp inner-def))
488 (setq inner-def (symbol-function inner-def)))
489 (if (or (eq defn olddef)
490 (and (or (stringp defn) (vectorp defn))
491 (equal defn olddef)))
492 (define-key keymap prefix1
493 (nconc (nreverse skipped) newdef))
494 (if (and (keymapp defn)
495 (let ((elt (lookup-key keymap prefix1)))
496 (or (null elt)
497 (keymapp elt)))
498 (not (memq inner-def
499 key-substitution-in-progress)))
500 (substitute-key-definition olddef newdef keymap
501 inner-def
502 prefix1)))))))
503 (car scan)))))
504 (setq scan (cdr scan)))))
506 (defun define-key-after (keymap key definition &optional after)
507 "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
508 This is like `define-key' except that the binding for KEY is placed
509 just after the binding for the event AFTER, instead of at the beginning
510 of the map. Note that AFTER must be an event type (like KEY), NOT a command
511 \(like DEFINITION).
513 If AFTER is t or omitted, the new binding goes at the end of the keymap.
514 AFTER should be a single event type--a symbol or a character, not a sequence.
516 Bindings are always added before any inherited map.
518 The order of bindings in a keymap matters when it is used as a menu."
519 (unless after (setq after t))
520 (or (keymapp keymap)
521 (signal 'wrong-type-argument (list 'keymapp keymap)))
522 (setq key
523 (if (<= (length key) 1) (aref key 0)
524 (setq keymap (lookup-key keymap
525 (apply 'vector
526 (butlast (mapcar 'identity key)))))
527 (aref key (1- (length key)))))
528 (let ((tail keymap) done inserted)
529 (while (and (not done) tail)
530 ;; Delete any earlier bindings for the same key.
531 (if (eq (car-safe (car (cdr tail))) key)
532 (setcdr tail (cdr (cdr tail))))
533 ;; If we hit an included map, go down that one.
534 (if (keymapp (car tail)) (setq tail (car tail)))
535 ;; When we reach AFTER's binding, insert the new binding after.
536 ;; If we reach an inherited keymap, insert just before that.
537 ;; If we reach the end of this keymap, insert at the end.
538 (if (or (and (eq (car-safe (car tail)) after)
539 (not (eq after t)))
540 (eq (car (cdr tail)) 'keymap)
541 (null (cdr tail)))
542 (progn
543 ;; Stop the scan only if we find a parent keymap.
544 ;; Keep going past the inserted element
545 ;; so we can delete any duplications that come later.
546 (if (eq (car (cdr tail)) 'keymap)
547 (setq done t))
548 ;; Don't insert more than once.
549 (or inserted
550 (setcdr tail (cons (cons key definition) (cdr tail))))
551 (setq inserted t)))
552 (setq tail (cdr tail)))))
555 (defmacro kbd (keys)
556 "Convert KEYS to the internal Emacs key representation.
557 KEYS should be a string constant in the format used for
558 saving keyboard macros (see `insert-kbd-macro')."
559 (read-kbd-macro keys))
561 (put 'keyboard-translate-table 'char-table-extra-slots 0)
563 (defun keyboard-translate (from to)
564 "Translate character FROM to TO at a low level.
565 This function creates a `keyboard-translate-table' if necessary
566 and then modifies one entry in it."
567 (or (char-table-p keyboard-translate-table)
568 (setq keyboard-translate-table
569 (make-char-table 'keyboard-translate-table nil)))
570 (aset keyboard-translate-table from to))
573 ;;;; The global keymap tree.
575 ;;; global-map, esc-map, and ctl-x-map have their values set up in
576 ;;; keymap.c; we just give them docstrings here.
578 (defvar global-map nil
579 "Default global keymap mapping Emacs keyboard input into commands.
580 The value is a keymap which is usually (but not necessarily) Emacs's
581 global map.")
583 (defvar esc-map nil
584 "Default keymap for ESC (meta) commands.
585 The normal global definition of the character ESC indirects to this keymap.")
587 (defvar ctl-x-map nil
588 "Default keymap for C-x commands.
589 The normal global definition of the character C-x indirects to this keymap.")
591 (defvar ctl-x-4-map (make-sparse-keymap)
592 "Keymap for subcommands of C-x 4.")
593 (defalias 'ctl-x-4-prefix ctl-x-4-map)
594 (define-key ctl-x-map "4" 'ctl-x-4-prefix)
596 (defvar ctl-x-5-map (make-sparse-keymap)
597 "Keymap for frame commands.")
598 (defalias 'ctl-x-5-prefix ctl-x-5-map)
599 (define-key ctl-x-map "5" 'ctl-x-5-prefix)
602 ;;;; Event manipulation functions.
604 ;; The call to `read' is to ensure that the value is computed at load time
605 ;; and not compiled into the .elc file. The value is negative on most
606 ;; machines, but not on all!
607 (defconst listify-key-sequence-1 (logior 128 (read "?\\M-\\^@")))
609 (defun listify-key-sequence (key)
610 "Convert a key sequence to a list of events."
611 (if (vectorp key)
612 (append key nil)
613 (mapcar (function (lambda (c)
614 (if (> c 127)
615 (logxor c listify-key-sequence-1)
616 c)))
617 key)))
619 (defsubst eventp (obj)
620 "True if the argument is an event object."
621 (or (integerp obj)
622 (and (symbolp obj)
623 (get obj 'event-symbol-elements))
624 (and (consp obj)
625 (symbolp (car obj))
626 (get (car obj) 'event-symbol-elements))))
628 (defun event-modifiers (event)
629 "Returns a list of symbols representing the modifier keys in event EVENT.
630 The elements of the list may include `meta', `control',
631 `shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
632 and `down'."
633 (let ((type event))
634 (if (listp type)
635 (setq type (car type)))
636 (if (symbolp type)
637 (cdr (get type 'event-symbol-elements))
638 (let ((list nil))
639 (or (zerop (logand type ?\M-\^@))
640 (setq list (cons 'meta list)))
641 (or (and (zerop (logand type ?\C-\^@))
642 (>= (logand type 127) 32))
643 (setq list (cons 'control list)))
644 (or (and (zerop (logand type ?\S-\^@))
645 (= (logand type 255) (downcase (logand type 255))))
646 (setq list (cons 'shift list)))
647 (or (zerop (logand type ?\H-\^@))
648 (setq list (cons 'hyper list)))
649 (or (zerop (logand type ?\s-\^@))
650 (setq list (cons 'super list)))
651 (or (zerop (logand type ?\A-\^@))
652 (setq list (cons 'alt list)))
653 list))))
655 (defun event-basic-type (event)
656 "Returns the basic type of the given event (all modifiers removed).
657 The value is a printing character (not upper case) or a symbol."
658 (if (consp event)
659 (setq event (car event)))
660 (if (symbolp event)
661 (car (get event 'event-symbol-elements))
662 (let ((base (logand event (1- (lsh 1 18)))))
663 (downcase (if (< base 32) (logior base 64) base)))))
665 (defsubst mouse-movement-p (object)
666 "Return non-nil if OBJECT is a mouse movement event."
667 (and (consp object)
668 (eq (car object) 'mouse-movement)))
670 (defsubst event-start (event)
671 "Return the starting position of EVENT.
672 If EVENT is a mouse press or a mouse click, this returns the location
673 of the event.
674 If EVENT is a drag, this returns the drag's starting position.
675 The return value is of the form
676 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW))
677 The `posn-' functions access elements of such lists."
678 (if (consp event) (nth 1 event)
679 (list (selected-window) (point) '(0 . 0) 0)))
681 (defsubst event-end (event)
682 "Return the ending location of EVENT. EVENT should be a click or drag event.
683 If EVENT is a click event, this function is the same as `event-start'.
684 The return value is of the form
685 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW))
686 The `posn-' functions access elements of such lists."
687 (if (consp event) (nth (if (consp (nth 2 event)) 2 1) event)
688 (list (selected-window) (point) '(0 . 0) 0)))
690 (defsubst event-click-count (event)
691 "Return the multi-click count of EVENT, a click or drag event.
692 The return value is a positive integer."
693 (if (and (consp event) (integerp (nth 2 event))) (nth 2 event) 1))
695 (defsubst posn-window (position)
696 "Return the window in POSITION.
697 POSITION should be a list of the form returned by the `event-start'
698 and `event-end' functions."
699 (nth 0 position))
701 (defsubst posn-area (position)
702 "Return the window area recorded in POSITION, or nil for the text area.
703 POSITION should be a list of the form returned by the `event-start'
704 and `event-end' functions."
705 (let ((area (if (consp (nth 1 position))
706 (car (nth 1 position))
707 (nth 1 position))))
708 (and (symbolp area) area)))
710 (defsubst posn-point (position)
711 "Return the buffer location in POSITION.
712 POSITION should be a list of the form returned by the `event-start'
713 and `event-end' functions."
714 (or (nth 5 position)
715 (if (consp (nth 1 position))
716 (car (nth 1 position))
717 (nth 1 position))))
719 (defsubst posn-x-y (position)
720 "Return the x and y coordinates in POSITION.
721 POSITION should be a list of the form returned by the `event-start'
722 and `event-end' functions."
723 (nth 2 position))
725 (defun posn-col-row (position)
726 "Return the nominal column and row in POSITION, measured in characters.
727 The column and row values are approximations calculated from the x
728 and y coordinates in POSITION and the frame's default character width
729 and height.
730 For a scroll-bar event, the result column is 0, and the row
731 corresponds to the vertical position of the click in the scroll bar.
732 POSITION should be a list of the form returned by the `event-start'
733 and `event-end' functions."
734 (let* ((pair (posn-x-y position))
735 (window (posn-window position))
736 (area (posn-area position)))
737 (cond
738 ((null window)
739 '(0 . 0))
740 ((eq area 'vertical-scroll-bar)
741 (cons 0 (scroll-bar-scale pair (1- (window-height window)))))
742 ((eq area 'horizontal-scroll-bar)
743 (cons (scroll-bar-scale pair (window-width window)) 0))
745 (let* ((frame (if (framep window) window (window-frame window)))
746 (x (/ (car pair) (frame-char-width frame)))
747 (y (/ (cdr pair) (+ (frame-char-height frame)
748 (or (frame-parameter frame 'line-spacing)
749 default-line-spacing
750 0)))))
751 (cons x y))))))
753 (defun posn-actual-col-row (position)
754 "Return the actual column and row in POSITION, measured in characters.
755 These are the actual row number in the window and character number in that row.
756 Return nil if POSITION does not contain the actual position; in that case
757 `posn-col-row' can be used to get approximate values.
758 POSITION should be a list of the form returned by the `event-start'
759 and `event-end' functions."
760 (nth 6 position))
762 (defsubst posn-timestamp (position)
763 "Return the timestamp of POSITION.
764 POSITION should be a list of the form returned by the `event-start'
765 and `event-end' functions."
766 (nth 3 position))
768 (defsubst posn-object (position)
769 "Return the object of POSITION.
770 POSITION should be a list of the form returned by the `event-start'
771 and `event-end' functions."
772 (nth 4 position))
774 (defsubst posn-object-x-y (position)
775 "Return the x and y coordinates relative to the object of POSITION.
776 POSITION should be a list of the form returned by the `event-start'
777 and `event-end' functions."
778 (nth 7 position))
781 ;;;; Obsolescent names for functions.
783 (defalias 'dot 'point)
784 (defalias 'dot-marker 'point-marker)
785 (defalias 'dot-min 'point-min)
786 (defalias 'dot-max 'point-max)
787 (defalias 'window-dot 'window-point)
788 (defalias 'set-window-dot 'set-window-point)
789 (defalias 'read-input 'read-string)
790 (defalias 'send-string 'process-send-string)
791 (defalias 'send-region 'process-send-region)
792 (defalias 'show-buffer 'set-window-buffer)
793 (defalias 'buffer-flush-undo 'buffer-disable-undo)
794 (defalias 'eval-current-buffer 'eval-buffer)
795 (defalias 'compiled-function-p 'byte-code-function-p)
796 (defalias 'define-function 'defalias)
798 (defalias 'sref 'aref)
799 (make-obsolete 'sref 'aref "20.4")
800 (make-obsolete 'char-bytes "now always returns 1." "20.4")
801 (make-obsolete 'chars-in-region "use (abs (- BEG END))." "20.3")
802 (make-obsolete 'dot 'point "before 19.15")
803 (make-obsolete 'dot-max 'point-max "before 19.15")
804 (make-obsolete 'dot-min 'point-min "before 19.15")
805 (make-obsolete 'dot-marker 'point-marker "before 19.15")
806 (make-obsolete 'buffer-flush-undo 'buffer-disable-undo "before 19.15")
807 (make-obsolete 'baud-rate "use the baud-rate variable instead." "before 19.15")
808 (make-obsolete 'compiled-function-p 'byte-code-function-p "before 19.15")
809 (make-obsolete 'define-function 'defalias "20.1")
811 (defun insert-string (&rest args)
812 "Mocklisp-compatibility insert function.
813 Like the function `insert' except that any argument that is a number
814 is converted into a string by expressing it in decimal."
815 (dolist (el args)
816 (insert (if (integerp el) (number-to-string el) el))))
817 (make-obsolete 'insert-string 'insert "21.4")
818 (defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
819 (make-obsolete 'makehash 'make-hash-table "21.4")
821 ;; Some programs still use this as a function.
822 (defun baud-rate ()
823 "Return the value of the `baud-rate' variable."
824 baud-rate)
826 (defalias 'focus-frame 'ignore)
827 (defalias 'unfocus-frame 'ignore)
830 ;;;; Obsolescence declarations for variables.
832 (make-obsolete-variable 'directory-sep-char "do not use it." "21.1")
833 (make-obsolete-variable 'mode-line-inverse-video "use the appropriate faces instead." "21.1")
834 (make-obsolete-variable 'unread-command-char
835 "use `unread-command-events' instead. That variable is a list of events to reread, so it now uses nil to mean `no event', instead of -1."
836 "before 19.15")
837 (make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34")
838 (make-obsolete-variable 'post-command-idle-hook
839 "use timers instead, with `run-with-idle-timer'." "before 19.34")
840 (make-obsolete-variable 'post-command-idle-delay
841 "use timers instead, with `run-with-idle-timer'." "before 19.34")
844 ;;;; Alternate names for functions - these are not being phased out.
846 (defalias 'string= 'string-equal)
847 (defalias 'string< 'string-lessp)
848 (defalias 'move-marker 'set-marker)
849 (defalias 'rplaca 'setcar)
850 (defalias 'rplacd 'setcdr)
851 (defalias 'beep 'ding) ;preserve lingual purity
852 (defalias 'indent-to-column 'indent-to)
853 (defalias 'backward-delete-char 'delete-backward-char)
854 (defalias 'search-forward-regexp (symbol-function 're-search-forward))
855 (defalias 'search-backward-regexp (symbol-function 're-search-backward))
856 (defalias 'int-to-string 'number-to-string)
857 (defalias 'store-match-data 'set-match-data)
858 (defalias 'make-variable-frame-localizable 'make-variable-frame-local)
859 ;; These are the XEmacs names:
860 (defalias 'point-at-eol 'line-end-position)
861 (defalias 'point-at-bol 'line-beginning-position)
863 ;;; Should this be an obsolete name? If you decide it should, you get
864 ;;; to go through all the sources and change them.
865 (defalias 'string-to-int 'string-to-number)
867 ;;;; Hook manipulation functions.
869 (defun make-local-hook (hook)
870 "Make the hook HOOK local to the current buffer.
871 The return value is HOOK.
873 You never need to call this function now that `add-hook' does it for you
874 if its LOCAL argument is non-nil.
876 When a hook is local, its local and global values
877 work in concert: running the hook actually runs all the hook
878 functions listed in *either* the local value *or* the global value
879 of the hook variable.
881 This function works by making t a member of the buffer-local value,
882 which acts as a flag to run the hook functions in the default value as
883 well. This works for all normal hooks, but does not work for most
884 non-normal hooks yet. We will be changing the callers of non-normal
885 hooks so that they can handle localness; this has to be done one by
886 one.
888 This function does nothing if HOOK is already local in the current
889 buffer.
891 Do not use `make-local-variable' to make a hook variable buffer-local."
892 (if (local-variable-p hook)
894 (or (boundp hook) (set hook nil))
895 (make-local-variable hook)
896 (set hook (list t)))
897 hook)
898 (make-obsolete 'make-local-hook "not necessary any more." "21.1")
900 (defun add-hook (hook function &optional append local)
901 "Add to the value of HOOK the function FUNCTION.
902 FUNCTION is not added if already present.
903 FUNCTION is added (if necessary) at the beginning of the hook list
904 unless the optional argument APPEND is non-nil, in which case
905 FUNCTION is added at the end.
907 The optional fourth argument, LOCAL, if non-nil, says to modify
908 the hook's buffer-local value rather than its default value.
909 This makes the hook buffer-local if needed, and it makes t a member
910 of the buffer-local value. That acts as a flag to run the hook
911 functions in the default value as well as in the local value.
913 HOOK should be a symbol, and FUNCTION may be any valid function. If
914 HOOK is void, it is first set to nil. If HOOK's value is a single
915 function, it is changed to a list of functions."
916 (or (boundp hook) (set hook nil))
917 (or (default-boundp hook) (set-default hook nil))
918 (if local (unless (local-variable-if-set-p hook)
919 (set (make-local-variable hook) (list t)))
920 ;; Detect the case where make-local-variable was used on a hook
921 ;; and do what we used to do.
922 (unless (and (consp (symbol-value hook)) (memq t (symbol-value hook)))
923 (setq local t)))
924 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
925 ;; If the hook value is a single function, turn it into a list.
926 (when (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
927 (setq hook-value (list hook-value)))
928 ;; Do the actual addition if necessary
929 (unless (member function hook-value)
930 (setq hook-value
931 (if append
932 (append hook-value (list function))
933 (cons function hook-value))))
934 ;; Set the actual variable
935 (if local (set hook hook-value) (set-default hook hook-value))))
937 (defun remove-hook (hook function &optional local)
938 "Remove from the value of HOOK the function FUNCTION.
939 HOOK should be a symbol, and FUNCTION may be any valid function. If
940 FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
941 list of hooks to run in HOOK, then nothing is done. See `add-hook'.
943 The optional third argument, LOCAL, if non-nil, says to modify
944 the hook's buffer-local value rather than its default value."
945 (or (boundp hook) (set hook nil))
946 (or (default-boundp hook) (set-default hook nil))
947 ;; Do nothing if LOCAL is t but this hook has no local binding.
948 (unless (and local (not (local-variable-p hook)))
949 ;; Detect the case where make-local-variable was used on a hook
950 ;; and do what we used to do.
951 (when (and (local-variable-p hook)
952 (not (and (consp (symbol-value hook))
953 (memq t (symbol-value hook)))))
954 (setq local t))
955 (let ((hook-value (if local (symbol-value hook) (default-value hook))))
956 ;; Remove the function, for both the list and the non-list cases.
957 (if (or (not (listp hook-value)) (eq (car hook-value) 'lambda))
958 (if (equal hook-value function) (setq hook-value nil))
959 (setq hook-value (delete function (copy-sequence hook-value))))
960 ;; If the function is on the global hook, we need to shadow it locally
961 ;;(when (and local (member function (default-value hook))
962 ;; (not (member (cons 'not function) hook-value)))
963 ;; (push (cons 'not function) hook-value))
964 ;; Set the actual variable
965 (if (not local)
966 (set-default hook hook-value)
967 (if (equal hook-value '(t))
968 (kill-local-variable hook)
969 (set hook hook-value))))))
971 (defun add-to-list (list-var element &optional append)
972 "Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
973 The test for presence of ELEMENT is done with `equal'.
974 If ELEMENT is added, it is added at the beginning of the list,
975 unless the optional argument APPEND is non-nil, in which case
976 ELEMENT is added at the end.
978 The return value is the new value of LIST-VAR.
980 If you want to use `add-to-list' on a variable that is not defined
981 until a certain package is loaded, you should put the call to `add-to-list'
982 into a hook function that will be run only after loading the package.
983 `eval-after-load' provides one way to do this. In some cases
984 other hooks, such as major mode hooks, can do the job."
985 (if (member element (symbol-value list-var))
986 (symbol-value list-var)
987 (set list-var
988 (if append
989 (append (symbol-value list-var) (list element))
990 (cons element (symbol-value list-var))))))
993 ;;; Load history
995 ;;; (defvar symbol-file-load-history-loaded nil
996 ;;; "Non-nil means we have loaded the file `fns-VERSION.el' in `exec-directory'.
997 ;;; That file records the part of `load-history' for preloaded files,
998 ;;; which is cleared out before dumping to make Emacs smaller.")
1000 ;;; (defun load-symbol-file-load-history ()
1001 ;;; "Load the file `fns-VERSION.el' in `exec-directory' if not already done.
1002 ;;; That file records the part of `load-history' for preloaded files,
1003 ;;; which is cleared out before dumping to make Emacs smaller."
1004 ;;; (unless symbol-file-load-history-loaded
1005 ;;; (load (expand-file-name
1006 ;;; ;; fns-XX.YY.ZZ.el does not work on DOS filesystem.
1007 ;;; (if (eq system-type 'ms-dos)
1008 ;;; "fns.el"
1009 ;;; (format "fns-%s.el" emacs-version))
1010 ;;; exec-directory)
1011 ;;; ;; The file name fns-%s.el already has a .el extension.
1012 ;;; nil nil t)
1013 ;;; (setq symbol-file-load-history-loaded t)))
1015 (defun symbol-file (function)
1016 "Return the input source from which FUNCTION was loaded.
1017 The value is normally a string that was passed to `load':
1018 either an absolute file name, or a library name
1019 \(with no directory name and no `.el' or `.elc' at the end).
1020 It can also be nil, if the definition is not associated with any file."
1021 (if (and (symbolp function) (fboundp function)
1022 (eq 'autoload (car-safe (symbol-function function))))
1023 (nth 1 (symbol-function function))
1024 (let ((files load-history)
1025 file)
1026 (while files
1027 (if (member function (cdr (car files)))
1028 (setq file (car (car files)) files nil))
1029 (setq files (cdr files)))
1030 file)))
1033 ;;;; Specifying things to do after certain files are loaded.
1035 (defun eval-after-load (file form)
1036 "Arrange that, if FILE is ever loaded, FORM will be run at that time.
1037 This makes or adds to an entry on `after-load-alist'.
1038 If FILE is already loaded, evaluate FORM right now.
1039 It does nothing if FORM is already on the list for FILE.
1040 FILE must match exactly. Normally FILE is the name of a library,
1041 with no directory or extension specified, since that is how `load'
1042 is normally called.
1043 FILE can also be a feature (i.e. a symbol), in which case FORM is
1044 evaluated whenever that feature is `provide'd."
1045 (let ((elt (assoc file after-load-alist)))
1046 ;; Make sure there is an element for FILE.
1047 (unless elt (setq elt (list file)) (push elt after-load-alist))
1048 ;; Add FORM to the element if it isn't there.
1049 (unless (member form (cdr elt))
1050 (nconc elt (list form))
1051 ;; If the file has been loaded already, run FORM right away.
1052 (if (if (symbolp file)
1053 (featurep file)
1054 ;; Make sure `load-history' contains the files dumped with
1055 ;; Emacs for the case that FILE is one of them.
1056 ;; (load-symbol-file-load-history)
1057 (assoc file load-history))
1058 (eval form))))
1059 form)
1061 (defun eval-next-after-load (file)
1062 "Read the following input sexp, and run it whenever FILE is loaded.
1063 This makes or adds to an entry on `after-load-alist'.
1064 FILE should be the name of a library, with no directory name."
1065 (eval-after-load file (read)))
1067 ;;; make-network-process wrappers
1069 (if (featurep 'make-network-process)
1070 (progn
1072 (defun open-network-stream (name buffer host service)
1073 "Open a TCP connection for a service to a host.
1074 Returns a subprocess-object to represent the connection.
1075 Input and output work as for subprocesses; `delete-process' closes it.
1076 Args are NAME BUFFER HOST SERVICE.
1077 NAME is name for process. It is modified if necessary to make it unique.
1078 BUFFER is the buffer (or buffer-name) to associate with the process.
1079 Process output goes at end of that buffer, unless you specify
1080 an output stream or filter function to handle the output.
1081 BUFFER may be also nil, meaning that this process is not associated
1082 with any buffer
1083 Third arg is name of the host to connect to, or its IP address.
1084 Fourth arg SERVICE is name of the service desired, or an integer
1085 specifying a port number to connect to."
1086 (make-network-process :name name :buffer buffer
1087 :host host :service service))
1089 (defun open-network-stream-nowait (name buffer host service &optional sentinel filter)
1090 "Initiate connection to a TCP connection for a service to a host.
1091 It returns nil if non-blocking connects are not supported; otherwise,
1092 it returns a subprocess-object to represent the connection.
1094 This function is similar to `open-network-stream', except that this
1095 function returns before the connection is established. When the
1096 connection is completed, the sentinel function will be called with
1097 second arg matching `open' (if successful) or `failed' (on error).
1099 Args are NAME BUFFER HOST SERVICE SENTINEL FILTER.
1100 NAME, BUFFER, HOST, and SERVICE are as for `open-network-stream'.
1101 Optional args, SENTINEL and FILTER specifies the sentinel and filter
1102 functions to be used for this network stream."
1103 (if (featurep 'make-network-process '(:nowait t))
1104 (make-network-process :name name :buffer buffer :nowait t
1105 :host host :service service
1106 :filter filter :sentinel sentinel)))
1108 (defun open-network-stream-server (name buffer service &optional sentinel filter)
1109 "Create a network server process for a TCP service.
1110 It returns nil if server processes are not supported; otherwise,
1111 it returns a subprocess-object to represent the server.
1113 When a client connects to the specified service, a new subprocess
1114 is created to handle the new connection, and the sentinel function
1115 is called for the new process.
1117 Args are NAME BUFFER SERVICE SENTINEL FILTER.
1118 NAME is name for the server process. Client processes are named by
1119 appending the ip-address and port number of the client to NAME.
1120 BUFFER is the buffer (or buffer-name) to associate with the server
1121 process. Client processes will not get a buffer if a process filter
1122 is specified or BUFFER is nil; otherwise, a new buffer is created for
1123 the client process. The name is similar to the process name.
1124 Third arg SERVICE is name of the service desired, or an integer
1125 specifying a port number to connect to. It may also be t to selected
1126 an unused port number for the server.
1127 Optional args, SENTINEL and FILTER specifies the sentinel and filter
1128 functions to be used for the client processes; the server process
1129 does not use these function."
1130 (if (featurep 'make-network-process '(:server t))
1131 (make-network-process :name name :buffer buffer
1132 :service service :server t :noquery t
1133 :sentinel sentinel :filter filter)))
1135 )) ;; (featurep 'make-network-process)
1138 ;; compatibility
1140 (defun process-kill-without-query (process &optional flag)
1141 "Say no query needed if PROCESS is running when Emacs is exited.
1142 Optional second argument if non-nil says to require a query.
1143 Value is t if a query was formerly required.
1144 New code should not use this function; use `process-query-on-exit-flag'
1145 or `set-process-query-on-exit-flag' instead."
1146 (let ((old (process-query-on-exit-flag process)))
1147 (set-process-query-on-exit-flag process nil)
1148 old))
1150 ;; process plist management
1152 (defun process-get (process propname)
1153 "Return the value of PROCESS' PROPNAME property.
1154 This is the last value stored with `(process-put PROCESS PROPNAME VALUE)'."
1155 (plist-get (process-plist process) propname))
1157 (defun process-put (process propname value)
1158 "Change PROCESS' PROPNAME property to VALUE.
1159 It can be retrieved with `(process-get PROCESS PROPNAME)'."
1160 (set-process-plist process
1161 (plist-put (process-plist process) propname value)))
1164 ;;;; Input and display facilities.
1166 (defvar read-quoted-char-radix 8
1167 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
1168 Legitimate radix values are 8, 10 and 16.")
1170 (custom-declare-variable-early
1171 'read-quoted-char-radix 8
1172 "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
1173 Legitimate radix values are 8, 10 and 16."
1174 :type '(choice (const 8) (const 10) (const 16))
1175 :group 'editing-basics)
1177 (defun read-quoted-char (&optional prompt)
1178 "Like `read-char', but do not allow quitting.
1179 Also, if the first character read is an octal digit,
1180 we read any number of octal digits and return the
1181 specified character code. Any nondigit terminates the sequence.
1182 If the terminator is RET, it is discarded;
1183 any other terminator is used itself as input.
1185 The optional argument PROMPT specifies a string to use to prompt the user.
1186 The variable `read-quoted-char-radix' controls which radix to use
1187 for numeric input."
1188 (let ((message-log-max nil) done (first t) (code 0) char translated)
1189 (while (not done)
1190 (let ((inhibit-quit first)
1191 ;; Don't let C-h get the help message--only help function keys.
1192 (help-char nil)
1193 (help-form
1194 "Type the special character you want to use,
1195 or the octal character code.
1196 RET terminates the character code and is discarded;
1197 any other non-digit terminates the character code and is then used as input."))
1198 (setq char (read-event (and prompt (format "%s-" prompt)) t))
1199 (if inhibit-quit (setq quit-flag nil)))
1200 ;; Translate TAB key into control-I ASCII character, and so on.
1201 ;; Note: `read-char' does it using the `ascii-character' property.
1202 ;; We could try and use read-key-sequence instead, but then C-q ESC
1203 ;; or C-q C-x might not return immediately since ESC or C-x might be
1204 ;; bound to some prefix in function-key-map or key-translation-map.
1205 (setq translated char)
1206 (let ((translation (lookup-key function-key-map (vector char))))
1207 (if (arrayp translation)
1208 (setq translated (aref translation 0))))
1209 (cond ((null translated))
1210 ((not (integerp translated))
1211 (setq unread-command-events (list char)
1212 done t))
1213 ((/= (logand translated ?\M-\^@) 0)
1214 ;; Turn a meta-character into a character with the 0200 bit set.
1215 (setq code (logior (logand translated (lognot ?\M-\^@)) 128)
1216 done t))
1217 ((and (<= ?0 translated) (< translated (+ ?0 (min 10 read-quoted-char-radix))))
1218 (setq code (+ (* code read-quoted-char-radix) (- translated ?0)))
1219 (and prompt (setq prompt (message "%s %c" prompt translated))))
1220 ((and (<= ?a (downcase translated))
1221 (< (downcase translated) (+ ?a -10 (min 36 read-quoted-char-radix))))
1222 (setq code (+ (* code read-quoted-char-radix)
1223 (+ 10 (- (downcase translated) ?a))))
1224 (and prompt (setq prompt (message "%s %c" prompt translated))))
1225 ((and (not first) (eq translated ?\C-m))
1226 (setq done t))
1227 ((not first)
1228 (setq unread-command-events (list char)
1229 done t))
1230 (t (setq code translated
1231 done t)))
1232 (setq first nil))
1233 code))
1235 (defun read-passwd (prompt &optional confirm default)
1236 "Read a password, prompting with PROMPT. Echo `.' for each character typed.
1237 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line.
1238 Optional argument CONFIRM, if non-nil, then read it twice to make sure.
1239 Optional DEFAULT is a default password to use instead of empty input."
1240 (if confirm
1241 (let (success)
1242 (while (not success)
1243 (let ((first (read-passwd prompt nil default))
1244 (second (read-passwd "Confirm password: " nil default)))
1245 (if (equal first second)
1246 (progn
1247 (and (arrayp second) (clear-string second))
1248 (setq success first))
1249 (and (arrayp first) (clear-string first))
1250 (and (arrayp second) (clear-string second))
1251 (message "Password not repeated accurately; please start over")
1252 (sit-for 1))))
1253 success)
1254 (let ((pass nil)
1255 (c 0)
1256 (echo-keystrokes 0)
1257 (cursor-in-echo-area t))
1258 (while (progn (message "%s%s"
1259 prompt
1260 (make-string (length pass) ?.))
1261 (setq c (read-char-exclusive nil t))
1262 (and (/= c ?\r) (/= c ?\n) (/= c ?\e)))
1263 (clear-this-command-keys)
1264 (if (= c ?\C-u)
1265 (progn
1266 (and (arrayp pass) (clear-string pass))
1267 (setq pass ""))
1268 (if (and (/= c ?\b) (/= c ?\177))
1269 (let* ((new-char (char-to-string c))
1270 (new-pass (concat pass new-char)))
1271 (and (arrayp pass) (clear-string pass))
1272 (clear-string new-char)
1273 (setq c ?\0)
1274 (setq pass new-pass))
1275 (if (> (length pass) 0)
1276 (let ((new-pass (substring pass 0 -1)))
1277 (and (arrayp pass) (clear-string pass))
1278 (setq pass new-pass))))))
1279 (message nil)
1280 (or pass default ""))))
1282 ;;; Atomic change groups.
1284 (defmacro atomic-change-group (&rest body)
1285 "Perform BODY as an atomic change group.
1286 This means that if BODY exits abnormally,
1287 all of its changes to the current buffer are undone.
1288 This works regardless of whether undo is enabled in the buffer.
1290 This mechanism is transparent to ordinary use of undo;
1291 if undo is enabled in the buffer and BODY succeeds, the
1292 user can undo the change normally."
1293 (let ((handle (make-symbol "--change-group-handle--"))
1294 (success (make-symbol "--change-group-success--")))
1295 `(let ((,handle (prepare-change-group))
1296 (,success nil))
1297 (unwind-protect
1298 (progn
1299 ;; This is inside the unwind-protect because
1300 ;; it enables undo if that was disabled; we need
1301 ;; to make sure that it gets disabled again.
1302 (activate-change-group ,handle)
1303 ,@body
1304 (setq ,success t))
1305 ;; Either of these functions will disable undo
1306 ;; if it was disabled before.
1307 (if ,success
1308 (accept-change-group ,handle)
1309 (cancel-change-group ,handle))))))
1311 (defun prepare-change-group (&optional buffer)
1312 "Return a handle for the current buffer's state, for a change group.
1313 If you specify BUFFER, make a handle for BUFFER's state instead.
1315 Pass the handle to `activate-change-group' afterward to initiate
1316 the actual changes of the change group.
1318 To finish the change group, call either `accept-change-group' or
1319 `cancel-change-group' passing the same handle as argument. Call
1320 `accept-change-group' to accept the changes in the group as final;
1321 call `cancel-change-group' to undo them all. You should use
1322 `unwind-protect' to make sure the group is always finished. The call
1323 to `activate-change-group' should be inside the `unwind-protect'.
1324 Once you finish the group, don't use the handle again--don't try to
1325 finish the same group twice. For a simple example of correct use, see
1326 the source code of `atomic-change-group'.
1328 The handle records only the specified buffer. To make a multibuffer
1329 change group, call this function once for each buffer you want to
1330 cover, then use `nconc' to combine the returned values, like this:
1332 (nconc (prepare-change-group buffer-1)
1333 (prepare-change-group buffer-2))
1335 You can then activate that multibuffer change group with a single
1336 call to `activate-change-group' and finish it with a single call
1337 to `accept-change-group' or `cancel-change-group'."
1339 (if buffer
1340 (list (cons buffer (with-current-buffer buffer buffer-undo-list)))
1341 (list (cons (current-buffer) buffer-undo-list))))
1343 (defun activate-change-group (handle)
1344 "Activate a change group made with `prepare-change-group' (which see)."
1345 (dolist (elt handle)
1346 (with-current-buffer (car elt)
1347 (if (eq buffer-undo-list t)
1348 (setq buffer-undo-list nil)))))
1350 (defun accept-change-group (handle)
1351 "Finish a change group made with `prepare-change-group' (which see).
1352 This finishes the change group by accepting its changes as final."
1353 (dolist (elt handle)
1354 (with-current-buffer (car elt)
1355 (if (eq elt t)
1356 (setq buffer-undo-list t)))))
1358 (defun cancel-change-group (handle)
1359 "Finish a change group made with `prepare-change-group' (which see).
1360 This finishes the change group by reverting all of its changes."
1361 (dolist (elt handle)
1362 (with-current-buffer (car elt)
1363 (setq elt (cdr elt))
1364 (let ((old-car
1365 (if (consp elt) (car elt)))
1366 (old-cdr
1367 (if (consp elt) (cdr elt))))
1368 ;; Temporarily truncate the undo log at ELT.
1369 (when (consp elt)
1370 (setcar elt nil) (setcdr elt nil))
1371 (unless (eq last-command 'undo) (undo-start))
1372 ;; Make sure there's no confusion.
1373 (when (and (consp elt) (not (eq elt (last pending-undo-list))))
1374 (error "Undoing to some unrelated state"))
1375 ;; Undo it all.
1376 (while pending-undo-list (undo-more 1))
1377 ;; Reset the modified cons cell ELT to its original content.
1378 (when (consp elt)
1379 (setcar elt old-car)
1380 (setcdr elt old-cdr))
1381 ;; Revert the undo info to what it was when we grabbed the state.
1382 (setq buffer-undo-list elt)))))
1384 ;; For compatibility.
1385 (defalias 'redraw-modeline 'force-mode-line-update)
1387 (defun force-mode-line-update (&optional all)
1388 "Force redisplay of the current buffer's mode line and header line.
1389 With optional non-nil ALL, force redisplay of all mode lines and
1390 header lines. This function also forces recomputation of the
1391 menu bar menus and the frame title."
1392 (if all (save-excursion (set-buffer (other-buffer))))
1393 (set-buffer-modified-p (buffer-modified-p)))
1395 (defun momentary-string-display (string pos &optional exit-char message)
1396 "Momentarily display STRING in the buffer at POS.
1397 Display remains until next character is typed.
1398 If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
1399 otherwise it is then available as input (as a command if nothing else).
1400 Display MESSAGE (optional fourth arg) in the echo area.
1401 If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
1402 (or exit-char (setq exit-char ?\ ))
1403 (let ((inhibit-read-only t)
1404 ;; Don't modify the undo list at all.
1405 (buffer-undo-list t)
1406 (modified (buffer-modified-p))
1407 (name buffer-file-name)
1408 insert-end)
1409 (unwind-protect
1410 (progn
1411 (save-excursion
1412 (goto-char pos)
1413 ;; defeat file locking... don't try this at home, kids!
1414 (setq buffer-file-name nil)
1415 (insert-before-markers string)
1416 (setq insert-end (point))
1417 ;; If the message end is off screen, recenter now.
1418 (if (< (window-end nil t) insert-end)
1419 (recenter (/ (window-height) 2)))
1420 ;; If that pushed message start off the screen,
1421 ;; scroll to start it at the top of the screen.
1422 (move-to-window-line 0)
1423 (if (> (point) pos)
1424 (progn
1425 (goto-char pos)
1426 (recenter 0))))
1427 (message (or message "Type %s to continue editing.")
1428 (single-key-description exit-char))
1429 (let ((char (read-event)))
1430 (or (eq char exit-char)
1431 (setq unread-command-events (list char)))))
1432 (if insert-end
1433 (save-excursion
1434 (delete-region pos insert-end)))
1435 (setq buffer-file-name name)
1436 (set-buffer-modified-p modified))))
1439 ;;;; Overlay operations
1441 (defun copy-overlay (o)
1442 "Return a copy of overlay O."
1443 (let ((o1 (make-overlay (overlay-start o) (overlay-end o)
1444 ;; FIXME: there's no easy way to find the
1445 ;; insertion-type of the two markers.
1446 (overlay-buffer o)))
1447 (props (overlay-properties o)))
1448 (while props
1449 (overlay-put o1 (pop props) (pop props)))
1450 o1))
1452 (defun remove-overlays (beg end name val)
1453 "Clear BEG and END of overlays whose property NAME has value VAL.
1454 Overlays might be moved and or split."
1455 (if (< end beg)
1456 (setq beg (prog1 end (setq end beg))))
1457 (save-excursion
1458 (dolist (o (overlays-in beg end))
1459 (when (eq (overlay-get o name) val)
1460 ;; Either push this overlay outside beg...end
1461 ;; or split it to exclude beg...end
1462 ;; or delete it entirely (if it is contained in beg...end).
1463 (if (< (overlay-start o) beg)
1464 (if (> (overlay-end o) end)
1465 (progn
1466 (move-overlay (copy-overlay o)
1467 (overlay-start o) beg)
1468 (move-overlay o end (overlay-end o)))
1469 (move-overlay o (overlay-start o) beg))
1470 (if (> (overlay-end o) end)
1471 (move-overlay o end (overlay-end o))
1472 (delete-overlay o)))))))
1474 ;;;; Miscellanea.
1476 ;; A number of major modes set this locally.
1477 ;; Give it a global value to avoid compiler warnings.
1478 (defvar font-lock-defaults nil)
1480 (defvar suspend-hook nil
1481 "Normal hook run by `suspend-emacs', before suspending.")
1483 (defvar suspend-resume-hook nil
1484 "Normal hook run by `suspend-emacs', after Emacs is continued.")
1486 (defvar temp-buffer-show-hook nil
1487 "Normal hook run by `with-output-to-temp-buffer' after displaying the buffer.
1488 When the hook runs, the temporary buffer is current, and the window it
1489 was displayed in is selected. This hook is normally set up with a
1490 function to make the buffer read only, and find function names and
1491 variable names in it, provided the major mode is still Help mode.")
1493 (defvar temp-buffer-setup-hook nil
1494 "Normal hook run by `with-output-to-temp-buffer' at the start.
1495 When the hook runs, the temporary buffer is current.
1496 This hook is normally set up with a function to put the buffer in Help
1497 mode.")
1499 ;; Avoid compiler warnings about this variable,
1500 ;; which has a special meaning on certain system types.
1501 (defvar buffer-file-type nil
1502 "Non-nil if the visited file is a binary file.
1503 This variable is meaningful on MS-DOG and Windows NT.
1504 On those systems, it is automatically local in every buffer.
1505 On other systems, this variable is normally always nil.")
1507 ;; This should probably be written in C (i.e., without using `walk-windows').
1508 (defun get-buffer-window-list (buffer &optional minibuf frame)
1509 "Return windows currently displaying BUFFER, or nil if none.
1510 See `walk-windows' for the meaning of MINIBUF and FRAME."
1511 (let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows)
1512 (walk-windows (function (lambda (window)
1513 (if (eq (window-buffer window) buffer)
1514 (setq windows (cons window windows)))))
1515 minibuf frame)
1516 windows))
1518 (defun ignore (&rest ignore)
1519 "Do nothing and return nil.
1520 This function accepts any number of arguments, but ignores them."
1521 (interactive)
1522 nil)
1524 (defun error (&rest args)
1525 "Signal an error, making error message by passing all args to `format'.
1526 In Emacs, the convention is that error messages start with a capital
1527 letter but *do not* end with a period. Please follow this convention
1528 for the sake of consistency."
1529 (while t
1530 (signal 'error (list (apply 'format args)))))
1532 (defalias 'user-original-login-name 'user-login-name)
1534 (defvar yank-excluded-properties)
1536 (defun remove-yank-excluded-properties (start end)
1537 "Remove `yank-excluded-properties' between START and END positions.
1538 Replaces `category' properties with their defined properties."
1539 (let ((inhibit-read-only t))
1540 ;; Replace any `category' property with the properties it stands for.
1541 (unless (memq yank-excluded-properties '(t nil))
1542 (save-excursion
1543 (goto-char start)
1544 (while (< (point) end)
1545 (let ((cat (get-text-property (point) 'category))
1546 run-end)
1547 (setq run-end
1548 (next-single-property-change (point) 'category nil end))
1549 (when cat
1550 (let (run-end2 original)
1551 (remove-list-of-text-properties (point) run-end '(category))
1552 (while (< (point) run-end)
1553 (setq run-end2 (next-property-change (point) nil run-end))
1554 (setq original (text-properties-at (point)))
1555 (set-text-properties (point) run-end2 (symbol-plist cat))
1556 (add-text-properties (point) run-end2 original)
1557 (goto-char run-end2))))
1558 (goto-char run-end)))))
1559 (if (eq yank-excluded-properties t)
1560 (set-text-properties start end nil)
1561 (remove-list-of-text-properties start end yank-excluded-properties))))
1563 (defvar yank-undo-function)
1565 (defun insert-for-yank (string)
1566 "Insert STRING at point, stripping some text properties.
1567 Strip text properties from the inserted text according to
1568 `yank-excluded-properties'. Otherwise just like (insert STRING).
1570 If STRING has a non-nil `yank-handler' property on the first character,
1571 the normal insert behaviour is modified in various ways. The value of
1572 the yank-handler property must be a list with one to five elements
1573 with the following format: (FUNCTION PARAM NOEXCLUDE UNDO).
1574 When FUNCTION is present and non-nil, it is called instead of `insert'
1575 to insert the string. FUNCTION takes one argument--the object to insert.
1576 If PARAM is present and non-nil, it replaces STRING as the object
1577 passed to FUNCTION (or `insert'); for example, if FUNCTION is
1578 `yank-rectangle', PARAM may be a list of strings to insert as a
1579 rectangle.
1580 If NOEXCLUDE is present and non-nil, the normal removal of the
1581 yank-excluded-properties is not performed; instead FUNCTION is
1582 responsible for removing those properties. This may be necessary
1583 if FUNCTION adjusts point before or after inserting the object.
1584 If UNDO is present and non-nil, it is a function that will be called
1585 by `yank-pop' to undo the insertion of the current object. It is
1586 called with two arguments, the start and end of the current region.
1587 FUNCTION may set `yank-undo-function' to override the UNDO value."
1588 (let* ((handler (and (stringp string)
1589 (get-text-property 0 'yank-handler string)))
1590 (param (or (nth 1 handler) string))
1591 (opoint (point)))
1592 (setq yank-undo-function t)
1593 (if (nth 0 handler) ;; FUNCTION
1594 (funcall (car handler) param)
1595 (insert param))
1596 (unless (nth 2 handler) ;; NOEXCLUDE
1597 (remove-yank-excluded-properties opoint (point)))
1598 (if (eq yank-undo-function t) ;; not set by FUNCTION
1599 (setq yank-undo-function (nth 3 handler))) ;; UNDO
1600 (if (nth 4 handler) ;; COMMAND
1601 (setq this-command (nth 4 handler)))))
1603 (defun insert-buffer-substring-no-properties (buf &optional start end)
1604 "Insert before point a substring of buffer BUFFER, without text properties.
1605 BUFFER may be a buffer or a buffer name.
1606 Arguments START and END are character numbers specifying the substring.
1607 They default to the beginning and the end of BUFFER."
1608 (let ((opoint (point)))
1609 (insert-buffer-substring buf start end)
1610 (let ((inhibit-read-only t))
1611 (set-text-properties opoint (point) nil))))
1613 (defun insert-buffer-substring-as-yank (buf &optional start end)
1614 "Insert before point a part of buffer BUFFER, stripping some text properties.
1615 BUFFER may be a buffer or a buffer name. Arguments START and END are
1616 character numbers specifying the substring. They default to the
1617 beginning and the end of BUFFER. Strip text properties from the
1618 inserted text according to `yank-excluded-properties'."
1619 ;; Since the buffer text should not normally have yank-handler properties,
1620 ;; there is no need to handle them here.
1621 (let ((opoint (point)))
1622 (insert-buffer-substring buf start end)
1623 (remove-yank-excluded-properties opoint (point))))
1626 ;; Synchronous shell commands.
1628 (defun start-process-shell-command (name buffer &rest args)
1629 "Start a program in a subprocess. Return the process object for it.
1630 Args are NAME BUFFER COMMAND &rest COMMAND-ARGS.
1631 NAME is name for process. It is modified if necessary to make it unique.
1632 BUFFER is the buffer or (buffer-name) to associate with the process.
1633 Process output goes at end of that buffer, unless you specify
1634 an output stream or filter function to handle the output.
1635 BUFFER may be also nil, meaning that this process is not associated
1636 with any buffer
1637 Third arg is command name, the name of a shell command.
1638 Remaining arguments are the arguments for the command.
1639 Wildcards and redirection are handled as usual in the shell."
1640 (cond
1641 ((eq system-type 'vax-vms)
1642 (apply 'start-process name buffer args))
1643 ;; We used to use `exec' to replace the shell with the command,
1644 ;; but that failed to handle (...) and semicolon, etc.
1646 (start-process name buffer shell-file-name shell-command-switch
1647 (mapconcat 'identity args " ")))))
1649 (defun call-process-shell-command (command &optional infile buffer display
1650 &rest args)
1651 "Execute the shell command COMMAND synchronously in separate process.
1652 The remaining arguments are optional.
1653 The program's input comes from file INFILE (nil means `/dev/null').
1654 Insert output in BUFFER before point; t means current buffer;
1655 nil for BUFFER means discard it; 0 means discard and don't wait.
1656 BUFFER can also have the form (REAL-BUFFER STDERR-FILE); in that case,
1657 REAL-BUFFER says what to do with standard output, as above,
1658 while STDERR-FILE says what to do with standard error in the child.
1659 STDERR-FILE may be nil (discard standard error output),
1660 t (mix it with ordinary output), or a file name string.
1662 Fourth arg DISPLAY non-nil means redisplay buffer as output is inserted.
1663 Remaining arguments are strings passed as additional arguments for COMMAND.
1664 Wildcards and redirection are handled as usual in the shell.
1666 If BUFFER is 0, `call-process-shell-command' returns immediately with value nil.
1667 Otherwise it waits for COMMAND to terminate and returns a numeric exit
1668 status or a signal description string.
1669 If you quit, the process is killed with SIGINT, or SIGKILL if you quit again."
1670 (cond
1671 ((eq system-type 'vax-vms)
1672 (apply 'call-process command infile buffer display args))
1673 ;; We used to use `exec' to replace the shell with the command,
1674 ;; but that failed to handle (...) and semicolon, etc.
1676 (call-process shell-file-name
1677 infile buffer display
1678 shell-command-switch
1679 (mapconcat 'identity (cons command args) " ")))))
1681 (defmacro with-current-buffer (buffer &rest body)
1682 "Execute the forms in BODY with BUFFER as the current buffer.
1683 The value returned is the value of the last form in BODY.
1684 See also `with-temp-buffer'."
1685 (declare (indent 1) (debug t))
1686 `(save-current-buffer
1687 (set-buffer ,buffer)
1688 ,@body))
1690 (defmacro with-selected-window (window &rest body)
1691 "Execute the forms in BODY with WINDOW as the selected window.
1692 The value returned is the value of the last form in BODY.
1693 This does not alter the buffer list ordering.
1694 See also `with-temp-buffer'."
1695 (declare (indent 1) (debug t))
1696 ;; Most of this code is a copy of save-selected-window.
1697 `(let ((save-selected-window-window (selected-window))
1698 (save-selected-window-alist
1699 (mapcar (lambda (frame) (list frame (frame-selected-window frame)))
1700 (frame-list))))
1701 (unwind-protect
1702 (progn (select-window ,window 'norecord)
1703 ,@body)
1704 (dolist (elt save-selected-window-alist)
1705 (and (frame-live-p (car elt))
1706 (window-live-p (cadr elt))
1707 (set-frame-selected-window (car elt) (cadr elt))))
1708 (if (window-live-p save-selected-window-window)
1709 ;; This is where the code differs from save-selected-window.
1710 (select-window save-selected-window-window 'norecord)))))
1712 (defmacro with-temp-file (file &rest body)
1713 "Create a new buffer, evaluate BODY there, and write the buffer to FILE.
1714 The value returned is the value of the last form in BODY.
1715 See also `with-temp-buffer'."
1716 (declare (debug t))
1717 (let ((temp-file (make-symbol "temp-file"))
1718 (temp-buffer (make-symbol "temp-buffer")))
1719 `(let ((,temp-file ,file)
1720 (,temp-buffer
1721 (get-buffer-create (generate-new-buffer-name " *temp file*"))))
1722 (unwind-protect
1723 (prog1
1724 (with-current-buffer ,temp-buffer
1725 ,@body)
1726 (with-current-buffer ,temp-buffer
1727 (widen)
1728 (write-region (point-min) (point-max) ,temp-file nil 0)))
1729 (and (buffer-name ,temp-buffer)
1730 (kill-buffer ,temp-buffer))))))
1732 (defmacro with-temp-message (message &rest body)
1733 "Display MESSAGE temporarily if non-nil while BODY is evaluated.
1734 The original message is restored to the echo area after BODY has finished.
1735 The value returned is the value of the last form in BODY.
1736 MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
1737 If MESSAGE is nil, the echo area and message log buffer are unchanged.
1738 Use a MESSAGE of \"\" to temporarily clear the echo area."
1739 (declare (debug t))
1740 (let ((current-message (make-symbol "current-message"))
1741 (temp-message (make-symbol "with-temp-message")))
1742 `(let ((,temp-message ,message)
1743 (,current-message))
1744 (unwind-protect
1745 (progn
1746 (when ,temp-message
1747 (setq ,current-message (current-message))
1748 (message "%s" ,temp-message))
1749 ,@body)
1750 (and ,temp-message
1751 (if ,current-message
1752 (message "%s" ,current-message)
1753 (message nil)))))))
1755 (defmacro with-temp-buffer (&rest body)
1756 "Create a temporary buffer, and evaluate BODY there like `progn'.
1757 See also `with-temp-file' and `with-output-to-string'."
1758 (declare (indent 0) (debug t))
1759 (let ((temp-buffer (make-symbol "temp-buffer")))
1760 `(let ((,temp-buffer
1761 (get-buffer-create (generate-new-buffer-name " *temp*"))))
1762 (unwind-protect
1763 (with-current-buffer ,temp-buffer
1764 ,@body)
1765 (and (buffer-name ,temp-buffer)
1766 (kill-buffer ,temp-buffer))))))
1768 (defmacro with-output-to-string (&rest body)
1769 "Execute BODY, return the text it sent to `standard-output', as a string."
1770 (declare (indent 0) (debug t))
1771 `(let ((standard-output
1772 (get-buffer-create (generate-new-buffer-name " *string-output*"))))
1773 (let ((standard-output standard-output))
1774 ,@body)
1775 (with-current-buffer standard-output
1776 (prog1
1777 (buffer-string)
1778 (kill-buffer nil)))))
1780 (defmacro with-local-quit (&rest body)
1781 "Execute BODY with `inhibit-quit' temporarily bound to nil."
1782 (declare (debug t) (indent 0))
1783 `(condition-case nil
1784 (let ((inhibit-quit nil))
1785 ,@body)
1786 (quit (setq quit-flag t))))
1788 (defmacro combine-after-change-calls (&rest body)
1789 "Execute BODY, but don't call the after-change functions till the end.
1790 If BODY makes changes in the buffer, they are recorded
1791 and the functions on `after-change-functions' are called several times
1792 when BODY is finished.
1793 The return value is the value of the last form in BODY.
1795 If `before-change-functions' is non-nil, then calls to the after-change
1796 functions can't be deferred, so in that case this macro has no effect.
1798 Do not alter `after-change-functions' or `before-change-functions'
1799 in BODY."
1800 (declare (indent 0) (debug t))
1801 `(unwind-protect
1802 (let ((combine-after-change-calls t))
1803 . ,body)
1804 (combine-after-change-execute)))
1807 (defvar delay-mode-hooks nil
1808 "If non-nil, `run-mode-hooks' should delay running the hooks.")
1809 (defvar delayed-mode-hooks nil
1810 "List of delayed mode hooks waiting to be run.")
1811 (make-variable-buffer-local 'delayed-mode-hooks)
1813 (defun run-mode-hooks (&rest hooks)
1814 "Run mode hooks `delayed-mode-hooks' and HOOKS, or delay HOOKS.
1815 Execution is delayed if `delay-mode-hooks' is non-nil.
1816 Major mode functions should use this."
1817 (if delay-mode-hooks
1818 ;; Delaying case.
1819 (dolist (hook hooks)
1820 (push hook delayed-mode-hooks))
1821 ;; Normal case, just run the hook as before plus any delayed hooks.
1822 (setq hooks (nconc (nreverse delayed-mode-hooks) hooks))
1823 (setq delayed-mode-hooks nil)
1824 (apply 'run-hooks hooks)))
1826 (defmacro delay-mode-hooks (&rest body)
1827 "Execute BODY, but delay any `run-mode-hooks'.
1828 Only affects hooks run in the current buffer."
1829 (declare (debug t))
1830 `(progn
1831 (make-local-variable 'delay-mode-hooks)
1832 (let ((delay-mode-hooks t))
1833 ,@body)))
1835 ;; PUBLIC: find if the current mode derives from another.
1837 (defun derived-mode-p (&rest modes)
1838 "Non-nil if the current major mode is derived from one of MODES.
1839 Uses the `derived-mode-parent' property of the symbol to trace backwards."
1840 (let ((parent major-mode))
1841 (while (and (not (memq parent modes))
1842 (setq parent (get parent 'derived-mode-parent))))
1843 parent))
1845 (defmacro with-syntax-table (table &rest body)
1846 "Evaluate BODY with syntax table of current buffer set to TABLE.
1847 The syntax table of the current buffer is saved, BODY is evaluated, and the
1848 saved table is restored, even in case of an abnormal exit.
1849 Value is what BODY returns."
1850 (declare (debug t))
1851 (let ((old-table (make-symbol "table"))
1852 (old-buffer (make-symbol "buffer")))
1853 `(let ((,old-table (syntax-table))
1854 (,old-buffer (current-buffer)))
1855 (unwind-protect
1856 (progn
1857 (set-syntax-table ,table)
1858 ,@body)
1859 (save-current-buffer
1860 (set-buffer ,old-buffer)
1861 (set-syntax-table ,old-table))))))
1863 (defmacro dynamic-completion-table (fun)
1864 "Use function FUN as a dynamic completion table.
1865 FUN is called with one argument, the string for which completion is required,
1866 and it should return an alist containing all the intended possible
1867 completions. This alist may be a full list of possible completions so that FUN
1868 can ignore the value of its argument. If completion is performed in the
1869 minibuffer, FUN will be called in the buffer from which the minibuffer was
1870 entered.
1872 The result of the `dynamic-completion-table' form is a function
1873 that can be used as the ALIST argument to `try-completion' and
1874 `all-completion'. See Info node `(elisp)Programmed Completion'."
1875 (let ((win (make-symbol "window"))
1876 (string (make-symbol "string"))
1877 (predicate (make-symbol "predicate"))
1878 (mode (make-symbol "mode")))
1879 `(lambda (,string ,predicate ,mode)
1880 (with-current-buffer (let ((,win (minibuffer-selected-window)))
1881 (if (window-live-p ,win) (window-buffer ,win)
1882 (current-buffer)))
1883 (cond
1884 ((eq ,mode t) (all-completions ,string (,fun ,string) ,predicate))
1885 ((not ,mode) (try-completion ,string (,fun ,string) ,predicate))
1886 (t (test-completion ,string (,fun ,string) ,predicate)))))))
1888 (defmacro lazy-completion-table (var fun &rest args)
1889 "Initialize variable VAR as a lazy completion table.
1890 If the completion table VAR is used for the first time (e.g., by passing VAR
1891 as an argument to `try-completion'), the function FUN is called with arguments
1892 ARGS. FUN must return the completion table that will be stored in VAR.
1893 If completion is requested in the minibuffer, FUN will be called in the buffer
1894 from which the minibuffer was entered. The return value of
1895 `lazy-completion-table' must be used to initialize the value of VAR."
1896 (let ((str (make-symbol "string")))
1897 `(dynamic-completion-table
1898 (lambda (,str)
1899 (unless (listp ,var)
1900 (setq ,var (funcall ',fun ,@args)))
1901 ,var))))
1903 ;;; Matching and substitution
1905 (defvar save-match-data-internal)
1907 ;; We use save-match-data-internal as the local variable because
1908 ;; that works ok in practice (people should not use that variable elsewhere).
1909 ;; We used to use an uninterned symbol; the compiler handles that properly
1910 ;; now, but it generates slower code.
1911 (defmacro save-match-data (&rest body)
1912 "Execute the BODY forms, restoring the global value of the match data.
1913 The value returned is the value of the last form in BODY."
1914 ;; It is better not to use backquote here,
1915 ;; because that makes a bootstrapping problem
1916 ;; if you need to recompile all the Lisp files using interpreted code.
1917 (declare (indent 0) (debug t))
1918 (list 'let
1919 '((save-match-data-internal (match-data)))
1920 (list 'unwind-protect
1921 (cons 'progn body)
1922 '(set-match-data save-match-data-internal))))
1924 (defun match-string (num &optional string)
1925 "Return string of text matched by last search.
1926 NUM specifies which parenthesized expression in the last regexp.
1927 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
1928 Zero means the entire text matched by the whole regexp or whole string.
1929 STRING should be given if the last search was by `string-match' on STRING."
1930 (if (match-beginning num)
1931 (if string
1932 (substring string (match-beginning num) (match-end num))
1933 (buffer-substring (match-beginning num) (match-end num)))))
1935 (defun match-string-no-properties (num &optional string)
1936 "Return string of text matched by last search, without text properties.
1937 NUM specifies which parenthesized expression in the last regexp.
1938 Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
1939 Zero means the entire text matched by the whole regexp or whole string.
1940 STRING should be given if the last search was by `string-match' on STRING."
1941 (if (match-beginning num)
1942 (if string
1943 (let ((result
1944 (substring string (match-beginning num) (match-end num))))
1945 (set-text-properties 0 (length result) nil result)
1946 result)
1947 (buffer-substring-no-properties (match-beginning num)
1948 (match-end num)))))
1950 (defun looking-back (regexp &optional limit)
1951 "Return non-nil if text before point matches regular expression REGEXP.
1952 Like `looking-at' except backwards and slower.
1953 LIMIT if non-nil speeds up the search by specifying how far back the
1954 match can start."
1955 (save-excursion
1956 (re-search-backward (concat "\\(?:" regexp "\\)\\=") limit t)))
1958 (defconst split-string-default-separators "[ \f\t\n\r\v]+"
1959 "The default value of separators for `split-string'.
1961 A regexp matching strings of whitespace. May be locale-dependent
1962 \(as yet unimplemented). Should not match non-breaking spaces.
1964 Warning: binding this to a different value and using it as default is
1965 likely to have undesired semantics.")
1967 ;; The specification says that if both SEPARATORS and OMIT-NULLS are
1968 ;; defaulted, OMIT-NULLS should be treated as t. Simplifying the logical
1969 ;; expression leads to the equivalent implementation that if SEPARATORS
1970 ;; is defaulted, OMIT-NULLS is treated as t.
1971 (defun split-string (string &optional separators omit-nulls)
1972 "Splits STRING into substrings bounded by matches for SEPARATORS.
1974 The beginning and end of STRING, and each match for SEPARATORS, are
1975 splitting points. The substrings matching SEPARATORS are removed, and
1976 the substrings between the splitting points are collected as a list,
1977 which is returned.
1979 If SEPARATORS is non-nil, it should be a regular expression matching text
1980 which separates, but is not part of, the substrings. If nil it defaults to
1981 `split-string-default-separators', normally \"[ \\f\\t\\n\\r\\v]+\", and
1982 OMIT-NULLS is forced to t.
1984 If OMIT-NULLs is t, zero-length substrings are omitted from the list \(so
1985 that for the default value of SEPARATORS leading and trailing whitespace
1986 are effectively trimmed). If nil, all zero-length substrings are retained,
1987 which correctly parses CSV format, for example.
1989 Note that the effect of `(split-string STRING)' is the same as
1990 `(split-string STRING split-string-default-separators t)'). In the rare
1991 case that you wish to retain zero-length substrings when splitting on
1992 whitespace, use `(split-string STRING split-string-default-separators)'.
1994 Modifies the match data; use `save-match-data' if necessary."
1995 (let ((keep-nulls (not (if separators omit-nulls t)))
1996 (rexp (or separators split-string-default-separators))
1997 (start 0)
1998 notfirst
1999 (list nil))
2000 (while (and (string-match rexp string
2001 (if (and notfirst
2002 (= start (match-beginning 0))
2003 (< start (length string)))
2004 (1+ start) start))
2005 (< start (length string)))
2006 (setq notfirst t)
2007 (if (or keep-nulls (< start (match-beginning 0)))
2008 (setq list
2009 (cons (substring string start (match-beginning 0))
2010 list)))
2011 (setq start (match-end 0)))
2012 (if (or keep-nulls (< start (length string)))
2013 (setq list
2014 (cons (substring string start)
2015 list)))
2016 (nreverse list)))
2018 (defun subst-char-in-string (fromchar tochar string &optional inplace)
2019 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
2020 Unless optional argument INPLACE is non-nil, return a new string."
2021 (let ((i (length string))
2022 (newstr (if inplace string (copy-sequence string))))
2023 (while (> i 0)
2024 (setq i (1- i))
2025 (if (eq (aref newstr i) fromchar)
2026 (aset newstr i tochar)))
2027 newstr))
2029 (defun replace-regexp-in-string (regexp rep string &optional
2030 fixedcase literal subexp start)
2031 "Replace all matches for REGEXP with REP in STRING.
2033 Return a new string containing the replacements.
2035 Optional arguments FIXEDCASE, LITERAL and SUBEXP are like the
2036 arguments with the same names of function `replace-match'. If START
2037 is non-nil, start replacements at that index in STRING.
2039 REP is either a string used as the NEWTEXT arg of `replace-match' or a
2040 function. If it is a function it is applied to each match to generate
2041 the replacement passed to `replace-match'; the match-data at this
2042 point are such that match 0 is the function's argument.
2044 To replace only the first match (if any), make REGEXP match up to \\'
2045 and replace a sub-expression, e.g.
2046 (replace-regexp-in-string \"\\\\(foo\\\\).*\\\\'\" \"bar\" \" foo foo\" nil nil 1)
2047 => \" bar foo\"
2050 ;; To avoid excessive consing from multiple matches in long strings,
2051 ;; don't just call `replace-match' continually. Walk down the
2052 ;; string looking for matches of REGEXP and building up a (reversed)
2053 ;; list MATCHES. This comprises segments of STRING which weren't
2054 ;; matched interspersed with replacements for segments that were.
2055 ;; [For a `large' number of replacements it's more efficient to
2056 ;; operate in a temporary buffer; we can't tell from the function's
2057 ;; args whether to choose the buffer-based implementation, though it
2058 ;; might be reasonable to do so for long enough STRING.]
2059 (let ((l (length string))
2060 (start (or start 0))
2061 matches str mb me)
2062 (save-match-data
2063 (while (and (< start l) (string-match regexp string start))
2064 (setq mb (match-beginning 0)
2065 me (match-end 0))
2066 ;; If we matched the empty string, make sure we advance by one char
2067 (when (= me mb) (setq me (min l (1+ mb))))
2068 ;; Generate a replacement for the matched substring.
2069 ;; Operate only on the substring to minimize string consing.
2070 ;; Set up match data for the substring for replacement;
2071 ;; presumably this is likely to be faster than munging the
2072 ;; match data directly in Lisp.
2073 (string-match regexp (setq str (substring string mb me)))
2074 (setq matches
2075 (cons (replace-match (if (stringp rep)
2077 (funcall rep (match-string 0 str)))
2078 fixedcase literal str subexp)
2079 (cons (substring string start mb) ; unmatched prefix
2080 matches)))
2081 (setq start me))
2082 ;; Reconstruct a string from the pieces.
2083 (setq matches (cons (substring string start l) matches)) ; leftover
2084 (apply #'concat (nreverse matches)))))
2086 (defun shell-quote-argument (argument)
2087 "Quote an argument for passing as argument to an inferior shell."
2088 (if (eq system-type 'ms-dos)
2089 ;; Quote using double quotes, but escape any existing quotes in
2090 ;; the argument with backslashes.
2091 (let ((result "")
2092 (start 0)
2093 end)
2094 (if (or (null (string-match "[^\"]" argument))
2095 (< (match-end 0) (length argument)))
2096 (while (string-match "[\"]" argument start)
2097 (setq end (match-beginning 0)
2098 result (concat result (substring argument start end)
2099 "\\" (substring argument end (1+ end)))
2100 start (1+ end))))
2101 (concat "\"" result (substring argument start) "\""))
2102 (if (eq system-type 'windows-nt)
2103 (concat "\"" argument "\"")
2104 (if (equal argument "")
2105 "''"
2106 ;; Quote everything except POSIX filename characters.
2107 ;; This should be safe enough even for really weird shells.
2108 (let ((result "") (start 0) end)
2109 (while (string-match "[^-0-9a-zA-Z_./]" argument start)
2110 (setq end (match-beginning 0)
2111 result (concat result (substring argument start end)
2112 "\\" (substring argument end (1+ end)))
2113 start (1+ end)))
2114 (concat result (substring argument start)))))))
2116 (defun make-syntax-table (&optional oldtable)
2117 "Return a new syntax table.
2118 Create a syntax table which inherits from OLDTABLE (if non-nil) or
2119 from `standard-syntax-table' otherwise."
2120 (let ((table (make-char-table 'syntax-table nil)))
2121 (set-char-table-parent table (or oldtable (standard-syntax-table)))
2122 table))
2124 (defun syntax-after (pos)
2125 "Return the syntax of the char after POS."
2126 (unless (or (< pos (point-min)) (>= pos (point-max)))
2127 (let ((st (if parse-sexp-lookup-properties
2128 (get-char-property pos 'syntax-table))))
2129 (if (consp st) st
2130 (aref (or st (syntax-table)) (char-after pos))))))
2132 (defun add-to-invisibility-spec (arg)
2133 "Add elements to `buffer-invisibility-spec'.
2134 See documentation for `buffer-invisibility-spec' for the kind of elements
2135 that can be added."
2136 (if (eq buffer-invisibility-spec t)
2137 (setq buffer-invisibility-spec (list t)))
2138 (setq buffer-invisibility-spec
2139 (cons arg buffer-invisibility-spec)))
2141 (defun remove-from-invisibility-spec (arg)
2142 "Remove elements from `buffer-invisibility-spec'."
2143 (if (consp buffer-invisibility-spec)
2144 (setq buffer-invisibility-spec (delete arg buffer-invisibility-spec))))
2146 (defun global-set-key (key command)
2147 "Give KEY a global binding as COMMAND.
2148 COMMAND is the command definition to use; usually it is
2149 a symbol naming an interactively-callable function.
2150 KEY is a key sequence; noninteractively, it is a string or vector
2151 of characters or event types, and non-ASCII characters with codes
2152 above 127 (such as ISO Latin-1) can be included if you use a vector.
2154 Note that if KEY has a local binding in the current buffer,
2155 that local binding will continue to shadow any global binding
2156 that you make with this function."
2157 (interactive "KSet key globally: \nCSet key %s to command: ")
2158 (or (vectorp key) (stringp key)
2159 (signal 'wrong-type-argument (list 'arrayp key)))
2160 (define-key (current-global-map) key command))
2162 (defun local-set-key (key command)
2163 "Give KEY a local binding as COMMAND.
2164 COMMAND is the command definition to use; usually it is
2165 a symbol naming an interactively-callable function.
2166 KEY is a key sequence; noninteractively, it is a string or vector
2167 of characters or event types, and non-ASCII characters with codes
2168 above 127 (such as ISO Latin-1) can be included if you use a vector.
2170 The binding goes in the current buffer's local map,
2171 which in most cases is shared with all other buffers in the same major mode."
2172 (interactive "KSet key locally: \nCSet key %s locally to command: ")
2173 (let ((map (current-local-map)))
2174 (or map
2175 (use-local-map (setq map (make-sparse-keymap))))
2176 (or (vectorp key) (stringp key)
2177 (signal 'wrong-type-argument (list 'arrayp key)))
2178 (define-key map key command)))
2180 (defun global-unset-key (key)
2181 "Remove global binding of KEY.
2182 KEY is a string representing a sequence of keystrokes."
2183 (interactive "kUnset key globally: ")
2184 (global-set-key key nil))
2186 (defun local-unset-key (key)
2187 "Remove local binding of KEY.
2188 KEY is a string representing a sequence of keystrokes."
2189 (interactive "kUnset key locally: ")
2190 (if (current-local-map)
2191 (local-set-key key nil))
2192 nil)
2194 ;; We put this here instead of in frame.el so that it's defined even on
2195 ;; systems where frame.el isn't loaded.
2196 (defun frame-configuration-p (object)
2197 "Return non-nil if OBJECT seems to be a frame configuration.
2198 Any list whose car is `frame-configuration' is assumed to be a frame
2199 configuration."
2200 (and (consp object)
2201 (eq (car object) 'frame-configuration)))
2203 (defun functionp (object)
2204 "Non-nil iff OBJECT is a type of object that can be called as a function."
2205 (or (and (symbolp object) (fboundp object)
2206 (condition-case nil
2207 (setq object (indirect-function object))
2208 (error nil))
2209 (eq (car-safe object) 'autoload)
2210 (not (car-safe (cdr-safe (cdr-safe (cdr-safe (cdr-safe object)))))))
2211 (subrp object) (byte-code-function-p object)
2212 (eq (car-safe object) 'lambda)))
2214 (defun interactive-form (function)
2215 "Return the interactive form of FUNCTION.
2216 If function is a command (see `commandp'), value is a list of the form
2217 \(interactive SPEC). If function is not a command, return nil."
2218 (setq function (indirect-function function))
2219 (when (commandp function)
2220 (cond ((byte-code-function-p function)
2221 (when (> (length function) 5)
2222 (let ((spec (aref function 5)))
2223 (if spec
2224 (list 'interactive spec)
2225 (list 'interactive)))))
2226 ((subrp function)
2227 (subr-interactive-form function))
2228 ((eq (car-safe function) 'lambda)
2229 (setq function (cddr function))
2230 (when (stringp (car function))
2231 (setq function (cdr function)))
2232 (let ((form (car function)))
2233 (when (eq (car-safe form) 'interactive)
2234 (copy-sequence form)))))))
2236 (defun assq-delete-all (key alist)
2237 "Delete from ALIST all elements whose car is KEY.
2238 Return the modified alist.
2239 Elements of ALIST that are not conses are ignored."
2240 (let ((tail alist))
2241 (while tail
2242 (if (and (consp (car tail)) (eq (car (car tail)) key))
2243 (setq alist (delq (car tail) alist)))
2244 (setq tail (cdr tail)))
2245 alist))
2247 (defun make-temp-file (prefix &optional dir-flag suffix)
2248 "Create a temporary file.
2249 The returned file name (created by appending some random characters at the end
2250 of PREFIX, and expanding against `temporary-file-directory' if necessary),
2251 is guaranteed to point to a newly created empty file.
2252 You can then use `write-region' to write new data into the file.
2254 If DIR-FLAG is non-nil, create a new empty directory instead of a file.
2256 If SUFFIX is non-nil, add that at the end of the file name."
2257 (let ((umask (default-file-modes))
2258 file)
2259 (unwind-protect
2260 (progn
2261 ;; Create temp files with strict access rights. It's easy to
2262 ;; loosen them later, whereas it's impossible to close the
2263 ;; time-window of loose permissions otherwise.
2264 (set-default-file-modes ?\700)
2265 (while (condition-case ()
2266 (progn
2267 (setq file
2268 (make-temp-name
2269 (expand-file-name prefix temporary-file-directory)))
2270 (if suffix
2271 (setq file (concat file suffix)))
2272 (if dir-flag
2273 (make-directory file)
2274 (write-region "" nil file nil 'silent nil 'excl))
2275 nil)
2276 (file-already-exists t))
2277 ;; the file was somehow created by someone else between
2278 ;; `make-temp-name' and `write-region', let's try again.
2279 nil)
2280 file)
2281 ;; Reset the umask.
2282 (set-default-file-modes umask))))
2285 ;; If a minor mode is not defined with define-minor-mode,
2286 ;; add it here explicitly.
2287 ;; isearch-mode is deliberately excluded, since you should
2288 ;; not call it yourself.
2289 (defvar minor-mode-list '(auto-save-mode auto-fill-mode abbrev-mode
2290 overwrite-mode view-mode
2291 hs-minor-mode)
2292 "List of all minor mode functions.")
2294 (defun add-minor-mode (toggle name &optional keymap after toggle-fun)
2295 "Register a new minor mode.
2297 This is an XEmacs-compatibility function. Use `define-minor-mode' instead.
2299 TOGGLE is a symbol which is the name of a buffer-local variable that
2300 is toggled on or off to say whether the minor mode is active or not.
2302 NAME specifies what will appear in the mode line when the minor mode
2303 is active. NAME should be either a string starting with a space, or a
2304 symbol whose value is such a string.
2306 Optional KEYMAP is the keymap for the minor mode that will be added
2307 to `minor-mode-map-alist'.
2309 Optional AFTER specifies that TOGGLE should be added after AFTER
2310 in `minor-mode-alist'.
2312 Optional TOGGLE-FUN is an interactive function to toggle the mode.
2313 It defaults to (and should by convention be) TOGGLE.
2315 If TOGGLE has a non-nil `:included' property, an entry for the mode is
2316 included in the mode-line minor mode menu.
2317 If TOGGLE has a `:menu-tag', that is used for the menu item's label."
2318 (unless (memq toggle minor-mode-list)
2319 (push toggle minor-mode-list))
2321 (unless toggle-fun (setq toggle-fun toggle))
2322 ;; Add the name to the minor-mode-alist.
2323 (when name
2324 (let ((existing (assq toggle minor-mode-alist)))
2325 (if existing
2326 (setcdr existing (list name))
2327 (let ((tail minor-mode-alist) found)
2328 (while (and tail (not found))
2329 (if (eq after (caar tail))
2330 (setq found tail)
2331 (setq tail (cdr tail))))
2332 (if found
2333 (let ((rest (cdr found)))
2334 (setcdr found nil)
2335 (nconc found (list (list toggle name)) rest))
2336 (setq minor-mode-alist (cons (list toggle name)
2337 minor-mode-alist)))))))
2338 ;; Add the toggle to the minor-modes menu if requested.
2339 (when (get toggle :included)
2340 (define-key mode-line-mode-menu
2341 (vector toggle)
2342 (list 'menu-item
2343 (concat
2344 (or (get toggle :menu-tag)
2345 (if (stringp name) name (symbol-name toggle)))
2346 (let ((mode-name (if (symbolp name) (symbol-value name))))
2347 (if (and (stringp mode-name) (string-match "[^ ]+" mode-name))
2348 (concat " (" (match-string 0 mode-name) ")"))))
2349 toggle-fun
2350 :button (cons :toggle toggle))))
2352 ;; Add the map to the minor-mode-map-alist.
2353 (when keymap
2354 (let ((existing (assq toggle minor-mode-map-alist)))
2355 (if existing
2356 (setcdr existing keymap)
2357 (let ((tail minor-mode-map-alist) found)
2358 (while (and tail (not found))
2359 (if (eq after (caar tail))
2360 (setq found tail)
2361 (setq tail (cdr tail))))
2362 (if found
2363 (let ((rest (cdr found)))
2364 (setcdr found nil)
2365 (nconc found (list (cons toggle keymap)) rest))
2366 (setq minor-mode-map-alist (cons (cons toggle keymap)
2367 minor-mode-map-alist))))))))
2369 ;; Clones ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2371 (defun text-clone-maintain (ol1 after beg end &optional len)
2372 "Propagate the changes made under the overlay OL1 to the other clones.
2373 This is used on the `modification-hooks' property of text clones."
2374 (when (and after (not undo-in-progress) (overlay-start ol1))
2375 (let ((margin (if (overlay-get ol1 'text-clone-spreadp) 1 0)))
2376 (setq beg (max beg (+ (overlay-start ol1) margin)))
2377 (setq end (min end (- (overlay-end ol1) margin)))
2378 (when (<= beg end)
2379 (save-excursion
2380 (when (overlay-get ol1 'text-clone-syntax)
2381 ;; Check content of the clone's text.
2382 (let ((cbeg (+ (overlay-start ol1) margin))
2383 (cend (- (overlay-end ol1) margin)))
2384 (goto-char cbeg)
2385 (save-match-data
2386 (if (not (re-search-forward
2387 (overlay-get ol1 'text-clone-syntax) cend t))
2388 ;; Mark the overlay for deletion.
2389 (overlay-put ol1 'text-clones nil)
2390 (when (< (match-end 0) cend)
2391 ;; Shrink the clone at its end.
2392 (setq end (min end (match-end 0)))
2393 (move-overlay ol1 (overlay-start ol1)
2394 (+ (match-end 0) margin)))
2395 (when (> (match-beginning 0) cbeg)
2396 ;; Shrink the clone at its beginning.
2397 (setq beg (max (match-beginning 0) beg))
2398 (move-overlay ol1 (- (match-beginning 0) margin)
2399 (overlay-end ol1)))))))
2400 ;; Now go ahead and update the clones.
2401 (let ((head (- beg (overlay-start ol1)))
2402 (tail (- (overlay-end ol1) end))
2403 (str (buffer-substring beg end))
2404 (nothing-left t)
2405 (inhibit-modification-hooks t))
2406 (dolist (ol2 (overlay-get ol1 'text-clones))
2407 (let ((oe (overlay-end ol2)))
2408 (unless (or (eq ol1 ol2) (null oe))
2409 (setq nothing-left nil)
2410 (let ((mod-beg (+ (overlay-start ol2) head)))
2411 ;;(overlay-put ol2 'modification-hooks nil)
2412 (goto-char (- (overlay-end ol2) tail))
2413 (unless (> mod-beg (point))
2414 (save-excursion (insert str))
2415 (delete-region mod-beg (point)))
2416 ;;(overlay-put ol2 'modification-hooks '(text-clone-maintain))
2417 ))))
2418 (if nothing-left (delete-overlay ol1))))))))
2420 (defun text-clone-create (start end &optional spreadp syntax)
2421 "Create a text clone of START...END at point.
2422 Text clones are chunks of text that are automatically kept identical:
2423 changes done to one of the clones will be immediately propagated to the other.
2425 The buffer's content at point is assumed to be already identical to
2426 the one between START and END.
2427 If SYNTAX is provided it's a regexp that describes the possible text of
2428 the clones; the clone will be shrunk or killed if necessary to ensure that
2429 its text matches the regexp.
2430 If SPREADP is non-nil it indicates that text inserted before/after the
2431 clone should be incorporated in the clone."
2432 ;; To deal with SPREADP we can either use an overlay with `nil t' along
2433 ;; with insert-(behind|in-front-of)-hooks or use a slightly larger overlay
2434 ;; (with a one-char margin at each end) with `t nil'.
2435 ;; We opted for a larger overlay because it behaves better in the case
2436 ;; where the clone is reduced to the empty string (we want the overlay to
2437 ;; stay when the clone's content is the empty string and we want to use
2438 ;; `evaporate' to make sure those overlays get deleted when needed).
2440 (let* ((pt-end (+ (point) (- end start)))
2441 (start-margin (if (or (not spreadp) (bobp) (<= start (point-min)))
2442 0 1))
2443 (end-margin (if (or (not spreadp)
2444 (>= pt-end (point-max))
2445 (>= start (point-max)))
2446 0 1))
2447 (ol1 (make-overlay (- start start-margin) (+ end end-margin) nil t))
2448 (ol2 (make-overlay (- (point) start-margin) (+ pt-end end-margin) nil t))
2449 (dups (list ol1 ol2)))
2450 (overlay-put ol1 'modification-hooks '(text-clone-maintain))
2451 (when spreadp (overlay-put ol1 'text-clone-spreadp t))
2452 (when syntax (overlay-put ol1 'text-clone-syntax syntax))
2453 ;;(overlay-put ol1 'face 'underline)
2454 (overlay-put ol1 'evaporate t)
2455 (overlay-put ol1 'text-clones dups)
2457 (overlay-put ol2 'modification-hooks '(text-clone-maintain))
2458 (when spreadp (overlay-put ol2 'text-clone-spreadp t))
2459 (when syntax (overlay-put ol2 'text-clone-syntax syntax))
2460 ;;(overlay-put ol2 'face 'underline)
2461 (overlay-put ol2 'evaporate t)
2462 (overlay-put ol2 'text-clones dups)))
2464 (defun play-sound (sound)
2465 "SOUND is a list of the form `(sound KEYWORD VALUE...)'.
2466 The following keywords are recognized:
2468 :file FILE - read sound data from FILE. If FILE isn't an
2469 absolute file name, it is searched in `data-directory'.
2471 :data DATA - read sound data from string DATA.
2473 Exactly one of :file or :data must be present.
2475 :volume VOL - set volume to VOL. VOL must an integer in the
2476 range 0..100 or a float in the range 0..1.0. If not specified,
2477 don't change the volume setting of the sound device.
2479 :device DEVICE - play sound on DEVICE. If not specified,
2480 a system-dependent default device name is used."
2481 (unless (fboundp 'play-sound-internal)
2482 (error "This Emacs binary lacks sound support"))
2483 (play-sound-internal sound))
2485 (defun define-mail-user-agent (symbol composefunc sendfunc
2486 &optional abortfunc hookvar)
2487 "Define a symbol to identify a mail-sending package for `mail-user-agent'.
2489 SYMBOL can be any Lisp symbol. Its function definition and/or
2490 value as a variable do not matter for this usage; we use only certain
2491 properties on its property list, to encode the rest of the arguments.
2493 COMPOSEFUNC is program callable function that composes an outgoing
2494 mail message buffer. This function should set up the basics of the
2495 buffer without requiring user interaction. It should populate the
2496 standard mail headers, leaving the `to:' and `subject:' headers blank
2497 by default.
2499 COMPOSEFUNC should accept several optional arguments--the same
2500 arguments that `compose-mail' takes. See that function's documentation.
2502 SENDFUNC is the command a user would run to send the message.
2504 Optional ABORTFUNC is the command a user would run to abort the
2505 message. For mail packages that don't have a separate abort function,
2506 this can be `kill-buffer' (the equivalent of omitting this argument).
2508 Optional HOOKVAR is a hook variable that gets run before the message
2509 is actually sent. Callers that use the `mail-user-agent' may
2510 install a hook function temporarily on this hook variable.
2511 If HOOKVAR is nil, `mail-send-hook' is used.
2513 The properties used on SYMBOL are `composefunc', `sendfunc',
2514 `abortfunc', and `hookvar'."
2515 (put symbol 'composefunc composefunc)
2516 (put symbol 'sendfunc sendfunc)
2517 (put symbol 'abortfunc (or abortfunc 'kill-buffer))
2518 (put symbol 'hookvar (or hookvar 'mail-send-hook)))
2520 ;;; arch-tag: f7e0e6e5-70aa-4897-ae72-7a3511ec40bc
2521 ;;; subr.el ends here