1992-05-30 21:11:25 +00:00
|
|
|
|
;;; subr.el --- basic lisp subroutines for Emacs
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
1994-05-03 22:46:37 +00:00
|
|
|
|
;;; Copyright (C) 1985, 1986, 1992, 1994 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
|
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
|
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; Code:
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
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'.
|
|
|
|
|
DOCSTRING should be a string, as described for `defun'. It may be omitted.
|
|
|
|
|
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)))
|
|
|
|
|
|
|
|
|
|
;;(defmacro defun-inline (name args &rest body)
|
|
|
|
|
;; "Create an \"inline defun\" (actually a macro).
|
|
|
|
|
;;Use just like `defun'."
|
|
|
|
|
;; (nconc (list 'defmacro name '(&rest args))
|
|
|
|
|
;; (if (stringp (car body))
|
|
|
|
|
;; (prog1 (list (car body))
|
|
|
|
|
;; (setq body (or (cdr body) body))))
|
|
|
|
|
;; (list (list 'cons (list 'quote
|
|
|
|
|
;; (cons 'lambda (cons args body)))
|
|
|
|
|
;; 'args))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;; Window tree functions.
|
|
|
|
|
|
1994-03-20 18:59:22 +00:00
|
|
|
|
(defun one-window-p (&optional nomini all-frames)
|
1994-08-11 20:25:20 +00:00
|
|
|
|
"Returns non-nil if the selected window is the only window (in its frame).
|
1990-11-05 10:06:02 +00:00
|
|
|
|
Optional arg NOMINI non-nil means don't count the minibuffer
|
1994-03-20 18:59:22 +00:00
|
|
|
|
even if it is active.
|
|
|
|
|
|
|
|
|
|
The optional arg ALL-FRAMES t means count windows on all frames.
|
|
|
|
|
If it is `visible', count windows on all visible frames.
|
|
|
|
|
ALL-FRAMES nil or omitted means count only the selected frame,
|
|
|
|
|
plus the minibuffer it uses (which may be on another frame).
|
|
|
|
|
If ALL-FRAMES is neither nil nor t, count only the selected frame."
|
1992-06-10 02:47:07 +00:00
|
|
|
|
(let ((base-window (selected-window)))
|
|
|
|
|
(if (and nomini (eq base-window (minibuffer-window)))
|
|
|
|
|
(setq base-window (next-window base-window)))
|
|
|
|
|
(eq base-window
|
1994-03-20 18:59:22 +00:00
|
|
|
|
(next-window base-window (if nomini 'arg) all-frames))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1992-07-15 03:24:58 +00:00
|
|
|
|
(defun walk-windows (proc &optional minibuf all-frames)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
"Cycle through all visible windows, calling PROC for each one.
|
|
|
|
|
PROC is called with a window as argument.
|
|
|
|
|
Optional second arg MINIBUF t means count the minibuffer window
|
|
|
|
|
even if not active. If MINIBUF is neither t nor nil it means
|
|
|
|
|
not to count the minibuffer even if it is active.
|
1993-02-26 06:28:04 +00:00
|
|
|
|
|
|
|
|
|
Optional third arg ALL-FRAMES, if t, means include all frames.
|
|
|
|
|
ALL-FRAMES nil or omitted means cycle within the selected frame,
|
|
|
|
|
but include the minibuffer window (if MINIBUF says so) that that
|
|
|
|
|
frame uses, even if it is on another frame.
|
|
|
|
|
If ALL-FRAMES is neither nil nor t, stick strictly to the selected frame."
|
1993-11-24 06:46:26 +00:00
|
|
|
|
;; If we start from the minibuffer window, don't fail to come back to it.
|
|
|
|
|
(if (window-minibuffer-p (selected-window))
|
|
|
|
|
(setq minibuf t))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(let* ((walk-windows-start (selected-window))
|
|
|
|
|
(walk-windows-current walk-windows-start))
|
|
|
|
|
(while (progn
|
|
|
|
|
(setq walk-windows-current
|
1992-07-15 03:24:58 +00:00
|
|
|
|
(next-window walk-windows-current minibuf all-frames))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(funcall proc walk-windows-current)
|
|
|
|
|
(not (eq walk-windows-current walk-windows-start))))))
|
|
|
|
|
|
1993-08-08 19:18:26 +00:00
|
|
|
|
(defun minibuffer-window-active-p (window)
|
|
|
|
|
"Return t if WINDOW (a minibuffer window) is now active."
|
|
|
|
|
;; nil nil means include WINDOW's frame
|
|
|
|
|
;; and other frames using WINDOW as minibuffer,
|
|
|
|
|
;; and include minibuffer if active.
|
|
|
|
|
(let ((prev (previous-window window nil nil)))
|
|
|
|
|
;; If PREV equals WINDOW, WINDOW must be on a minibuffer-only frame
|
|
|
|
|
;; and it's not currently being used. So return nil.
|
|
|
|
|
(and (not (eq window prev))
|
|
|
|
|
(let ((should-be-same (next-window prev nil nil)))
|
|
|
|
|
;; If next-window doesn't reverse previous-window,
|
|
|
|
|
;; WINDOW must be outside the cycle specified by nil nil.
|
|
|
|
|
(eq should-be-same window)))))
|
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)))
|
|
|
|
|
(if (eq 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.
|
|
|
|
|
(keymapp (lookup-key keymap prefix1))
|
|
|
|
|
;; 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)))))
|
|
|
|
|
(if (arrayp (car scan))
|
|
|
|
|
(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)))
|
|
|
|
|
(if (eq 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
|
|
|
|
(keymapp (lookup-key keymap prefix1))
|
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)))))
|
|
|
|
|
(setq i (1+ i))))))
|
|
|
|
|
(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
|
|
|
|
|
of the map.
|
1993-07-13 04:00:04 +00:00
|
|
|
|
The order matters when the keymap is used as a menu.
|
1994-04-07 07:18:20 +00:00
|
|
|
|
KEY must contain just one event type--that is to say, it must be
|
|
|
|
|
a string or vector of length 1."
|
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.
|
1993-06-26 04:18:37 +00:00
|
|
|
|
(if (or (eq (car-safe (car tail)) after)
|
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)))))
|
|
|
|
|
|
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."
|
|
|
|
|
(or (arrayp keyboard-translate-table)
|
|
|
|
|
(setq keyboard-translate-table ""))
|
|
|
|
|
(if (or (> from (length keyboard-translate-table))
|
|
|
|
|
(> to (length keyboard-translate-table)))
|
|
|
|
|
(progn
|
|
|
|
|
(let* ((i (length keyboard-translate-table))
|
1993-07-22 22:28:36 +00:00
|
|
|
|
(table (concat keyboard-translate-table
|
|
|
|
|
(make-string (- 256 i) 0))))
|
1993-04-10 06:21:55 +00:00
|
|
|
|
(while (< i 256)
|
|
|
|
|
(aset table i i)
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq keyboard-translate-table table))))
|
|
|
|
|
(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.
|
|
|
|
|
|
1993-05-27 00:06:08 +00:00
|
|
|
|
;; This code exists specifically to make sure that the
|
|
|
|
|
;; resulting number does not appear in the .elc file.
|
|
|
|
|
;; The number is negative on most machines, but not on all!
|
|
|
|
|
(defconst listify-key-sequence-1
|
|
|
|
|
(lsh 1 7))
|
1995-01-09 09:47:15 +00:00
|
|
|
|
(setq listify-key-sequence-1 (logior (lsh 1 27) listify-key-sequence-1))
|
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))
|
|
|
|
|
(or (zerop (logand type (lsh 1 23)))
|
|
|
|
|
(setq list (cons 'meta list)))
|
|
|
|
|
(or (and (zerop (logand type (lsh 1 22)))
|
|
|
|
|
(>= (logand type 127) 32))
|
|
|
|
|
(setq list (cons 'control list)))
|
|
|
|
|
(or (and (zerop (logand type (lsh 1 21)))
|
|
|
|
|
(= (logand type 255) (downcase (logand type 255))))
|
|
|
|
|
(setq list (cons 'shift list)))
|
|
|
|
|
(or (zerop (logand type (lsh 1 20)))
|
|
|
|
|
(setq list (cons 'hyper list)))
|
|
|
|
|
(or (zerop (logand type (lsh 1 19)))
|
|
|
|
|
(setq list (cons 'super list)))
|
|
|
|
|
(or (zerop (logand type (lsh 1 18)))
|
|
|
|
|
(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)
|
1990-11-05 10:06:02 +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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;; 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 'eql 'eq)
|
|
|
|
|
(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)
|
1994-03-28 02:21:28 +00:00
|
|
|
|
(defalias 'set-match-data 'store-match-data)
|
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
|
|
|
|
|
|
|
|
|
(defun run-hooks (&rest hooklist)
|
|
|
|
|
"Takes hook names and runs each one in turn. Major mode functions use this.
|
|
|
|
|
Each argument should be a symbol, a hook variable.
|
|
|
|
|
These symbols are processed in the order specified.
|
|
|
|
|
If a hook symbol has a non-nil value, that value may be a function
|
|
|
|
|
or a list of functions to be called to run the hook.
|
|
|
|
|
If the value is a function, it is called with no arguments.
|
1994-09-30 20:47:13 +00:00
|
|
|
|
If it is a list, the elements are called, in order, with no arguments.
|
|
|
|
|
|
|
|
|
|
To make a hook variable buffer-local, use `make-local-hook', not
|
|
|
|
|
`make-local-variable'."
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(while hooklist
|
|
|
|
|
(let ((sym (car hooklist)))
|
|
|
|
|
(and (boundp sym)
|
|
|
|
|
(symbol-value sym)
|
|
|
|
|
(let ((value (symbol-value sym)))
|
|
|
|
|
(if (and (listp value) (not (eq (car value) 'lambda)))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(while value
|
|
|
|
|
(if (eq (car value) t)
|
|
|
|
|
;; t indicates this hook has a local binding;
|
|
|
|
|
;; it means to run the global binding too.
|
|
|
|
|
(let ((functions (default-value sym)))
|
|
|
|
|
(while functions
|
|
|
|
|
(funcall (car functions))
|
|
|
|
|
(setq functions (cdr functions))))
|
|
|
|
|
(funcall (car value)))
|
|
|
|
|
(setq value (cdr value)))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(funcall value)))))
|
|
|
|
|
(setq hooklist (cdr hooklist))))
|
|
|
|
|
|
1994-04-26 07:43:54 +00:00
|
|
|
|
(defun run-hook-with-args (hook &rest args)
|
|
|
|
|
"Run HOOK with the specified arguments ARGS.
|
|
|
|
|
HOOK should be a symbol, a hook variable. If HOOK has a non-nil
|
|
|
|
|
value, that value may be a function or a list of functions to be
|
|
|
|
|
called to run the hook. If the value is a function, it is called with
|
|
|
|
|
the given arguments and its return value is returned. If it is a list
|
|
|
|
|
of functions, those functions are called, in order,
|
|
|
|
|
with the given arguments ARGS.
|
|
|
|
|
It is best not to depend on the value return by `run-hook-with-args',
|
1994-09-30 20:47:13 +00:00
|
|
|
|
as that may change.
|
|
|
|
|
|
|
|
|
|
To make a hook variable buffer-local, use `make-local-hook', not
|
|
|
|
|
`make-local-variable'."
|
1994-04-26 07:43:54 +00:00
|
|
|
|
(and (boundp hook)
|
|
|
|
|
(symbol-value hook)
|
|
|
|
|
(let ((value (symbol-value hook)))
|
|
|
|
|
(if (and (listp value) (not (eq (car value) 'lambda)))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(while value
|
|
|
|
|
(if (eq (car value) t)
|
|
|
|
|
;; t indicates this hook has a local binding;
|
|
|
|
|
;; it means to run the global binding too.
|
|
|
|
|
(let ((functions (default-value hook)))
|
|
|
|
|
(while functions
|
|
|
|
|
(apply (car functions) args)
|
|
|
|
|
(setq functions (cdr functions))))
|
|
|
|
|
(apply (car value) args))
|
|
|
|
|
(setq value (cdr value)))
|
1994-04-26 07:43:54 +00:00
|
|
|
|
(apply value args)))))
|
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(defun run-hook-with-args-until-success (hook &rest args)
|
|
|
|
|
"Run HOOK with the specified arguments ARGS.
|
|
|
|
|
HOOK should be a symbol, a hook variable. Its value should
|
|
|
|
|
be a list of functions. We call those functions, one by one,
|
|
|
|
|
passing arguments ARGS to each of them, until one of them
|
|
|
|
|
returns a non-nil value. Then we return that value.
|
|
|
|
|
If all the functions return nil, we return nil.
|
|
|
|
|
|
|
|
|
|
To make a hook variable buffer-local, use `make-local-hook', not
|
|
|
|
|
`make-local-variable'."
|
|
|
|
|
(and (boundp hook)
|
|
|
|
|
(symbol-value hook)
|
|
|
|
|
(let ((value (symbol-value hook))
|
|
|
|
|
success)
|
|
|
|
|
(while (and value (not success))
|
|
|
|
|
(if (eq (car value) t)
|
|
|
|
|
;; t indicates this hook has a local binding;
|
|
|
|
|
;; it means to run the global binding too.
|
|
|
|
|
(let ((functions (default-value hook)))
|
|
|
|
|
(while (and functions (not success))
|
|
|
|
|
(setq success (apply (car functions) args))
|
|
|
|
|
(setq functions (cdr functions))))
|
|
|
|
|
(setq success (apply (car value) args)))
|
|
|
|
|
(setq value (cdr value)))
|
|
|
|
|
success)))
|
|
|
|
|
|
|
|
|
|
(defun run-hook-with-args-until-failure (hook &rest args)
|
|
|
|
|
"Run HOOK with the specified arguments ARGS.
|
|
|
|
|
HOOK should be a symbol, a hook variable. Its value should
|
|
|
|
|
be a list of functions. We call those functions, one by one,
|
|
|
|
|
passing arguments ARGS to each of them, until one of them
|
|
|
|
|
returns nil. Then we return nil.
|
|
|
|
|
If all the functions return non-nil, we return non-nil.
|
|
|
|
|
|
|
|
|
|
To make a hook variable buffer-local, use `make-local-hook', not
|
|
|
|
|
`make-local-variable'."
|
1994-12-27 20:14:13 +00:00
|
|
|
|
;; We must return non-nil if there are no hook functions!
|
|
|
|
|
(or (not (boundp hook))
|
|
|
|
|
(not (symbol-value hook))
|
|
|
|
|
(let ((value (symbol-value hook))
|
|
|
|
|
(success t))
|
|
|
|
|
(while (and value success)
|
|
|
|
|
(if (eq (car value) t)
|
|
|
|
|
;; t indicates this hook has a local binding;
|
|
|
|
|
;; it means to run the global binding too.
|
|
|
|
|
(let ((functions (default-value hook)))
|
|
|
|
|
(while (and functions success)
|
|
|
|
|
(setq success (apply (car functions) args))
|
|
|
|
|
(setq functions (cdr functions))))
|
|
|
|
|
(setq success (apply (car value) args)))
|
|
|
|
|
(setq value (cdr value)))
|
|
|
|
|
success)))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
;; Tell C code how to call this function.
|
|
|
|
|
(defconst run-hooks 'run-hooks
|
|
|
|
|
"Variable by which C primitives find the function `run-hooks'.
|
|
|
|
|
Don't change it.")
|
|
|
|
|
|
1994-09-30 20:47:13 +00:00
|
|
|
|
(defun make-local-hook (hook)
|
|
|
|
|
"Make the hook HOOK local to the current buffer.
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
This function does nothing if HOOK is already local in the current buffer.
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
(set hook (list t))))
|
|
|
|
|
|
|
|
|
|
(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.
|
|
|
|
|
(and (local-variable-p hook)
|
|
|
|
|
(not (memq t (symbol-value hook)))))
|
1994-09-30 20:47:13 +00:00
|
|
|
|
;; Alter the local value only.
|
|
|
|
|
(or (if (consp function)
|
|
|
|
|
(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).
|
|
|
|
|
(or (if (consp function)
|
|
|
|
|
(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
|
1994-09-30 20:47:13 +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)
|
|
|
|
|
(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)))
|
|
|
|
|
(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-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.
|
|
|
|
|
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."
|
1994-10-13 06:34:09 +00:00
|
|
|
|
(or (member element (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'.
|
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."
|
|
|
|
|
(or (assoc file after-load-alist)
|
|
|
|
|
(setq after-load-alist (cons (list file) after-load-alist)))
|
1994-01-05 20:31:27 +00:00
|
|
|
|
(let ((elt (assoc file after-load-alist)))
|
|
|
|
|
(or (member form (cdr elt))
|
|
|
|
|
(nconc elt (list 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.
|
|
|
|
|
|
|
|
|
|
(defun read-quoted-char (&optional prompt)
|
|
|
|
|
"Like `read-char', except that if the first character read is an octal
|
|
|
|
|
digit, we read up to two more octal digits and return the character
|
|
|
|
|
represented by the octal number consisting of those digits.
|
|
|
|
|
Optional argument PROMPT specifies a string to use to prompt the user."
|
|
|
|
|
(let ((count 0) (code 0) char)
|
|
|
|
|
(while (< count 3)
|
|
|
|
|
(let ((inhibit-quit (zerop count))
|
|
|
|
|
(help-form nil))
|
|
|
|
|
(and prompt (message "%s-" prompt))
|
|
|
|
|
(setq char (read-char))
|
|
|
|
|
(if inhibit-quit (setq quit-flag nil)))
|
|
|
|
|
(cond ((null char))
|
|
|
|
|
((and (<= ?0 char) (<= char ?7))
|
|
|
|
|
(setq code (+ (* code 8) (- char ?0))
|
|
|
|
|
count (1+ count))
|
|
|
|
|
(and prompt (message (setq prompt
|
|
|
|
|
(format "%s %c" prompt char)))))
|
|
|
|
|
((> count 0)
|
|
|
|
|
(setq unread-command-events (list char) count 259))
|
|
|
|
|
(t (setq code char count 259))))
|
1994-04-12 21:27:27 +00:00
|
|
|
|
;; Turn a meta-character into a character with the 0200 bit set.
|
|
|
|
|
(logior (if (/= (logand code (lsh 1 23)) 0) 128 0)
|
|
|
|
|
(logand 255 code))))
|
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 ?\ ))
|
|
|
|
|
(let ((buffer-read-only nil)
|
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.
|
|
|
|
|
(if (> (window-end) insert-end)
|
|
|
|
|
(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)
|
|
|
|
|
|
|
|
|
|
;; 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.")
|
|
|
|
|
|
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)
|
|
|
|
|
"Signal an error, making error message by passing all args to `format'."
|
|
|
|
|
(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 " ")))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
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."
|
|
|
|
|
(let ((original (make-symbol "match-data")))
|
|
|
|
|
(list
|
|
|
|
|
'let (list (list original '(match-data)))
|
|
|
|
|
(list 'unwind-protect
|
|
|
|
|
(cons 'progn body)
|
|
|
|
|
(list 'store-match-data original)))))
|
1992-05-18 08:14:41 +00:00
|
|
|
|
|
1995-01-27 07:06:27 +00:00
|
|
|
|
(defun match-string (n &optional string)
|
|
|
|
|
"Return the Nth subexpression matched by the last regexp search or match.
|
|
|
|
|
If the last search or match was done against a string,
|
|
|
|
|
specify that string as the second argument STRING."
|
|
|
|
|
(if string
|
1995-01-28 09:04:02 +00:00
|
|
|
|
(substring string (match-beginning n) (match-end n))
|
|
|
|
|
(buffer-substring (match-beginning n) (match-end n))))
|
1995-01-27 07:06:27 +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."
|
|
|
|
|
;; Quote everything except POSIX filename characters.
|
|
|
|
|
;; This should be safe enough even for really weird shells.
|
|
|
|
|
(let ((result "") (start 0) end)
|
1994-03-12 00:23:12 +00:00
|
|
|
|
(while (string-match "[^-0-9a-zA-Z_./]" argument start)
|
1993-12-31 09:25:12 +00:00
|
|
|
|
(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))))
|
|
|
|
|
|
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.
|
|
|
|
|
It 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)
|
|
|
|
|
(aset table i 13)
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq i ?A)
|
|
|
|
|
(while (<= i ?Z)
|
|
|
|
|
(aset table i 13)
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq i ?a)
|
|
|
|
|
(while (<= i ?z)
|
|
|
|
|
(aset table i 13)
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq i 128)
|
|
|
|
|
(while (<= i 255)
|
|
|
|
|
(aset table i 13)
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
table)))
|
1994-01-03 07:41:00 +00:00
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
;;; subr.el ends here
|
1993-04-10 06:21:55 +00:00
|
|
|
|
|