1992-05-30 21:11:25 +00:00
|
|
|
|
;;; subr.el --- basic lisp subroutines for Emacs
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
Fix bootstrapping problems.
Use the system locale to specify Emacs locale defaults.
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* subr.el (save-match-data): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
* language/japan-util.el (setup-japanese-environment-internal):
Prefer japanese-iso-8bit if the system-type is usg-unix-v.
* startup.el (iso-8859-n-locale-regexp): Remove.
(locale-translation-file-name): Move to mule-cmds.el.
(command-line): Move locale-stuff into set-locale-environment.
1999-10-19 07:18:58 +00:00
|
|
|
|
;; Copyright (C) 1985, 86, 92, 94, 95, 1999 Free Software Foundation, Inc.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-06-10 02:47:07 +00:00
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; Code:
|
1997-07-20 17:36:48 +00:00
|
|
|
|
(defvar custom-declare-variable-list nil
|
|
|
|
|
"Record `defcustom' calls made before `custom.el' is loaded to handle them.
|
|
|
|
|
Each element of this list holds the arguments to one call to `defcustom'.")
|
|
|
|
|
|
1997-09-01 19:42:16 +00:00
|
|
|
|
;; Use this, rather than defcustom, in subr.el and other files loaded
|
1997-07-20 17:36:48 +00:00
|
|
|
|
;; before custom.el.
|
|
|
|
|
(defun custom-declare-variable-early (&rest arguments)
|
|
|
|
|
(setq custom-declare-variable-list
|
|
|
|
|
(cons arguments custom-declare-variable-list)))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Lisp language features.
|
|
|
|
|
|
|
|
|
|
(defmacro lambda (&rest cdr)
|
|
|
|
|
"Return a lambda expression.
|
|
|
|
|
A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
|
|
|
|
|
self-quoting; the result of evaluating the lambda expression is the
|
|
|
|
|
expression itself. The lambda expression may then be treated as a
|
1994-12-15 18:25:24 +00:00
|
|
|
|
function, i.e., stored as the function value of a symbol, passed to
|
|
|
|
|
funcall or mapcar, etc.
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
ARGS should take the same form as an argument list for a `defun'.
|
1995-06-27 06:52:56 +00:00
|
|
|
|
DOCSTRING is an optional documentation string.
|
|
|
|
|
If present, it should describe how to call the function.
|
|
|
|
|
But documentation strings are usually not useful in nameless functions.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
INTERACTIVE should be a call to the function `interactive', which see.
|
|
|
|
|
It may also be omitted.
|
|
|
|
|
BODY should be a list of lisp expressions."
|
|
|
|
|
;; Note that this definition should not use backquotes; subr.el should not
|
|
|
|
|
;; depend on backquote.el.
|
|
|
|
|
(list 'function (cons 'lambda cdr)))
|
|
|
|
|
|
1999-08-29 20:27:40 +00:00
|
|
|
|
(defmacro push (newelt listname)
|
1999-09-07 06:37:06 +00:00
|
|
|
|
"Add NEWELT to the list stored in the symbol LISTNAME.
|
1999-08-29 20:27:40 +00:00
|
|
|
|
This is equivalent to (setq LISTNAME (cons NEWELT LISTNAME)).
|
1999-08-29 20:23:54 +00:00
|
|
|
|
LISTNAME must be a symbol."
|
1999-08-31 13:12:46 +00:00
|
|
|
|
(list 'setq listname
|
|
|
|
|
(list 'cons newelt listname)))
|
1999-08-29 20:23:54 +00:00
|
|
|
|
|
|
|
|
|
(defmacro pop (listname)
|
|
|
|
|
"Return the first element of LISTNAME's value, and remove it from the list.
|
|
|
|
|
LISTNAME must be a symbol whose value is a list.
|
|
|
|
|
If the value is nil, `pop' returns nil but does not actually
|
|
|
|
|
change the list."
|
|
|
|
|
(list 'prog1 (list 'car listname)
|
|
|
|
|
(list 'setq listname (list 'cdr listname))))
|
|
|
|
|
|
1997-01-08 06:09:02 +00:00
|
|
|
|
(defmacro when (cond &rest body)
|
|
|
|
|
"(when COND BODY...): if COND yields non-nil, do BODY, else return nil."
|
|
|
|
|
(list 'if cond (cons 'progn body)))
|
1997-03-14 17:58:03 +00:00
|
|
|
|
(put 'when 'lisp-indent-function 1)
|
|
|
|
|
(put 'when 'edebug-form-spec '(&rest form))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
1997-01-08 06:09:02 +00:00
|
|
|
|
(defmacro unless (cond &rest body)
|
|
|
|
|
"(unless COND BODY...): if COND yields nil, do BODY, else return nil."
|
|
|
|
|
(cons 'if (cons cond (cons nil body))))
|
1997-03-14 17:58:03 +00:00
|
|
|
|
(put 'unless 'lisp-indent-function 1)
|
|
|
|
|
(put 'unless 'edebug-form-spec '(&rest form))
|
1997-08-23 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
(defsubst caar (x)
|
|
|
|
|
"Return the car of the car of X."
|
|
|
|
|
(car (car x)))
|
|
|
|
|
|
|
|
|
|
(defsubst cadr (x)
|
|
|
|
|
"Return the car of the cdr of X."
|
|
|
|
|
(car (cdr x)))
|
|
|
|
|
|
|
|
|
|
(defsubst cdar (x)
|
|
|
|
|
"Return the cdr of the car of X."
|
|
|
|
|
(cdr (car x)))
|
|
|
|
|
|
|
|
|
|
(defsubst cddr (x)
|
|
|
|
|
"Return the cdr of the cdr of X."
|
|
|
|
|
(cdr (cdr x)))
|
1997-08-23 19:10:42 +00:00
|
|
|
|
|
1997-08-27 22:34:30 +00:00
|
|
|
|
(defun last (x &optional n)
|
|
|
|
|
"Return the last link of the list X. Its car is the last element.
|
|
|
|
|
If X is nil, return nil.
|
|
|
|
|
If N is non-nil, return the Nth-to-last link of X.
|
|
|
|
|
If N is bigger than the length of X, return X."
|
|
|
|
|
(if n
|
|
|
|
|
(let ((m 0) (p x))
|
|
|
|
|
(while (consp p)
|
|
|
|
|
(setq m (1+ m) p (cdr p)))
|
|
|
|
|
(if (<= n 0) p
|
|
|
|
|
(if (< n m) (nthcdr (- m n) x) x)))
|
|
|
|
|
(while (cdr x)
|
|
|
|
|
(setq x (cdr x)))
|
|
|
|
|
x))
|
1998-07-31 10:53:30 +00:00
|
|
|
|
|
1998-08-08 23:07:06 +00:00
|
|
|
|
(defun assoc-default (key alist &optional test default)
|
|
|
|
|
"Find object KEY in a pseudo-alist ALIST.
|
|
|
|
|
ALIST is a list of conses or objects. Each element (or the element's car,
|
|
|
|
|
if it is a cons) is compared with KEY by evaluating (TEST (car elt) KEY).
|
|
|
|
|
If that is non-nil, the element matches;
|
|
|
|
|
then `assoc-default' returns the element's cdr, if it is a cons,
|
1998-07-31 10:53:30 +00:00
|
|
|
|
or DEFAULT if the element is not a cons.
|
1998-08-08 23:07:06 +00:00
|
|
|
|
|
|
|
|
|
If no element matches, the value is nil.
|
|
|
|
|
If TEST is omitted or nil, `equal' is used."
|
|
|
|
|
(let (found (tail alist) value)
|
|
|
|
|
(while (and tail (not found))
|
|
|
|
|
(let ((elt (car tail)))
|
|
|
|
|
(when (funcall (or test 'equal) (if (consp elt) (car elt) elt) key)
|
|
|
|
|
(setq found t value (if (consp elt) (cdr elt) default))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
value))
|
1999-08-16 21:04:49 +00:00
|
|
|
|
|
|
|
|
|
(defun assoc-ignore-case (key alist)
|
|
|
|
|
"Like `assoc', but ignores differences in case and text representation.
|
|
|
|
|
KEY must be a string. Upper-case and lower-case letters are treated as equal.
|
|
|
|
|
Unibyte strings are converted to multibyte for comparison."
|
|
|
|
|
(let (element)
|
|
|
|
|
(while (and alist (not element))
|
|
|
|
|
(if (eq t (compare-strings key 0 nil (car (car alist)) 0 nil t))
|
|
|
|
|
(setq element (car alist)))
|
|
|
|
|
(setq alist (cdr alist)))
|
|
|
|
|
element))
|
|
|
|
|
|
|
|
|
|
(defun assoc-ignore-representation (key alist)
|
|
|
|
|
"Like `assoc', but ignores differences in text representation.
|
|
|
|
|
KEY must be a string.
|
|
|
|
|
Unibyte strings are converted to multibyte for comparison."
|
|
|
|
|
(let (element)
|
|
|
|
|
(while (and alist (not element))
|
|
|
|
|
(if (eq t (compare-strings key 0 nil (car (car alist)) 0 nil))
|
|
|
|
|
(setq element (car alist)))
|
|
|
|
|
(setq alist (cdr alist)))
|
|
|
|
|
element))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Keymap support.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
|
|
|
|
(defun undefined ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(ding))
|
|
|
|
|
|
|
|
|
|
;Prevent the \{...} documentation construct
|
|
|
|
|
;from mentioning keys that run this command.
|
|
|
|
|
(put 'undefined 'suppress-keymap t)
|
|
|
|
|
|
|
|
|
|
(defun suppress-keymap (map &optional nodigits)
|
|
|
|
|
"Make MAP override all normally self-inserting keys to be undefined.
|
|
|
|
|
Normally, as an exception, digits and minus-sign are set to make prefix args,
|
|
|
|
|
but optional second arg NODIGITS non-nil treats them like other chars."
|
1993-09-21 07:47:15 +00:00
|
|
|
|
(substitute-key-definition 'self-insert-command 'undefined map global-map)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(or nodigits
|
|
|
|
|
(let (loop)
|
|
|
|
|
(define-key map "-" 'negative-argument)
|
|
|
|
|
;; Make plain numbers do numeric args.
|
|
|
|
|
(setq loop ?0)
|
|
|
|
|
(while (<= loop ?9)
|
|
|
|
|
(define-key map (char-to-string loop) 'digit-argument)
|
|
|
|
|
(setq loop (1+ loop))))))
|
|
|
|
|
|
|
|
|
|
;Moved to keymap.c
|
|
|
|
|
;(defun copy-keymap (keymap)
|
|
|
|
|
; "Return a copy of KEYMAP"
|
|
|
|
|
; (while (not (keymapp keymap))
|
|
|
|
|
; (setq keymap (signal 'wrong-type-argument (list 'keymapp keymap))))
|
|
|
|
|
; (if (vectorp keymap)
|
|
|
|
|
; (copy-sequence keymap)
|
|
|
|
|
; (copy-alist keymap)))
|
|
|
|
|
|
1994-03-03 16:27:06 +00:00
|
|
|
|
(defvar key-substitution-in-progress nil
|
|
|
|
|
"Used internally by substitute-key-definition.")
|
|
|
|
|
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
"Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
|
|
|
|
|
In other words, OLDDEF is replaced with NEWDEF where ever it appears.
|
1992-09-20 02:22:09 +00:00
|
|
|
|
If optional fourth argument OLDMAP is specified, we redefine
|
|
|
|
|
in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP."
|
|
|
|
|
(or prefix (setq prefix ""))
|
|
|
|
|
(let* ((scan (or oldmap keymap))
|
|
|
|
|
(vec1 (vector nil))
|
1994-03-03 16:27:06 +00:00
|
|
|
|
(prefix1 (vconcat prefix vec1))
|
|
|
|
|
(key-substitution-in-progress
|
|
|
|
|
(cons scan key-substitution-in-progress)))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
;; Scan OLDMAP, finding each char or event-symbol that
|
|
|
|
|
;; has any definition, and act on it with hack-key.
|
|
|
|
|
(while (consp scan)
|
|
|
|
|
(if (consp (car scan))
|
|
|
|
|
(let ((char (car (car scan)))
|
|
|
|
|
(defn (cdr (car scan))))
|
|
|
|
|
;; The inside of this let duplicates exactly
|
|
|
|
|
;; the inside of the following let that handles array elements.
|
|
|
|
|
(aset vec1 0 char)
|
|
|
|
|
(aset prefix1 (length prefix) char)
|
1994-02-19 00:01:46 +00:00
|
|
|
|
(let (inner-def skipped)
|
1992-09-20 02:22:09 +00:00
|
|
|
|
;; Skip past menu-prompt.
|
|
|
|
|
(while (stringp (car-safe defn))
|
1994-02-19 00:01:46 +00:00
|
|
|
|
(setq skipped (cons (car defn) skipped))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(setq defn (cdr defn)))
|
1994-05-22 07:09:32 +00:00
|
|
|
|
;; Skip past cached key-equivalence data for menu items.
|
|
|
|
|
(and (consp defn) (consp (car defn))
|
|
|
|
|
(setq defn (cdr defn)))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(setq inner-def defn)
|
1994-05-22 07:09:32 +00:00
|
|
|
|
;; Look past a symbol that names a keymap.
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(while (and (symbolp inner-def)
|
|
|
|
|
(fboundp inner-def))
|
|
|
|
|
(setq inner-def (symbol-function inner-def)))
|
1997-03-22 03:55:21 +00:00
|
|
|
|
(if (or (eq defn olddef)
|
|
|
|
|
;; Compare with equal if definition is a key sequence.
|
|
|
|
|
;; That is useful for operating on function-key-map.
|
|
|
|
|
(and (or (stringp defn) (vectorp defn))
|
|
|
|
|
(equal defn olddef)))
|
1994-02-19 00:01:46 +00:00
|
|
|
|
(define-key keymap prefix1 (nconc (nreverse skipped) newdef))
|
1994-03-03 16:27:06 +00:00
|
|
|
|
(if (and (keymapp defn)
|
1994-11-16 20:35:34 +00:00
|
|
|
|
;; Avoid recursively scanning
|
|
|
|
|
;; where KEYMAP does not have a submap.
|
1995-09-18 14:45:44 +00:00
|
|
|
|
(let ((elt (lookup-key keymap prefix1)))
|
|
|
|
|
(or (null elt)
|
|
|
|
|
(keymapp elt)))
|
1994-11-16 20:35:34 +00:00
|
|
|
|
;; Avoid recursively rescanning keymap being scanned.
|
1994-03-03 16:27:06 +00:00
|
|
|
|
(not (memq inner-def
|
|
|
|
|
key-substitution-in-progress)))
|
1994-05-22 07:09:32 +00:00
|
|
|
|
;; If this one isn't being scanned already,
|
|
|
|
|
;; scan it now.
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(substitute-key-definition olddef newdef keymap
|
|
|
|
|
inner-def
|
|
|
|
|
prefix1)))))
|
1997-05-30 19:21:06 +00:00
|
|
|
|
(if (vectorp (car scan))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(let* ((array (car scan))
|
|
|
|
|
(len (length array))
|
|
|
|
|
(i 0))
|
|
|
|
|
(while (< i len)
|
|
|
|
|
(let ((char i) (defn (aref array i)))
|
|
|
|
|
;; The inside of this let duplicates exactly
|
|
|
|
|
;; the inside of the previous let.
|
|
|
|
|
(aset vec1 0 char)
|
|
|
|
|
(aset prefix1 (length prefix) char)
|
1994-02-19 00:01:46 +00:00
|
|
|
|
(let (inner-def skipped)
|
1992-09-20 02:22:09 +00:00
|
|
|
|
;; Skip past menu-prompt.
|
|
|
|
|
(while (stringp (car-safe defn))
|
1994-02-19 00:01:46 +00:00
|
|
|
|
(setq skipped (cons (car defn) skipped))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(setq defn (cdr defn)))
|
1994-05-22 07:09:32 +00:00
|
|
|
|
(and (consp defn) (consp (car defn))
|
|
|
|
|
(setq defn (cdr defn)))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(setq inner-def defn)
|
|
|
|
|
(while (and (symbolp inner-def)
|
|
|
|
|
(fboundp inner-def))
|
|
|
|
|
(setq inner-def (symbol-function inner-def)))
|
1997-03-22 03:55:21 +00:00
|
|
|
|
(if (or (eq defn olddef)
|
|
|
|
|
(and (or (stringp defn) (vectorp defn))
|
|
|
|
|
(equal defn olddef)))
|
1994-02-19 00:01:46 +00:00
|
|
|
|
(define-key keymap prefix1
|
|
|
|
|
(nconc (nreverse skipped) newdef))
|
1994-03-03 16:27:06 +00:00
|
|
|
|
(if (and (keymapp defn)
|
1995-09-18 14:45:44 +00:00
|
|
|
|
(let ((elt (lookup-key keymap prefix1)))
|
|
|
|
|
(or (null elt)
|
|
|
|
|
(keymapp elt)))
|
1994-03-03 16:27:06 +00:00
|
|
|
|
(not (memq inner-def
|
|
|
|
|
key-substitution-in-progress)))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(substitute-key-definition olddef newdef keymap
|
|
|
|
|
inner-def
|
|
|
|
|
prefix1)))))
|
1997-05-22 19:00:25 +00:00
|
|
|
|
(setq i (1+ i))))
|
|
|
|
|
(if (char-table-p (car scan))
|
|
|
|
|
(map-char-table
|
|
|
|
|
(function (lambda (char defn)
|
|
|
|
|
(let ()
|
|
|
|
|
;; The inside of this let duplicates exactly
|
|
|
|
|
;; the inside of the previous let,
|
|
|
|
|
;; except that it uses set-char-table-range
|
|
|
|
|
;; instead of define-key.
|
|
|
|
|
(aset vec1 0 char)
|
|
|
|
|
(aset prefix1 (length prefix) char)
|
|
|
|
|
(let (inner-def skipped)
|
|
|
|
|
;; Skip past menu-prompt.
|
|
|
|
|
(while (stringp (car-safe defn))
|
|
|
|
|
(setq skipped (cons (car defn) skipped))
|
|
|
|
|
(setq defn (cdr defn)))
|
|
|
|
|
(and (consp defn) (consp (car defn))
|
|
|
|
|
(setq defn (cdr defn)))
|
|
|
|
|
(setq inner-def defn)
|
|
|
|
|
(while (and (symbolp inner-def)
|
|
|
|
|
(fboundp inner-def))
|
|
|
|
|
(setq inner-def (symbol-function inner-def)))
|
|
|
|
|
(if (or (eq defn olddef)
|
|
|
|
|
(and (or (stringp defn) (vectorp defn))
|
|
|
|
|
(equal defn olddef)))
|
1997-05-25 18:05:58 +00:00
|
|
|
|
(define-key keymap prefix1
|
|
|
|
|
(nconc (nreverse skipped) newdef))
|
1997-05-22 19:00:25 +00:00
|
|
|
|
(if (and (keymapp defn)
|
|
|
|
|
(let ((elt (lookup-key keymap prefix1)))
|
|
|
|
|
(or (null elt)
|
|
|
|
|
(keymapp elt)))
|
|
|
|
|
(not (memq inner-def
|
|
|
|
|
key-substitution-in-progress)))
|
|
|
|
|
(substitute-key-definition olddef newdef keymap
|
|
|
|
|
inner-def
|
|
|
|
|
prefix1)))))))
|
|
|
|
|
(car scan)))))
|
1992-09-20 02:22:09 +00:00
|
|
|
|
(setq scan (cdr scan)))))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
1993-06-26 04:20:42 +00:00
|
|
|
|
(defun define-key-after (keymap key definition after)
|
1993-06-26 04:18:37 +00:00
|
|
|
|
"Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
|
|
|
|
|
This is like `define-key' except that the binding for KEY is placed
|
|
|
|
|
just after the binding for the event AFTER, instead of at the beginning
|
1996-11-10 05:02:38 +00:00
|
|
|
|
of the map. Note that AFTER must be an event type (like KEY), NOT a command
|
|
|
|
|
\(like DEFINITION).
|
|
|
|
|
|
|
|
|
|
If AFTER is t, the new binding goes at the end of the keymap.
|
|
|
|
|
|
1994-04-07 07:18:20 +00:00
|
|
|
|
KEY must contain just one event type--that is to say, it must be
|
1996-11-10 05:02:38 +00:00
|
|
|
|
a string or vector of length 1.
|
|
|
|
|
|
|
|
|
|
The order of bindings in a keymap matters when it is used as a menu."
|
|
|
|
|
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(or (keymapp keymap)
|
|
|
|
|
(signal 'wrong-type-argument (list 'keymapp keymap)))
|
1993-07-20 18:09:21 +00:00
|
|
|
|
(if (> (length key) 1)
|
1993-07-13 04:00:04 +00:00
|
|
|
|
(error "multi-event key specified in `define-key-after'"))
|
1993-06-30 04:36:37 +00:00
|
|
|
|
(let ((tail keymap) done inserted
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(first (aref key 0)))
|
|
|
|
|
(while (and (not done) tail)
|
|
|
|
|
;; Delete any earlier bindings for the same key.
|
|
|
|
|
(if (eq (car-safe (car (cdr tail))) first)
|
|
|
|
|
(setcdr tail (cdr (cdr tail))))
|
|
|
|
|
;; When we reach AFTER's binding, insert the new binding after.
|
|
|
|
|
;; If we reach an inherited keymap, insert just before that.
|
1993-06-30 04:36:37 +00:00
|
|
|
|
;; If we reach the end of this keymap, insert at the end.
|
1996-11-10 05:02:38 +00:00
|
|
|
|
(if (or (and (eq (car-safe (car tail)) after)
|
|
|
|
|
(not (eq after t)))
|
1993-06-30 04:36:37 +00:00
|
|
|
|
(eq (car (cdr tail)) 'keymap)
|
|
|
|
|
(null (cdr tail)))
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(progn
|
1993-06-30 04:36:37 +00:00
|
|
|
|
;; Stop the scan only if we find a parent keymap.
|
|
|
|
|
;; Keep going past the inserted element
|
|
|
|
|
;; so we can delete any duplications that come later.
|
|
|
|
|
(if (eq (car (cdr tail)) 'keymap)
|
|
|
|
|
(setq done t))
|
|
|
|
|
;; Don't insert more than once.
|
|
|
|
|
(or inserted
|
|
|
|
|
(setcdr tail (cons (cons (aref key 0) definition) (cdr tail))))
|
|
|
|
|
(setq inserted t)))
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(setq tail (cdr tail)))))
|
|
|
|
|
|
1997-04-13 08:08:11 +00:00
|
|
|
|
(defmacro kbd (keys)
|
|
|
|
|
"Convert KEYS to the internal Emacs key representation.
|
|
|
|
|
KEYS should be a string constant in the format used for
|
|
|
|
|
saving keyboard macros (see `insert-kbd-macro')."
|
|
|
|
|
(read-kbd-macro keys))
|
|
|
|
|
|
1996-08-21 20:36:30 +00:00
|
|
|
|
(put 'keyboard-translate-table 'char-table-extra-slots 0)
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun keyboard-translate (from to)
|
|
|
|
|
"Translate character FROM to TO at a low level.
|
|
|
|
|
This function creates a `keyboard-translate-table' if necessary
|
|
|
|
|
and then modifies one entry in it."
|
1996-08-21 20:36:30 +00:00
|
|
|
|
(or (char-table-p keyboard-translate-table)
|
|
|
|
|
(setq keyboard-translate-table
|
|
|
|
|
(make-char-table 'keyboard-translate-table nil)))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(aset keyboard-translate-table from to))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;; The global keymap tree.
|
|
|
|
|
|
|
|
|
|
;;; global-map, esc-map, and ctl-x-map have their values set up in
|
|
|
|
|
;;; keymap.c; we just give them docstrings here.
|
|
|
|
|
|
|
|
|
|
(defvar global-map nil
|
|
|
|
|
"Default global keymap mapping Emacs keyboard input into commands.
|
|
|
|
|
The value is a keymap which is usually (but not necessarily) Emacs's
|
|
|
|
|
global map.")
|
|
|
|
|
|
|
|
|
|
(defvar esc-map nil
|
|
|
|
|
"Default keymap for ESC (meta) commands.
|
|
|
|
|
The normal global definition of the character ESC indirects to this keymap.")
|
|
|
|
|
|
|
|
|
|
(defvar ctl-x-map nil
|
|
|
|
|
"Default keymap for C-x commands.
|
|
|
|
|
The normal global definition of the character C-x indirects to this keymap.")
|
|
|
|
|
|
|
|
|
|
(defvar ctl-x-4-map (make-sparse-keymap)
|
|
|
|
|
"Keymap for subcommands of C-x 4")
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'ctl-x-4-prefix ctl-x-4-map)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(define-key ctl-x-map "4" 'ctl-x-4-prefix)
|
|
|
|
|
|
|
|
|
|
(defvar ctl-x-5-map (make-sparse-keymap)
|
|
|
|
|
"Keymap for frame commands.")
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'ctl-x-5-prefix ctl-x-5-map)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(define-key ctl-x-map "5" 'ctl-x-5-prefix)
|
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Event manipulation functions.
|
|
|
|
|
|
1995-02-08 03:51:58 +00:00
|
|
|
|
;; The call to `read' is to ensure that the value is computed at load time
|
|
|
|
|
;; and not compiled into the .elc file. The value is negative on most
|
|
|
|
|
;; machines, but not on all!
|
|
|
|
|
(defconst listify-key-sequence-1 (logior 128 (read "?\\M-\\^@")))
|
1993-05-27 00:06:08 +00:00
|
|
|
|
|
1993-03-06 05:54:29 +00:00
|
|
|
|
(defun listify-key-sequence (key)
|
|
|
|
|
"Convert a key sequence to a list of events."
|
|
|
|
|
(if (vectorp key)
|
|
|
|
|
(append key nil)
|
|
|
|
|
(mapcar (function (lambda (c)
|
|
|
|
|
(if (> c 127)
|
1993-05-27 00:06:08 +00:00
|
|
|
|
(logxor c listify-key-sequence-1)
|
1993-03-06 05:54:29 +00:00
|
|
|
|
c)))
|
|
|
|
|
(append key nil))))
|
|
|
|
|
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(defsubst eventp (obj)
|
|
|
|
|
"True if the argument is an event object."
|
|
|
|
|
(or (integerp obj)
|
|
|
|
|
(and (symbolp obj)
|
|
|
|
|
(get obj 'event-symbol-elements))
|
|
|
|
|
(and (consp obj)
|
|
|
|
|
(symbolp (car obj))
|
|
|
|
|
(get (car obj) 'event-symbol-elements))))
|
|
|
|
|
|
|
|
|
|
(defun event-modifiers (event)
|
|
|
|
|
"Returns a list of symbols representing the modifier keys in event EVENT.
|
|
|
|
|
The elements of the list may include `meta', `control',
|
1993-08-02 07:23:07 +00:00
|
|
|
|
`shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
|
|
|
|
|
and `down'."
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(let ((type event))
|
|
|
|
|
(if (listp type)
|
|
|
|
|
(setq type (car type)))
|
|
|
|
|
(if (symbolp type)
|
|
|
|
|
(cdr (get type 'event-symbol-elements))
|
|
|
|
|
(let ((list nil))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\M-\^@))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(setq list (cons 'meta list)))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (and (zerop (logand type ?\C-\^@))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(>= (logand type 127) 32))
|
|
|
|
|
(setq list (cons 'control list)))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (and (zerop (logand type ?\S-\^@))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(= (logand type 255) (downcase (logand type 255))))
|
|
|
|
|
(setq list (cons 'shift list)))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\H-\^@))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(setq list (cons 'hyper list)))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\s-\^@))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(setq list (cons 'super list)))
|
1995-02-08 03:51:58 +00:00
|
|
|
|
(or (zerop (logand type ?\A-\^@))
|
1993-03-07 07:35:57 +00:00
|
|
|
|
(setq list (cons 'alt list)))
|
|
|
|
|
list))))
|
|
|
|
|
|
1993-03-08 00:07:53 +00:00
|
|
|
|
(defun event-basic-type (event)
|
|
|
|
|
"Returns the basic type of the given event (all modifiers removed).
|
|
|
|
|
The value is an ASCII printing character (not upper case) or a symbol."
|
1993-06-17 00:16:29 +00:00
|
|
|
|
(if (consp event)
|
|
|
|
|
(setq event (car event)))
|
1993-03-08 00:07:53 +00:00
|
|
|
|
(if (symbolp event)
|
|
|
|
|
(car (get event 'event-symbol-elements))
|
|
|
|
|
(let ((base (logand event (1- (lsh 1 18)))))
|
|
|
|
|
(downcase (if (< base 32) (logior base 64) base)))))
|
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst mouse-movement-p (object)
|
|
|
|
|
"Return non-nil if OBJECT is a mouse movement event."
|
|
|
|
|
(and (consp object)
|
|
|
|
|
(eq (car object) 'mouse-movement)))
|
|
|
|
|
|
|
|
|
|
(defsubst event-start (event)
|
|
|
|
|
"Return the starting position of EVENT.
|
|
|
|
|
If EVENT is a mouse press or a mouse click, this returns the location
|
|
|
|
|
of the event.
|
|
|
|
|
If EVENT is a drag, this returns the drag's starting position.
|
|
|
|
|
The return value is of the form
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1993-03-08 08:10:13 +00:00
|
|
|
|
The `posn-' functions access elements of such lists."
|
|
|
|
|
(nth 1 event))
|
|
|
|
|
|
|
|
|
|
(defsubst event-end (event)
|
|
|
|
|
"Return the ending location of EVENT. EVENT should be a click or drag event.
|
|
|
|
|
If EVENT is a click event, this function is the same as `event-start'.
|
|
|
|
|
The return value is of the form
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1993-03-08 08:10:13 +00:00
|
|
|
|
The `posn-' functions access elements of such lists."
|
1993-06-22 02:02:00 +00:00
|
|
|
|
(nth (if (consp (nth 2 event)) 2 1) event))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
1993-08-02 07:23:07 +00:00
|
|
|
|
(defsubst event-click-count (event)
|
|
|
|
|
"Return the multi-click count of EVENT, a click or drag event.
|
|
|
|
|
The return value is a positive integer."
|
|
|
|
|
(if (integerp (nth 2 event)) (nth 2 event) 1))
|
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst posn-window (position)
|
|
|
|
|
"Return the window in POSITION.
|
|
|
|
|
POSITION should be a list of the form
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1993-03-08 08:10:13 +00:00
|
|
|
|
as returned by the `event-start' and `event-end' functions."
|
|
|
|
|
(nth 0 position))
|
|
|
|
|
|
|
|
|
|
(defsubst posn-point (position)
|
|
|
|
|
"Return the buffer location in POSITION.
|
|
|
|
|
POSITION should be a list of the form
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1993-03-08 08:10:13 +00:00
|
|
|
|
as returned by the `event-start' and `event-end' functions."
|
1993-07-05 04:33:42 +00:00
|
|
|
|
(if (consp (nth 1 position))
|
|
|
|
|
(car (nth 1 position))
|
|
|
|
|
(nth 1 position)))
|
1993-03-08 08:10:13 +00:00
|
|
|
|
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(defsubst posn-x-y (position)
|
|
|
|
|
"Return the x and y coordinates in POSITION.
|
1993-03-08 08:10:13 +00:00
|
|
|
|
POSITION should be a list of the form
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1993-03-08 08:10:13 +00:00
|
|
|
|
as returned by the `event-start' and `event-end' functions."
|
|
|
|
|
(nth 2 position))
|
|
|
|
|
|
1994-05-22 20:55:15 +00:00
|
|
|
|
(defun posn-col-row (position)
|
1994-05-26 21:53:37 +00:00
|
|
|
|
"Return the column and row in POSITION, measured in characters.
|
1994-02-23 05:08:28 +00:00
|
|
|
|
POSITION should be a list of the form
|
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1994-05-22 20:55:15 +00:00
|
|
|
|
as returned by the `event-start' and `event-end' functions.
|
|
|
|
|
For a scroll-bar event, the result column is 0, and the row
|
|
|
|
|
corresponds to the vertical position of the click in the scroll bar."
|
|
|
|
|
(let ((pair (nth 2 position))
|
|
|
|
|
(window (posn-window position)))
|
1994-05-26 21:53:37 +00:00
|
|
|
|
(if (eq (if (consp (nth 1 position))
|
|
|
|
|
(car (nth 1 position))
|
|
|
|
|
(nth 1 position))
|
1994-05-22 20:55:15 +00:00
|
|
|
|
'vertical-scroll-bar)
|
|
|
|
|
(cons 0 (scroll-bar-scale pair (1- (window-height window))))
|
1994-05-26 21:53:37 +00:00
|
|
|
|
(if (eq (if (consp (nth 1 position))
|
|
|
|
|
(car (nth 1 position))
|
|
|
|
|
(nth 1 position))
|
1994-05-22 20:55:15 +00:00
|
|
|
|
'horizontal-scroll-bar)
|
|
|
|
|
(cons (scroll-bar-scale pair (window-width window)) 0)
|
1994-05-23 03:15:35 +00:00
|
|
|
|
(let* ((frame (if (framep window) window (window-frame window)))
|
|
|
|
|
(x (/ (car pair) (frame-char-width frame)))
|
|
|
|
|
(y (/ (cdr pair) (frame-char-height frame))))
|
1994-05-22 20:55:15 +00:00
|
|
|
|
(cons x y))))))
|
1994-02-23 05:08:28 +00:00
|
|
|
|
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(defsubst posn-timestamp (position)
|
|
|
|
|
"Return the timestamp of POSITION.
|
|
|
|
|
POSITION should be a list of the form
|
1994-02-23 05:08:28 +00:00
|
|
|
|
(WINDOW BUFFER-POSITION (X . Y) TIMESTAMP)
|
1993-06-01 20:52:15 +00:00
|
|
|
|
as returned by the `event-start' and `event-end' functions."
|
1993-03-08 08:10:13 +00:00
|
|
|
|
(nth 3 position))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Obsolescent names for functions.
|
|
|
|
|
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'dot 'point)
|
|
|
|
|
(defalias 'dot-marker 'point-marker)
|
|
|
|
|
(defalias 'dot-min 'point-min)
|
|
|
|
|
(defalias 'dot-max 'point-max)
|
|
|
|
|
(defalias 'window-dot 'window-point)
|
|
|
|
|
(defalias 'set-window-dot 'set-window-point)
|
|
|
|
|
(defalias 'read-input 'read-string)
|
|
|
|
|
(defalias 'send-string 'process-send-string)
|
|
|
|
|
(defalias 'send-region 'process-send-region)
|
|
|
|
|
(defalias 'show-buffer 'set-window-buffer)
|
|
|
|
|
(defalias 'buffer-flush-undo 'buffer-disable-undo)
|
|
|
|
|
(defalias 'eval-current-buffer 'eval-buffer)
|
|
|
|
|
(defalias 'compiled-function-p 'byte-code-function-p)
|
1996-10-12 23:54:53 +00:00
|
|
|
|
(defalias 'define-function 'defalias)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1998-08-28 12:22:39 +00:00
|
|
|
|
(defalias 'sref 'aref)
|
|
|
|
|
(make-obsolete 'sref 'aref)
|
|
|
|
|
(make-obsolete 'char-bytes "Now this function always returns 1")
|
1998-01-09 22:13:08 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;; Some programs still use this as a function.
|
|
|
|
|
(defun baud-rate ()
|
1993-05-28 16:40:28 +00:00
|
|
|
|
"Obsolete function returning the value of the `baud-rate' variable.
|
|
|
|
|
Please convert your programs to use the variable `baud-rate' directly."
|
1993-04-10 06:21:55 +00:00
|
|
|
|
baud-rate)
|
|
|
|
|
|
1996-07-04 05:45:59 +00:00
|
|
|
|
(defalias 'focus-frame 'ignore)
|
|
|
|
|
(defalias 'unfocus-frame 'ignore)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Alternate names for functions - these are not being phased out.
|
|
|
|
|
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'string= 'string-equal)
|
|
|
|
|
(defalias 'string< 'string-lessp)
|
|
|
|
|
(defalias 'move-marker 'set-marker)
|
|
|
|
|
(defalias 'not 'null)
|
|
|
|
|
(defalias 'rplaca 'setcar)
|
|
|
|
|
(defalias 'rplacd 'setcdr)
|
1993-06-09 11:59:12 +00:00
|
|
|
|
(defalias 'beep 'ding) ;preserve lingual purity
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'indent-to-column 'indent-to)
|
|
|
|
|
(defalias 'backward-delete-char 'delete-backward-char)
|
|
|
|
|
(defalias 'search-forward-regexp (symbol-function 're-search-forward))
|
|
|
|
|
(defalias 'search-backward-regexp (symbol-function 're-search-backward))
|
|
|
|
|
(defalias 'int-to-string 'number-to-string)
|
1998-03-14 08:15:36 +00:00
|
|
|
|
(defalias 'store-match-data 'set-match-data)
|
1999-08-16 20:57:24 +00:00
|
|
|
|
(defalias 'point-at-eol 'line-end-position)
|
|
|
|
|
(defalias 'point-at-bol 'line-beginning-position)
|
1993-02-22 14:16:25 +00:00
|
|
|
|
|
|
|
|
|
;;; Should this be an obsolete name? If you decide it should, you get
|
|
|
|
|
;;; to go through all the sources and change them.
|
1993-04-23 06:50:48 +00:00
|
|
|
|
(defalias 'string-to-int 'string-to-number)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Hook manipulation functions.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(defun make-local-hook (hook)
|
|
|
|
|
"Make the hook HOOK local to the current buffer.
|
1998-11-30 23:44:10 +00:00
|
|
|
|
The return value is HOOK.
|
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
When a hook is local, its local and global values
|
|
|
|
|
work in concert: running the hook actually runs all the hook
|
|
|
|
|
functions listed in *either* the local value *or* the global value
|
|
|
|
|
of the hook variable.
|
|
|
|
|
|
1995-06-16 04:39:46 +00:00
|
|
|
|
This function works by making `t' a member of the buffer-local value,
|
|
|
|
|
which acts as a flag to run the hook functions in the default value as
|
|
|
|
|
well. This works for all normal hooks, but does not work for most
|
|
|
|
|
non-normal hooks yet. We will be changing the callers of non-normal
|
|
|
|
|
hooks so that they can handle localness; this has to be done one by
|
|
|
|
|
one.
|
|
|
|
|
|
|
|
|
|
This function does nothing if HOOK is already local in the current
|
|
|
|
|
buffer.
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
|
|
|
|
Do not use `make-local-variable' to make a hook variable buffer-local."
|
|
|
|
|
(if (local-variable-p hook)
|
|
|
|
|
nil
|
|
|
|
|
(or (boundp hook) (set hook nil))
|
|
|
|
|
(make-local-variable hook)
|
1998-11-30 23:44:10 +00:00
|
|
|
|
(set hook (list t)))
|
|
|
|
|
hook)
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
|
|
|
|
(defun add-hook (hook function &optional append local)
|
1993-08-02 07:23:07 +00:00
|
|
|
|
"Add to the value of HOOK the function FUNCTION.
|
|
|
|
|
FUNCTION is not added if already present.
|
|
|
|
|
FUNCTION is added (if necessary) at the beginning of the hook list
|
|
|
|
|
unless the optional argument APPEND is non-nil, in which case
|
|
|
|
|
FUNCTION is added at the end.
|
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
The optional fourth argument, LOCAL, if non-nil, says to modify
|
|
|
|
|
the hook's buffer-local value rather than its default value.
|
|
|
|
|
This makes no difference if the hook is not buffer-local.
|
|
|
|
|
To make a hook variable buffer-local, always use
|
|
|
|
|
`make-local-hook', not `make-local-variable'.
|
|
|
|
|
|
1993-08-02 07:23:07 +00:00
|
|
|
|
HOOK should be a symbol, and FUNCTION may be any valid function. If
|
|
|
|
|
HOOK is void, it is first set to nil. If HOOK's value is a single
|
1994-09-21 05:19:43 +00:00
|
|
|
|
function, it is changed to a list of functions."
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(or (boundp hook) (set hook nil))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(or (default-boundp hook) (set-default hook nil))
|
1993-08-02 07:23:07 +00:00
|
|
|
|
;; If the hook value is a single function, turn it into a list.
|
|
|
|
|
(let ((old (symbol-value hook)))
|
|
|
|
|
(if (or (not (listp old)) (eq (car old) 'lambda))
|
|
|
|
|
(set hook (list old))))
|
1994-10-01 04:36:28 +00:00
|
|
|
|
(if (or local
|
|
|
|
|
;; Detect the case where make-local-variable was used on a hook
|
|
|
|
|
;; and do what we used to do.
|
1995-06-17 19:47:52 +00:00
|
|
|
|
(and (local-variable-if-set-p hook)
|
1994-10-01 04:36:28 +00:00
|
|
|
|
(not (memq t (symbol-value hook)))))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
;; Alter the local value only.
|
1998-08-08 23:08:23 +00:00
|
|
|
|
(or (if (or (consp function) (byte-code-function-p function))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(member function (symbol-value hook))
|
|
|
|
|
(memq function (symbol-value hook)))
|
|
|
|
|
(set hook
|
|
|
|
|
(if append
|
|
|
|
|
(append (symbol-value hook) (list function))
|
|
|
|
|
(cons function (symbol-value hook)))))
|
|
|
|
|
;; Alter the global value (which is also the only value,
|
|
|
|
|
;; if the hook doesn't have a local value).
|
1998-08-08 23:08:23 +00:00
|
|
|
|
(or (if (or (consp function) (byte-code-function-p function))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(member function (default-value hook))
|
|
|
|
|
(memq function (default-value hook)))
|
|
|
|
|
(set-default hook
|
|
|
|
|
(if append
|
|
|
|
|
(append (default-value hook) (list function))
|
|
|
|
|
(cons function (default-value hook)))))))
|
|
|
|
|
|
|
|
|
|
(defun remove-hook (hook function &optional local)
|
1993-11-10 20:30:32 +00:00
|
|
|
|
"Remove from the value of HOOK the function FUNCTION.
|
|
|
|
|
HOOK should be a symbol, and FUNCTION may be any valid function. If
|
|
|
|
|
FUNCTION isn't the value of HOOK, or, if FUNCTION doesn't appear in the
|
1994-09-30 20:47:13 +00:00
|
|
|
|
list of hooks to run in HOOK, then nothing is done. See `add-hook'.
|
|
|
|
|
|
|
|
|
|
The optional third argument, LOCAL, if non-nil, says to modify
|
|
|
|
|
the hook's buffer-local value rather than its default value.
|
|
|
|
|
This makes no difference if the hook is not buffer-local.
|
|
|
|
|
To make a hook variable buffer-local, always use
|
|
|
|
|
`make-local-hook', not `make-local-variable'."
|
1993-11-10 20:30:32 +00:00
|
|
|
|
(if (or (not (boundp hook)) ;unbound symbol, or
|
1998-04-21 18:38:34 +00:00
|
|
|
|
(not (default-boundp hook))
|
1993-11-10 20:30:32 +00:00
|
|
|
|
(null (symbol-value hook)) ;value is nil, or
|
|
|
|
|
(null function)) ;function is nil, then
|
|
|
|
|
nil ;Do nothing.
|
1994-10-01 04:36:28 +00:00
|
|
|
|
(if (or local
|
|
|
|
|
;; Detect the case where make-local-variable was used on a hook
|
|
|
|
|
;; and do what we used to do.
|
|
|
|
|
(and (local-variable-p hook)
|
1998-09-21 17:57:46 +00:00
|
|
|
|
(consp (symbol-value hook))
|
|
|
|
|
(not (memq t (symbol-value hook)))))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(let ((hook-value (symbol-value hook)))
|
|
|
|
|
(if (consp hook-value)
|
|
|
|
|
(if (member function hook-value)
|
|
|
|
|
(setq hook-value (delete function (copy-sequence hook-value))))
|
|
|
|
|
(if (equal hook-value function)
|
|
|
|
|
(setq hook-value nil)))
|
|
|
|
|
(set hook hook-value))
|
|
|
|
|
(let ((hook-value (default-value hook)))
|
1998-09-21 17:57:46 +00:00
|
|
|
|
(if (and (consp hook-value) (not (functionp hook-value)))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(if (member function hook-value)
|
|
|
|
|
(setq hook-value (delete function (copy-sequence hook-value))))
|
|
|
|
|
(if (equal hook-value function)
|
|
|
|
|
(setq hook-value nil)))
|
|
|
|
|
(set-default hook hook-value)))))
|
1994-10-13 06:34:09 +00:00
|
|
|
|
|
|
|
|
|
(defun add-to-list (list-var element)
|
1994-10-14 23:50:35 +00:00
|
|
|
|
"Add to the value of LIST-VAR the element ELEMENT if it isn't there yet.
|
1995-12-21 18:11:20 +00:00
|
|
|
|
The test for presence of ELEMENT is done with `equal'.
|
1999-05-22 19:42:01 +00:00
|
|
|
|
If ELEMENT is added, it is added at the beginning of the list.
|
|
|
|
|
|
1994-10-14 23:50:35 +00:00
|
|
|
|
If you want to use `add-to-list' on a variable that is not defined
|
|
|
|
|
until a certain package is loaded, you should put the call to `add-to-list'
|
|
|
|
|
into a hook function that will be run only after loading the package.
|
|
|
|
|
`eval-after-load' provides one way to do this. In some cases
|
|
|
|
|
other hooks, such as major mode hooks, can do the job."
|
1998-04-07 18:22:28 +00:00
|
|
|
|
(if (member element (symbol-value list-var))
|
|
|
|
|
(symbol-value list-var)
|
|
|
|
|
(set list-var (cons element (symbol-value list-var)))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;;;; Specifying things to do after certain files are loaded.
|
|
|
|
|
|
|
|
|
|
(defun eval-after-load (file form)
|
|
|
|
|
"Arrange that, if FILE is ever loaded, FORM will be run at that time.
|
|
|
|
|
This makes or adds to an entry on `after-load-alist'.
|
1995-02-22 01:30:19 +00:00
|
|
|
|
If FILE is already loaded, evaluate FORM right now.
|
1994-01-05 20:31:27 +00:00
|
|
|
|
It does nothing if FORM is already on the list for FILE.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
FILE should be the name of a library, with no directory name."
|
1995-02-22 01:30:19 +00:00
|
|
|
|
;; Make sure there is an element for FILE.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(or (assoc file after-load-alist)
|
|
|
|
|
(setq after-load-alist (cons (list file) after-load-alist)))
|
1995-02-22 01:30:19 +00:00
|
|
|
|
;; Add FORM to the element if it isn't there.
|
1994-01-05 20:31:27 +00:00
|
|
|
|
(let ((elt (assoc file after-load-alist)))
|
|
|
|
|
(or (member form (cdr elt))
|
1995-02-22 01:30:19 +00:00
|
|
|
|
(progn
|
|
|
|
|
(nconc elt (list form))
|
|
|
|
|
;; If the file has been loaded already, run FORM right away.
|
|
|
|
|
(and (assoc file load-history)
|
|
|
|
|
(eval form)))))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
form)
|
|
|
|
|
|
|
|
|
|
(defun eval-next-after-load (file)
|
|
|
|
|
"Read the following input sexp, and run it whenever FILE is loaded.
|
|
|
|
|
This makes or adds to an entry on `after-load-alist'.
|
|
|
|
|
FILE should be the name of a library, with no directory name."
|
|
|
|
|
(eval-after-load file (read)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;; Input and display facilities.
|
|
|
|
|
|
1997-07-20 17:36:48 +00:00
|
|
|
|
(defvar read-quoted-char-radix 8
|
1997-07-17 06:24:48 +00:00
|
|
|
|
"*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
|
1997-07-20 17:36:48 +00:00
|
|
|
|
Legitimate radix values are 8, 10 and 16.")
|
|
|
|
|
|
|
|
|
|
(custom-declare-variable-early
|
|
|
|
|
'read-quoted-char-radix 8
|
|
|
|
|
"*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
|
1997-07-17 06:24:48 +00:00
|
|
|
|
Legitimate radix values are 8, 10 and 16."
|
|
|
|
|
:type '(choice (const 8) (const 10) (const 16))
|
|
|
|
|
:group 'editing-basics)
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun read-quoted-char (&optional prompt)
|
1997-07-16 05:34:38 +00:00
|
|
|
|
"Like `read-char', but do not allow quitting.
|
|
|
|
|
Also, if the first character read is an octal digit,
|
|
|
|
|
we read any number of octal digits and return the
|
1998-02-28 19:00:34 +00:00
|
|
|
|
specified character code. Any nondigit terminates the sequence.
|
1997-07-17 06:24:48 +00:00
|
|
|
|
If the terminator is RET, it is discarded;
|
1997-07-16 05:34:38 +00:00
|
|
|
|
any other terminator is used itself as input.
|
|
|
|
|
|
1998-02-28 19:00:34 +00:00
|
|
|
|
The optional argument PROMPT specifies a string to use to prompt the user.
|
|
|
|
|
The variable `read-quoted-char-radix' controls which radix to use
|
|
|
|
|
for numeric input."
|
1997-07-16 05:34:38 +00:00
|
|
|
|
(let ((message-log-max nil) done (first t) (code 0) char)
|
|
|
|
|
(while (not done)
|
|
|
|
|
(let ((inhibit-quit first)
|
1995-06-07 20:53:07 +00:00
|
|
|
|
;; Don't let C-h get the help message--only help function keys.
|
|
|
|
|
(help-char nil)
|
|
|
|
|
(help-form
|
|
|
|
|
"Type the special character you want to use,
|
1997-07-16 05:34:38 +00:00
|
|
|
|
or the octal character code.
|
1997-07-17 06:24:48 +00:00
|
|
|
|
RET terminates the character code and is discarded;
|
1997-07-16 05:34:38 +00:00
|
|
|
|
any other non-digit terminates the character code and is then used as input."))
|
1998-08-18 09:32:31 +00:00
|
|
|
|
(setq char (read-event (and prompt (format "%s-" prompt)) t))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(if inhibit-quit (setq quit-flag nil)))
|
1997-07-24 17:01:46 +00:00
|
|
|
|
;; Translate TAB key into control-I ASCII character, and so on.
|
|
|
|
|
(and char
|
|
|
|
|
(let ((translated (lookup-key function-key-map (vector char))))
|
1997-08-05 20:51:55 +00:00
|
|
|
|
(if (arrayp translated)
|
1997-07-24 17:01:46 +00:00
|
|
|
|
(setq char (aref translated 0)))))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(cond ((null char))
|
1997-07-17 06:24:48 +00:00
|
|
|
|
((not (integerp char))
|
|
|
|
|
(setq unread-command-events (list char)
|
|
|
|
|
done t))
|
1997-08-05 20:51:55 +00:00
|
|
|
|
((/= (logand char ?\M-\^@) 0)
|
|
|
|
|
;; Turn a meta-character into a character with the 0200 bit set.
|
|
|
|
|
(setq code (logior (logand char (lognot ?\M-\^@)) 128)
|
|
|
|
|
done t))
|
1997-07-17 06:24:48 +00:00
|
|
|
|
((and (<= ?0 char) (< char (+ ?0 (min 10 read-quoted-char-radix))))
|
|
|
|
|
(setq code (+ (* code read-quoted-char-radix) (- char ?0)))
|
|
|
|
|
(and prompt (setq prompt (message "%s %c" prompt char))))
|
|
|
|
|
((and (<= ?a (downcase char))
|
|
|
|
|
(< (downcase char) (+ ?a -10 (min 26 read-quoted-char-radix))))
|
1997-07-26 22:21:49 +00:00
|
|
|
|
(setq code (+ (* code read-quoted-char-radix)
|
|
|
|
|
(+ 10 (- (downcase char) ?a))))
|
1996-01-25 01:03:16 +00:00
|
|
|
|
(and prompt (setq prompt (message "%s %c" prompt char))))
|
1997-07-17 06:24:48 +00:00
|
|
|
|
((and (not first) (eq char ?\C-m))
|
1997-07-16 05:34:38 +00:00
|
|
|
|
(setq done t))
|
|
|
|
|
((not first)
|
|
|
|
|
(setq unread-command-events (list char)
|
|
|
|
|
done t))
|
|
|
|
|
(t (setq code char
|
|
|
|
|
done t)))
|
|
|
|
|
(setq first nil))
|
1997-08-05 20:51:55 +00:00
|
|
|
|
code))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
1998-03-08 00:16:38 +00:00
|
|
|
|
(defun read-passwd (prompt &optional confirm default)
|
|
|
|
|
"Read a password, prompting with PROMPT. Echo `.' for each character typed.
|
1997-12-21 00:50:07 +00:00
|
|
|
|
End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line.
|
1998-03-08 00:16:38 +00:00
|
|
|
|
Optional argument CONFIRM, if non-nil, then read it twice to make sure.
|
|
|
|
|
Optional DEFAULT is a default password to use instead of empty input."
|
|
|
|
|
(if confirm
|
|
|
|
|
(let (success)
|
|
|
|
|
(while (not success)
|
|
|
|
|
(let ((first (read-passwd prompt nil default))
|
|
|
|
|
(second (read-passwd "Confirm password: " nil default)))
|
|
|
|
|
(if (equal first second)
|
|
|
|
|
(setq success first)
|
|
|
|
|
(message "Password not repeated accurately; please start over")
|
|
|
|
|
(sit-for 1))))
|
|
|
|
|
success)
|
1998-10-13 03:44:06 +00:00
|
|
|
|
(clear-this-command-keys)
|
1998-03-08 00:16:38 +00:00
|
|
|
|
(let ((pass nil)
|
|
|
|
|
(c 0)
|
|
|
|
|
(echo-keystrokes 0)
|
|
|
|
|
(cursor-in-echo-area t))
|
|
|
|
|
(while (progn (message "%s%s"
|
|
|
|
|
prompt
|
|
|
|
|
(make-string (length pass) ?.))
|
1998-12-16 20:51:34 +00:00
|
|
|
|
(setq c (read-char nil t))
|
1998-03-08 00:16:38 +00:00
|
|
|
|
(and (/= c ?\r) (/= c ?\n) (/= c ?\e)))
|
|
|
|
|
(if (= c ?\C-u)
|
|
|
|
|
(setq pass "")
|
|
|
|
|
(if (and (/= c ?\b) (/= c ?\177))
|
|
|
|
|
(setq pass (concat pass (char-to-string c)))
|
|
|
|
|
(if (> (length pass) 0)
|
|
|
|
|
(setq pass (substring pass 0 -1))))))
|
|
|
|
|
(message nil)
|
|
|
|
|
(or pass default ""))))
|
1997-12-21 00:50:07 +00:00
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defun force-mode-line-update (&optional all)
|
|
|
|
|
"Force the mode-line of the current buffer to be redisplayed.
|
1994-04-11 19:59:49 +00:00
|
|
|
|
With optional non-nil ALL, force redisplay of all mode-lines."
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(if all (save-excursion (set-buffer (other-buffer))))
|
|
|
|
|
(set-buffer-modified-p (buffer-modified-p)))
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(defun momentary-string-display (string pos &optional exit-char message)
|
|
|
|
|
"Momentarily display STRING in the buffer at POS.
|
|
|
|
|
Display remains until next character is typed.
|
|
|
|
|
If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
|
|
|
|
|
otherwise it is then available as input (as a command if nothing else).
|
|
|
|
|
Display MESSAGE (optional fourth arg) in the echo area.
|
|
|
|
|
If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
|
|
|
|
|
(or exit-char (setq exit-char ?\ ))
|
1999-02-16 00:52:36 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
1994-03-28 06:08:35 +00:00
|
|
|
|
;; Don't modify the undo list at all.
|
|
|
|
|
(buffer-undo-list t)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(modified (buffer-modified-p))
|
|
|
|
|
(name buffer-file-name)
|
|
|
|
|
insert-end)
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
;; defeat file locking... don't try this at home, kids!
|
|
|
|
|
(setq buffer-file-name nil)
|
|
|
|
|
(insert-before-markers string)
|
1993-08-14 07:54:59 +00:00
|
|
|
|
(setq insert-end (point))
|
|
|
|
|
;; If the message end is off screen, recenter now.
|
1998-03-14 08:15:36 +00:00
|
|
|
|
(if (< (window-end nil t) insert-end)
|
1993-08-14 07:54:59 +00:00
|
|
|
|
(recenter (/ (window-height) 2)))
|
|
|
|
|
;; If that pushed message start off the screen,
|
|
|
|
|
;; scroll to start it at the top of the screen.
|
|
|
|
|
(move-to-window-line 0)
|
|
|
|
|
(if (> (point) pos)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(recenter 0))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(message (or message "Type %s to continue editing.")
|
|
|
|
|
(single-key-description exit-char))
|
1993-03-06 06:16:06 +00:00
|
|
|
|
(let ((char (read-event)))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(or (eq char exit-char)
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(setq unread-command-events (list char)))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(if insert-end
|
|
|
|
|
(save-excursion
|
|
|
|
|
(delete-region pos insert-end)))
|
|
|
|
|
(setq buffer-file-name name)
|
|
|
|
|
(set-buffer-modified-p modified))))
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
|
|
|
|
;;;; Miscellanea.
|
|
|
|
|
|
1994-12-25 22:20:06 +00:00
|
|
|
|
;; A number of major modes set this locally.
|
|
|
|
|
;; Give it a global value to avoid compiler warnings.
|
|
|
|
|
(defvar font-lock-defaults nil)
|
|
|
|
|
|
1998-02-04 21:04:41 +00:00
|
|
|
|
(defvar suspend-hook nil
|
|
|
|
|
"Normal hook run by `suspend-emacs', before suspending.")
|
|
|
|
|
|
|
|
|
|
(defvar suspend-resume-hook nil
|
|
|
|
|
"Normal hook run by `suspend-emacs', after Emacs is continued.")
|
|
|
|
|
|
1994-12-25 22:20:06 +00:00
|
|
|
|
;; Avoid compiler warnings about this variable,
|
|
|
|
|
;; which has a special meaning on certain system types.
|
|
|
|
|
(defvar buffer-file-type nil
|
|
|
|
|
"Non-nil if the visited file is a binary file.
|
|
|
|
|
This variable is meaningful on MS-DOG and Windows NT.
|
|
|
|
|
On those systems, it is automatically local in every buffer.
|
|
|
|
|
On other systems, this variable is normally always nil.")
|
|
|
|
|
|
1996-02-08 10:04:55 +00:00
|
|
|
|
;; This should probably be written in C (i.e., without using `walk-windows').
|
1996-02-28 09:22:11 +00:00
|
|
|
|
(defun get-buffer-window-list (buffer &optional minibuf frame)
|
1996-02-08 10:04:55 +00:00
|
|
|
|
"Return windows currently displaying BUFFER, or nil if none.
|
1996-02-28 09:22:11 +00:00
|
|
|
|
See `walk-windows' for the meaning of MINIBUF and FRAME."
|
1996-02-08 10:27:24 +00:00
|
|
|
|
(let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows)
|
1996-02-08 10:04:55 +00:00
|
|
|
|
(walk-windows (function (lambda (window)
|
|
|
|
|
(if (eq (window-buffer window) buffer)
|
|
|
|
|
(setq windows (cons window windows)))))
|
1996-02-28 09:22:11 +00:00
|
|
|
|
minibuf frame)
|
1996-02-08 10:04:55 +00:00
|
|
|
|
windows))
|
|
|
|
|
|
1994-07-12 01:06:27 +00:00
|
|
|
|
(defun ignore (&rest ignore)
|
|
|
|
|
"Do nothing and return nil.
|
|
|
|
|
This function accepts any number of arguments, but ignores them."
|
1994-05-07 22:48:29 +00:00
|
|
|
|
(interactive)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
nil)
|
|
|
|
|
|
|
|
|
|
(defun error (&rest args)
|
1996-01-04 19:00:38 +00:00
|
|
|
|
"Signal an error, making error message by passing all args to `format'.
|
|
|
|
|
In Emacs, the convention is that error messages start with a capital
|
|
|
|
|
letter but *do not* end with a period. Please follow this convention
|
|
|
|
|
for the sake of consistency."
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(while t
|
|
|
|
|
(signal 'error (list (apply 'format args)))))
|
|
|
|
|
|
1994-02-11 22:01:56 +00:00
|
|
|
|
(defalias 'user-original-login-name 'user-login-name)
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(defun start-process-shell-command (name buffer &rest args)
|
|
|
|
|
"Start a program in a subprocess. Return the process object for it.
|
|
|
|
|
Args are NAME BUFFER COMMAND &rest COMMAND-ARGS.
|
|
|
|
|
NAME is name for process. It is modified if necessary to make it unique.
|
|
|
|
|
BUFFER is the buffer or (buffer-name) to associate with the process.
|
|
|
|
|
Process output goes at end of that buffer, unless you specify
|
|
|
|
|
an output stream or filter function to handle the output.
|
|
|
|
|
BUFFER may be also nil, meaning that this process is not associated
|
|
|
|
|
with any buffer
|
|
|
|
|
Third arg is command name, the name of a shell command.
|
|
|
|
|
Remaining arguments are the arguments for the command.
|
1994-01-06 04:39:00 +00:00
|
|
|
|
Wildcards and redirection are handled as usual in the shell."
|
1994-11-03 21:23:40 +00:00
|
|
|
|
(cond
|
|
|
|
|
((eq system-type 'vax-vms)
|
|
|
|
|
(apply 'start-process name buffer args))
|
1994-11-19 14:06:09 +00:00
|
|
|
|
;; We used to use `exec' to replace the shell with the command,
|
|
|
|
|
;; but that failed to handle (...) and semicolon, etc.
|
1994-11-03 21:23:40 +00:00
|
|
|
|
(t
|
|
|
|
|
(start-process name buffer shell-file-name shell-command-switch
|
1994-11-19 14:06:09 +00:00
|
|
|
|
(mapconcat 'identity args " ")))))
|
1996-09-28 04:16:00 +00:00
|
|
|
|
|
1996-09-22 04:40:37 +00:00
|
|
|
|
(defmacro with-current-buffer (buffer &rest body)
|
|
|
|
|
"Execute the forms in BODY with BUFFER as the current buffer.
|
1996-10-03 02:13:52 +00:00
|
|
|
|
The value returned is the value of the last form in BODY.
|
|
|
|
|
See also `with-temp-buffer'."
|
1999-10-13 00:21:07 +00:00
|
|
|
|
(cons 'save-current-buffer
|
|
|
|
|
(cons (list 'set-buffer buffer)
|
|
|
|
|
body)))
|
1996-09-22 04:40:37 +00:00
|
|
|
|
|
1998-11-19 09:43:40 +00:00
|
|
|
|
(defmacro with-temp-file (file &rest body)
|
|
|
|
|
"Create a new buffer, evaluate BODY there, and write the buffer to FILE.
|
|
|
|
|
The value returned is the value of the last form in BODY.
|
1996-10-03 02:13:52 +00:00
|
|
|
|
See also `with-temp-buffer'."
|
1996-09-28 04:16:00 +00:00
|
|
|
|
(let ((temp-file (make-symbol "temp-file"))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(temp-buffer (make-symbol "temp-buffer")))
|
|
|
|
|
`(let ((,temp-file ,file)
|
|
|
|
|
(,temp-buffer
|
|
|
|
|
(get-buffer-create (generate-new-buffer-name " *temp file*"))))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(prog1
|
|
|
|
|
(with-current-buffer ,temp-buffer
|
1998-11-19 09:43:40 +00:00
|
|
|
|
,@body)
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(with-current-buffer ,temp-buffer
|
|
|
|
|
(widen)
|
|
|
|
|
(write-region (point-min) (point-max) ,temp-file nil 0)))
|
|
|
|
|
(and (buffer-name ,temp-buffer)
|
|
|
|
|
(kill-buffer ,temp-buffer))))))
|
|
|
|
|
|
1998-11-19 09:43:40 +00:00
|
|
|
|
(defmacro with-temp-message (message &rest body)
|
1999-01-06 15:23:46 +00:00
|
|
|
|
"Display MESSAGE temporarily if non-nil while BODY is evaluated.
|
1998-11-19 09:43:40 +00:00
|
|
|
|
The original message is restored to the echo area after BODY has finished.
|
|
|
|
|
The value returned is the value of the last form in BODY.
|
1999-01-06 15:23:46 +00:00
|
|
|
|
MESSAGE is written to the message log buffer if `message-log-max' is non-nil.
|
|
|
|
|
If MESSAGE is nil, the echo area and message log buffer are unchanged.
|
|
|
|
|
Use a MESSAGE of \"\" to temporarily clear the echo area."
|
1999-01-06 10:05:50 +00:00
|
|
|
|
(let ((current-message (make-symbol "current-message"))
|
|
|
|
|
(temp-message (make-symbol "with-temp-message")))
|
|
|
|
|
`(let ((,temp-message ,message)
|
|
|
|
|
(,current-message))
|
1998-11-19 09:43:40 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
1999-01-06 10:05:50 +00:00
|
|
|
|
(when ,temp-message
|
|
|
|
|
(setq ,current-message (current-message))
|
1999-05-07 09:42:50 +00:00
|
|
|
|
(message "%s" ,temp-message))
|
1998-11-19 09:43:40 +00:00
|
|
|
|
,@body)
|
1999-02-23 22:09:03 +00:00
|
|
|
|
(and ,temp-message ,current-message
|
|
|
|
|
(message "%s" ,current-message))))))
|
1998-11-19 09:43:40 +00:00
|
|
|
|
|
|
|
|
|
(defmacro with-temp-buffer (&rest body)
|
|
|
|
|
"Create a temporary buffer, and evaluate BODY there like `progn'.
|
1996-10-03 02:13:52 +00:00
|
|
|
|
See also `with-temp-file' and `with-output-to-string'."
|
|
|
|
|
(let ((temp-buffer (make-symbol "temp-buffer")))
|
|
|
|
|
`(let ((,temp-buffer
|
|
|
|
|
(get-buffer-create (generate-new-buffer-name " *temp*"))))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(with-current-buffer ,temp-buffer
|
1998-11-19 09:43:40 +00:00
|
|
|
|
,@body)
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(and (buffer-name ,temp-buffer)
|
|
|
|
|
(kill-buffer ,temp-buffer))))))
|
|
|
|
|
|
1996-09-24 20:03:15 +00:00
|
|
|
|
(defmacro with-output-to-string (&rest body)
|
|
|
|
|
"Execute BODY, return the text it sent to `standard-output', as a string."
|
1996-10-03 02:13:52 +00:00
|
|
|
|
`(let ((standard-output
|
|
|
|
|
(get-buffer-create (generate-new-buffer-name " *string-output*"))))
|
1996-09-24 20:03:15 +00:00
|
|
|
|
(let ((standard-output standard-output))
|
|
|
|
|
,@body)
|
1996-10-03 02:13:52 +00:00
|
|
|
|
(with-current-buffer standard-output
|
|
|
|
|
(prog1
|
|
|
|
|
(buffer-string)
|
|
|
|
|
(kill-buffer nil)))))
|
1996-11-09 21:46:35 +00:00
|
|
|
|
|
|
|
|
|
(defmacro combine-after-change-calls (&rest body)
|
|
|
|
|
"Execute BODY, but don't call the after-change functions till the end.
|
|
|
|
|
If BODY makes changes in the buffer, they are recorded
|
|
|
|
|
and the functions on `after-change-functions' are called several times
|
|
|
|
|
when BODY is finished.
|
1997-03-11 23:55:24 +00:00
|
|
|
|
The return value is the value of the last form in BODY.
|
1996-11-09 21:46:35 +00:00
|
|
|
|
|
|
|
|
|
If `before-change-functions' is non-nil, then calls to the after-change
|
|
|
|
|
functions can't be deferred, so in that case this macro has no effect.
|
|
|
|
|
|
|
|
|
|
Do not alter `after-change-functions' or `before-change-functions'
|
|
|
|
|
in BODY."
|
|
|
|
|
`(unwind-protect
|
|
|
|
|
(let ((combine-after-change-calls t))
|
|
|
|
|
. ,body)
|
|
|
|
|
(combine-after-change-execute)))
|
|
|
|
|
|
2000-01-12 03:04:55 +00:00
|
|
|
|
(defmacro with-syntax-table (table &rest body)
|
|
|
|
|
"Evaluate BODY with syntax table of current buffer set to a copy of TABLE.
|
|
|
|
|
The syntax table of the current buffer is saved, BODY is evaluated, and the
|
|
|
|
|
saved table is restored, even in case of an abnormal exit.
|
|
|
|
|
Value is what BODY returns."
|
|
|
|
|
(let ((old-table (gensym))
|
|
|
|
|
(old-buffer (gensym)))
|
|
|
|
|
`(let ((,old-table (syntax-table))
|
|
|
|
|
(,old-buffer (current-buffer)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(set-syntax-table (copy-syntax-table ,table))
|
|
|
|
|
,@body)
|
|
|
|
|
(save-current-buffer
|
|
|
|
|
(set-buffer ,old-buffer)
|
|
|
|
|
(set-syntax-table ,old-table))))))
|
1996-10-03 02:13:52 +00:00
|
|
|
|
|
1996-08-28 22:44:18 +00:00
|
|
|
|
(defvar save-match-data-internal)
|
|
|
|
|
|
|
|
|
|
;; We use save-match-data-internal as the local variable because
|
|
|
|
|
;; that works ok in practice (people should not use that variable elsewhere).
|
|
|
|
|
;; We used to use an uninterned symbol; the compiler handles that properly
|
|
|
|
|
;; now, but it generates slower code.
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(defmacro save-match-data (&rest body)
|
|
|
|
|
"Execute the BODY forms, restoring the global value of the match data."
|
Fix bootstrapping problems.
Use the system locale to specify Emacs locale defaults.
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* subr.el (save-match-data): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
* language/japan-util.el (setup-japanese-environment-internal):
Prefer japanese-iso-8bit if the system-type is usg-unix-v.
* startup.el (iso-8859-n-locale-regexp): Remove.
(locale-translation-file-name): Move to mule-cmds.el.
(command-line): Move locale-stuff into set-locale-environment.
1999-10-19 07:18:58 +00:00
|
|
|
|
;; It is better not to use backquote here,
|
|
|
|
|
;; because that makes a bootstrapping problem
|
|
|
|
|
;; if you need to recompile all the Lisp files using interpreted code.
|
|
|
|
|
(list 'let
|
|
|
|
|
'((save-match-data-internal (match-data)))
|
|
|
|
|
(list 'unwind-protect
|
|
|
|
|
(cons 'progn body)
|
|
|
|
|
'(set-match-data save-match-data-internal))))
|
1995-03-23 08:43:08 +00:00
|
|
|
|
|
1995-03-24 09:01:09 +00:00
|
|
|
|
(defun match-string (num &optional string)
|
1995-03-23 08:43:08 +00:00
|
|
|
|
"Return string of text matched by last search.
|
|
|
|
|
NUM specifies which parenthesized expression in the last regexp.
|
|
|
|
|
Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
|
|
|
|
|
Zero means the entire text matched by the whole regexp or whole string.
|
|
|
|
|
STRING should be given if the last search was by `string-match' on STRING."
|
1995-03-24 09:01:09 +00:00
|
|
|
|
(if (match-beginning num)
|
|
|
|
|
(if string
|
|
|
|
|
(substring string (match-beginning num) (match-end num))
|
|
|
|
|
(buffer-substring (match-beginning num) (match-end num)))))
|
1995-01-27 07:06:27 +00:00
|
|
|
|
|
1997-12-21 02:08:37 +00:00
|
|
|
|
(defun match-string-no-properties (num &optional string)
|
|
|
|
|
"Return string of text matched by last search, without text properties.
|
|
|
|
|
NUM specifies which parenthesized expression in the last regexp.
|
|
|
|
|
Value is nil if NUMth pair didn't match, or there were less than NUM pairs.
|
|
|
|
|
Zero means the entire text matched by the whole regexp or whole string.
|
|
|
|
|
STRING should be given if the last search was by `string-match' on STRING."
|
|
|
|
|
(if (match-beginning num)
|
|
|
|
|
(if string
|
|
|
|
|
(let ((result
|
|
|
|
|
(substring string (match-beginning num) (match-end num))))
|
|
|
|
|
(set-text-properties 0 (length result) nil result)
|
|
|
|
|
result)
|
|
|
|
|
(buffer-substring-no-properties (match-beginning num)
|
|
|
|
|
(match-end num)))))
|
|
|
|
|
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(defun split-string (string &optional separators)
|
|
|
|
|
"Splits STRING into substrings where there are matches for SEPARATORS.
|
|
|
|
|
Each match for SEPARATORS is a splitting point.
|
|
|
|
|
The substrings between the splitting points are made into a list
|
|
|
|
|
which is returned.
|
1997-12-21 01:35:50 +00:00
|
|
|
|
If SEPARATORS is absent, it defaults to \"[ \\f\\t\\n\\r\\v]+\".
|
|
|
|
|
|
|
|
|
|
If there is match for SEPARATORS at the beginning of STRING, we do not
|
|
|
|
|
include a null substring for that. Likewise, if there is a match
|
|
|
|
|
at the end of STRING, we don't include a null substring for that."
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(let ((rexp (or separators "[ \f\t\n\r\v]+"))
|
|
|
|
|
(start 0)
|
1997-12-21 01:35:50 +00:00
|
|
|
|
notfirst
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(list nil))
|
1997-12-21 01:35:50 +00:00
|
|
|
|
(while (and (string-match rexp string
|
|
|
|
|
(if (and notfirst
|
|
|
|
|
(= start (match-beginning 0))
|
|
|
|
|
(< start (length string)))
|
|
|
|
|
(1+ start) start))
|
|
|
|
|
(< (match-beginning 0) (length string)))
|
|
|
|
|
(setq notfirst t)
|
1996-09-25 22:35:17 +00:00
|
|
|
|
(or (eq (match-beginning 0) 0)
|
1997-12-21 01:35:50 +00:00
|
|
|
|
(and (eq (match-beginning 0) (match-end 0))
|
|
|
|
|
(eq (match-beginning 0) start))
|
1996-09-24 21:19:03 +00:00
|
|
|
|
(setq list
|
|
|
|
|
(cons (substring string start (match-beginning 0))
|
|
|
|
|
list)))
|
|
|
|
|
(setq start (match-end 0)))
|
|
|
|
|
(or (eq start (length string))
|
|
|
|
|
(setq list
|
|
|
|
|
(cons (substring string start)
|
|
|
|
|
list)))
|
|
|
|
|
(nreverse list)))
|
1999-01-17 18:55:53 +00:00
|
|
|
|
|
|
|
|
|
(defun subst-char-in-string (fromchar tochar string &optional inplace)
|
|
|
|
|
"Replace FROMCHAR with TOCHAR in STRING each time it occurs.
|
|
|
|
|
Unless optional argument INPLACE is non-nil, return a new string."
|
|
|
|
|
(let ((i (length string))
|
|
|
|
|
(newstr (if inplace string (copy-sequence string))))
|
|
|
|
|
(while (> i 0)
|
|
|
|
|
(setq i (1- i))
|
|
|
|
|
(if (eq (aref newstr i) fromchar)
|
|
|
|
|
(aset newstr i tochar)))
|
|
|
|
|
newstr))
|
1996-09-28 04:16:00 +00:00
|
|
|
|
|
1993-12-31 09:25:12 +00:00
|
|
|
|
(defun shell-quote-argument (argument)
|
|
|
|
|
"Quote an argument for passing as argument to an inferior shell."
|
1995-07-01 21:48:13 +00:00
|
|
|
|
(if (eq system-type 'ms-dos)
|
1999-09-14 10:11:19 +00:00
|
|
|
|
;; Quote using double quotes, but escape any existing quotes in
|
|
|
|
|
;; the argument with backslashes.
|
|
|
|
|
(let ((result "")
|
|
|
|
|
(start 0)
|
|
|
|
|
end)
|
|
|
|
|
(if (or (null (string-match "[^\"]" argument))
|
|
|
|
|
(< (match-end 0) (length argument)))
|
|
|
|
|
(while (string-match "[\"]" argument start)
|
|
|
|
|
(setq end (match-beginning 0)
|
|
|
|
|
result (concat result (substring argument start end)
|
|
|
|
|
"\\" (substring argument end (1+ end)))
|
|
|
|
|
start (1+ end))))
|
|
|
|
|
(concat "\"" result (substring argument start) "\""))
|
1995-07-01 21:48:13 +00:00
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
(concat "\"" argument "\"")
|
1997-05-01 02:03:16 +00:00
|
|
|
|
(if (equal argument "")
|
|
|
|
|
"''"
|
|
|
|
|
;; Quote everything except POSIX filename characters.
|
|
|
|
|
;; This should be safe enough even for really weird shells.
|
|
|
|
|
(let ((result "") (start 0) end)
|
|
|
|
|
(while (string-match "[^-0-9a-zA-Z_./]" argument start)
|
|
|
|
|
(setq end (match-beginning 0)
|
|
|
|
|
result (concat result (substring argument start end)
|
|
|
|
|
"\\" (substring argument end (1+ end)))
|
|
|
|
|
start (1+ end)))
|
|
|
|
|
(concat result (substring argument start)))))))
|
1993-12-31 09:25:12 +00:00
|
|
|
|
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(defun make-syntax-table (&optional oldtable)
|
1994-01-03 07:41:00 +00:00
|
|
|
|
"Return a new syntax table.
|
1997-05-01 06:47:29 +00:00
|
|
|
|
If OLDTABLE is non-nil, copy OLDTABLE.
|
|
|
|
|
Otherwise, create a syntax table which inherits
|
|
|
|
|
all letters and control characters from the standard syntax table;
|
|
|
|
|
other characters are copied from the standard syntax table."
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(if oldtable
|
|
|
|
|
(copy-syntax-table oldtable)
|
|
|
|
|
(let ((table (copy-syntax-table))
|
|
|
|
|
i)
|
|
|
|
|
(setq i 0)
|
|
|
|
|
(while (<= i 31)
|
1995-10-11 17:14:08 +00:00
|
|
|
|
(aset table i nil)
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq i ?A)
|
|
|
|
|
(while (<= i ?Z)
|
1995-10-11 17:14:08 +00:00
|
|
|
|
(aset table i nil)
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq i ?a)
|
|
|
|
|
(while (<= i ?z)
|
1995-10-11 17:14:08 +00:00
|
|
|
|
(aset table i nil)
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq i 128)
|
|
|
|
|
(while (<= i 255)
|
1995-10-11 17:14:08 +00:00
|
|
|
|
(aset table i nil)
|
1994-02-08 05:06:07 +00:00
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
table)))
|
1997-03-11 23:55:24 +00:00
|
|
|
|
|
|
|
|
|
(defun add-to-invisibility-spec (arg)
|
|
|
|
|
"Add elements to `buffer-invisibility-spec'.
|
|
|
|
|
See documentation for `buffer-invisibility-spec' for the kind of elements
|
|
|
|
|
that can be added."
|
|
|
|
|
(cond
|
|
|
|
|
((or (null buffer-invisibility-spec) (eq buffer-invisibility-spec t))
|
|
|
|
|
(setq buffer-invisibility-spec (list arg)))
|
|
|
|
|
(t
|
1997-03-14 17:58:03 +00:00
|
|
|
|
(setq buffer-invisibility-spec
|
|
|
|
|
(cons arg buffer-invisibility-spec)))))
|
1997-03-11 23:55:24 +00:00
|
|
|
|
|
|
|
|
|
(defun remove-from-invisibility-spec (arg)
|
|
|
|
|
"Remove elements from `buffer-invisibility-spec'."
|
1999-02-02 02:26:12 +00:00
|
|
|
|
(if (consp buffer-invisibility-spec)
|
1997-03-12 02:08:10 +00:00
|
|
|
|
(setq buffer-invisibility-spec (delete arg buffer-invisibility-spec))))
|
1995-02-25 04:44:08 +00:00
|
|
|
|
|
|
|
|
|
(defun global-set-key (key command)
|
|
|
|
|
"Give KEY a global binding as COMMAND.
|
1997-12-04 05:28:27 +00:00
|
|
|
|
COMMAND is the command definition to use; usually it is
|
|
|
|
|
a symbol naming an interactively-callable function.
|
|
|
|
|
KEY is a key sequence; noninteractively, it is a string or vector
|
|
|
|
|
of characters or event types, and non-ASCII characters with codes
|
|
|
|
|
above 127 (such as ISO Latin-1) can be included if you use a vector.
|
|
|
|
|
|
|
|
|
|
Note that if KEY has a local binding in the current buffer,
|
|
|
|
|
that local binding will continue to shadow any global binding
|
|
|
|
|
that you make with this function."
|
1995-02-25 04:44:08 +00:00
|
|
|
|
(interactive "KSet key globally: \nCSet key %s to command: ")
|
|
|
|
|
(or (vectorp key) (stringp key)
|
|
|
|
|
(signal 'wrong-type-argument (list 'arrayp key)))
|
1998-04-16 05:40:48 +00:00
|
|
|
|
(define-key (current-global-map) key command))
|
1995-02-25 04:44:08 +00:00
|
|
|
|
|
|
|
|
|
(defun local-set-key (key command)
|
|
|
|
|
"Give KEY a local binding as COMMAND.
|
1997-12-04 05:28:27 +00:00
|
|
|
|
COMMAND is the command definition to use; usually it is
|
|
|
|
|
a symbol naming an interactively-callable function.
|
|
|
|
|
KEY is a key sequence; noninteractively, it is a string or vector
|
|
|
|
|
of characters or event types, and non-ASCII characters with codes
|
|
|
|
|
above 127 (such as ISO Latin-1) can be included if you use a vector.
|
|
|
|
|
|
1995-02-25 04:44:08 +00:00
|
|
|
|
The binding goes in the current buffer's local map,
|
|
|
|
|
which in most cases is shared with all other buffers in the same major mode."
|
|
|
|
|
(interactive "KSet key locally: \nCSet key %s locally to command: ")
|
|
|
|
|
(let ((map (current-local-map)))
|
|
|
|
|
(or map
|
|
|
|
|
(use-local-map (setq map (make-sparse-keymap))))
|
|
|
|
|
(or (vectorp key) (stringp key)
|
|
|
|
|
(signal 'wrong-type-argument (list 'arrayp key)))
|
1998-04-16 05:40:48 +00:00
|
|
|
|
(define-key map key command)))
|
1994-01-03 07:41:00 +00:00
|
|
|
|
|
1995-02-25 04:44:08 +00:00
|
|
|
|
(defun global-unset-key (key)
|
|
|
|
|
"Remove global binding of KEY.
|
|
|
|
|
KEY is a string representing a sequence of keystrokes."
|
|
|
|
|
(interactive "kUnset key globally: ")
|
|
|
|
|
(global-set-key key nil))
|
|
|
|
|
|
1995-02-25 04:57:17 +00:00
|
|
|
|
(defun local-unset-key (key)
|
1995-02-25 04:44:08 +00:00
|
|
|
|
"Remove local binding of KEY.
|
|
|
|
|
KEY is a string representing a sequence of keystrokes."
|
|
|
|
|
(interactive "kUnset key locally: ")
|
|
|
|
|
(if (current-local-map)
|
1995-02-25 04:57:17 +00:00
|
|
|
|
(local-set-key key nil))
|
1995-02-25 04:44:08 +00:00
|
|
|
|
nil)
|
|
|
|
|
|
1995-05-30 18:39:33 +00:00
|
|
|
|
;; We put this here instead of in frame.el so that it's defined even on
|
|
|
|
|
;; systems where frame.el isn't loaded.
|
|
|
|
|
(defun frame-configuration-p (object)
|
|
|
|
|
"Return non-nil if OBJECT seems to be a frame configuration.
|
|
|
|
|
Any list whose car is `frame-configuration' is assumed to be a frame
|
|
|
|
|
configuration."
|
|
|
|
|
(and (consp object)
|
|
|
|
|
(eq (car object) 'frame-configuration)))
|
|
|
|
|
|
1997-04-12 19:13:07 +00:00
|
|
|
|
(defun functionp (object)
|
1997-07-20 17:36:48 +00:00
|
|
|
|
"Non-nil if OBJECT is a type of object that can be called as a function."
|
1997-08-05 20:52:56 +00:00
|
|
|
|
(or (subrp object) (byte-code-function-p object)
|
1997-04-12 19:13:07 +00:00
|
|
|
|
(eq (car-safe object) 'lambda)
|
|
|
|
|
(and (symbolp object) (fboundp object))))
|
|
|
|
|
|
1993-04-10 06:21:55 +00:00
|
|
|
|
;; now in fns.c
|
|
|
|
|
;(defun nth (n list)
|
|
|
|
|
; "Returns the Nth element of LIST.
|
|
|
|
|
;N counts from zero. If LIST is not that long, nil is returned."
|
|
|
|
|
; (car (nthcdr n list)))
|
|
|
|
|
;
|
|
|
|
|
;(defun copy-alist (alist)
|
|
|
|
|
; "Return a copy of ALIST.
|
|
|
|
|
;This is a new alist which represents the same mapping
|
|
|
|
|
;from objects to objects, but does not share the alist structure with ALIST.
|
|
|
|
|
;The objects mapped (cars and cdrs of elements of the alist)
|
|
|
|
|
;are shared, however."
|
|
|
|
|
; (setq alist (copy-sequence alist))
|
|
|
|
|
; (let ((tail alist))
|
|
|
|
|
; (while tail
|
|
|
|
|
; (if (consp (car tail))
|
|
|
|
|
; (setcar tail (cons (car (car tail)) (cdr (car tail)))))
|
|
|
|
|
; (setq tail (cdr tail))))
|
|
|
|
|
; alist)
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
1999-07-30 18:40:22 +00:00
|
|
|
|
(defun assoc-delete-all (key alist)
|
|
|
|
|
"Delete from ALIST all elements whose car is KEY.
|
|
|
|
|
Return the modified alist."
|
|
|
|
|
(setq alist (copy-sequence alist))
|
|
|
|
|
(let ((tail alist))
|
|
|
|
|
(while tail
|
|
|
|
|
(if (eq (car (car tail)) key)
|
|
|
|
|
(setq alist (delq (car tail) alist)))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
alist))
|
|
|
|
|
|
1999-09-11 01:08:15 +00:00
|
|
|
|
(defun make-temp-file (prefix &optional dir-flag)
|
|
|
|
|
"Create a temporary file.
|
|
|
|
|
The returned file name (created by appending some random characters at the end
|
|
|
|
|
of PREFIX, and expanding against `temporary-file-directory' if necessary,
|
|
|
|
|
is guaranteed to point to a newly created empty file.
|
|
|
|
|
You can then use `write-region' to write new data into the file.
|
|
|
|
|
|
|
|
|
|
If DIR-FLAG is non-nil, create a new empty directory instead of a file."
|
|
|
|
|
(let (file)
|
|
|
|
|
(while (condition-case ()
|
|
|
|
|
(progn
|
|
|
|
|
(setq file
|
|
|
|
|
(make-temp-name
|
|
|
|
|
(expand-file-name prefix temporary-file-directory)))
|
|
|
|
|
(if dir-flag
|
|
|
|
|
(make-directory file)
|
|
|
|
|
(write-region "" nil file nil 'silent nil 'excl))
|
|
|
|
|
nil)
|
|
|
|
|
(file-already-exists t))
|
|
|
|
|
;; the file was somehow created by someone else between
|
|
|
|
|
;; `make-temp-name' and `write-region', let's try again.
|
|
|
|
|
nil)
|
|
|
|
|
file))
|
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; subr.el ends here
|