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