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