1992-05-30 21:11:25 +00:00
|
|
|
|
;;; subr.el --- basic lisp subroutines for Emacs
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
1992-06-10 02:47:07 +00:00
|
|
|
|
;;; Copyright (C) 1985, 1986, 1992 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
|
|
|
|
|
1992-06-10 02:47:07 +00:00
|
|
|
|
(defun one-window-p (&optional nomini)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
"Returns non-nil if there is only one window.
|
|
|
|
|
Optional arg NOMINI non-nil means don't count the minibuffer
|
|
|
|
|
even if it is active."
|
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
|
|
|
|
|
(next-window base-window (if nomini 'arg)))))
|
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.
|
1992-07-15 03:24:58 +00:00
|
|
|
|
Optional third arg ALL-FRAMES t means include all windows in all frames;
|
|
|
|
|
otherwise cycle within the selected frame."
|
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))))))
|
|
|
|
|
|
|
|
|
|
(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)
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(setq unread-command-events (list char) count 259))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(t (setq code char count 259))))
|
|
|
|
|
(logand 255 code)))
|
|
|
|
|
|
|
|
|
|
(defun error (&rest args)
|
|
|
|
|
"Signal an error, making error message by passing all args to `format'."
|
|
|
|
|
(while t
|
|
|
|
|
(signal 'error (list (apply 'format args)))))
|
|
|
|
|
|
|
|
|
|
(defun undefined ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(ding))
|
|
|
|
|
|
1992-09-19 07:51:41 +00:00
|
|
|
|
;; Some programs still use this as a function.
|
|
|
|
|
(defun baud-rate ()
|
|
|
|
|
"Obsolete function returning the value of the `baud-rate' variable."
|
|
|
|
|
baud-rate)
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
;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."
|
|
|
|
|
(let ((i 0))
|
|
|
|
|
(while (<= i 127)
|
|
|
|
|
(if (eql (lookup-key global-map (char-to-string i)) 'self-insert-command)
|
|
|
|
|
(define-key map (char-to-string i) 'undefined))
|
|
|
|
|
(setq i (1+ i))))
|
|
|
|
|
(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))))))
|
|
|
|
|
|
|
|
|
|
;; 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)
|
|
|
|
|
|
|
|
|
|
;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)))
|
|
|
|
|
|
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))
|
|
|
|
|
(prefix1 (vconcat prefix vec1)))
|
|
|
|
|
;; 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)
|
|
|
|
|
(let (inner-def)
|
|
|
|
|
;; Skip past menu-prompt.
|
|
|
|
|
(while (stringp (car-safe 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 (eq defn olddef)
|
|
|
|
|
(define-key keymap prefix1 newdef)
|
|
|
|
|
(if (keymapp defn)
|
|
|
|
|
(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)
|
|
|
|
|
(let (inner-def)
|
|
|
|
|
;; Skip past menu-prompt.
|
|
|
|
|
(while (stringp (car-safe 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 (eq defn olddef)
|
|
|
|
|
(define-key keymap prefix1 newdef)
|
|
|
|
|
(if (keymapp defn)
|
|
|
|
|
(substitute-key-definition olddef newdef keymap
|
|
|
|
|
inner-def
|
|
|
|
|
prefix1)))))
|
|
|
|
|
(setq i (1+ i))))))
|
|
|
|
|
(setq scan (cdr scan)))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1992-09-13 20:40:20 +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-12-21 18:34:22 +00:00
|
|
|
|
(defun ignore (&rest ignore)
|
|
|
|
|
"Do nothing.
|
1991-06-20 10:29:36 +00:00
|
|
|
|
Accept any number of arguments, but ignore them."
|
1992-12-21 18:34:22 +00:00
|
|
|
|
nil)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
|
|
|
|
; old names
|
|
|
|
|
(fset 'make-syntax-table 'copy-syntax-table)
|
|
|
|
|
(fset 'dot 'point)
|
|
|
|
|
(fset 'dot-marker 'point-marker)
|
|
|
|
|
(fset 'dot-min 'point-min)
|
|
|
|
|
(fset 'dot-max 'point-max)
|
|
|
|
|
(fset 'window-dot 'window-point)
|
|
|
|
|
(fset 'set-window-dot 'set-window-point)
|
|
|
|
|
(fset 'read-input 'read-string)
|
|
|
|
|
(fset 'send-string 'process-send-string)
|
|
|
|
|
(fset 'send-region 'process-send-region)
|
|
|
|
|
(fset 'show-buffer 'set-window-buffer)
|
|
|
|
|
(fset 'buffer-flush-undo 'buffer-disable-undo)
|
1992-06-03 02:55:55 +00:00
|
|
|
|
(fset 'eval-current-buffer 'eval-buffer)
|
1993-01-26 01:58:16 +00:00
|
|
|
|
(fset 'compiled-function-p 'byte-code-function-p)
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1993-02-14 14:35:19 +00:00
|
|
|
|
;;; This name isn't mentioned in the manual, and we've been hoping to
|
|
|
|
|
;;; phase it out, but there's still a lot of code out there, even for
|
|
|
|
|
;;; Emacs 18.59, which uses mod. I'm going to let the byte compiler's
|
|
|
|
|
;;; make-obsolete function to poke people a little more, and leave the
|
|
|
|
|
;;; `mod' name around for a while longer.
|
|
|
|
|
(fset 'mod '%)
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
; alternate names
|
|
|
|
|
(fset 'string= 'string-equal)
|
|
|
|
|
(fset 'string< 'string-lessp)
|
|
|
|
|
(fset 'move-marker 'set-marker)
|
|
|
|
|
(fset 'eql 'eq)
|
|
|
|
|
(fset 'not 'null)
|
|
|
|
|
(fset 'rplaca 'setcar)
|
|
|
|
|
(fset 'rplacd 'setcdr)
|
|
|
|
|
(fset 'beep 'ding) ;preserve lingual purtity
|
|
|
|
|
(fset 'indent-to-column 'indent-to)
|
|
|
|
|
(fset 'backward-delete-char 'delete-backward-char)
|
1991-07-25 16:41:17 +00:00
|
|
|
|
(fset 'search-forward-regexp (symbol-function 're-search-forward))
|
|
|
|
|
(fset 'search-backward-regexp (symbol-function 're-search-backward))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
1991-08-14 01:03:20 +00:00
|
|
|
|
;;; global-map, esc-map, and ctl-x-map have their values set up
|
|
|
|
|
;;; in keymap.c.
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(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.")
|
|
|
|
|
|
1991-08-14 01:03:20 +00:00
|
|
|
|
(defvar esc-map nil
|
|
|
|
|
"Default keymap for ESC (meta) commands.
|
|
|
|
|
The normal global definition of the character ESC indirects to this keymap.")
|
|
|
|
|
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(defvar ctl-x-map nil
|
|
|
|
|
"Default keymap for C-x commands.
|
|
|
|
|
The normal global definition of the character C-x indirects to this keymap.")
|
|
|
|
|
|
1991-08-14 01:03:20 +00:00
|
|
|
|
(defvar ctl-x-4-map (make-sparse-keymap)
|
|
|
|
|
"Keymap for subcommands of C-x 4")
|
|
|
|
|
(fset 'ctl-x-4-prefix ctl-x-4-map)
|
|
|
|
|
(define-key ctl-x-map "4" 'ctl-x-4-prefix)
|
|
|
|
|
|
1992-06-10 02:47:07 +00:00
|
|
|
|
(defvar ctl-x-5-map (make-sparse-keymap)
|
1992-07-15 03:24:58 +00:00
|
|
|
|
"Keymap for frame commands.")
|
1992-06-10 02:47:07 +00:00
|
|
|
|
(fset 'ctl-x-5-prefix ctl-x-5-map)
|
|
|
|
|
(define-key ctl-x-map "5" 'ctl-x-5-prefix)
|
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.
|
|
|
|
|
If it is a list, the elements are called, in order, with no arguments."
|
|
|
|
|
(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)))
|
|
|
|
|
(mapcar 'funcall value)
|
|
|
|
|
(funcall value)))))
|
|
|
|
|
(setq hooklist (cdr hooklist))))
|
|
|
|
|
|
|
|
|
|
;; 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.")
|
|
|
|
|
|
|
|
|
|
(defun add-hook (hook function)
|
|
|
|
|
"Add to the value of HOOK the function FUNCTION unless already present.
|
|
|
|
|
HOOK should be a symbol, and FUNCTION may be any valid function.
|
|
|
|
|
HOOK's value should be a list of functions, not a single function.
|
|
|
|
|
If HOOK is void, it is first set to nil."
|
|
|
|
|
(or (boundp hook) (set hook nil))
|
|
|
|
|
(or (if (consp function)
|
|
|
|
|
;; Clever way to tell whether a given lambda-expression
|
|
|
|
|
;; is equal to anything in the hook.
|
|
|
|
|
(let ((tail (assoc (cdr function) (symbol-value hook))))
|
|
|
|
|
(equal function tail))
|
|
|
|
|
(memq function (symbol-value hook)))
|
1991-08-12 13:15:12 +00:00
|
|
|
|
(set hook (cons function (symbol-value hook)))))
|
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)
|
|
|
|
|
(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)
|
|
|
|
|
(setq insert-end (point)))
|
|
|
|
|
(message (or message "Type %s to continue editing.")
|
|
|
|
|
(single-key-description exit-char))
|
|
|
|
|
(let ((char (read-char)))
|
|
|
|
|
(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))))
|
|
|
|
|
|
|
|
|
|
(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.
|
|
|
|
|
Wildcards and redirection are handle as usual in the shell."
|
|
|
|
|
(if (eq system-type 'vax-vms)
|
|
|
|
|
(apply 'start-process name buffer args)
|
|
|
|
|
(start-process name buffer shell-file-name "-c"
|
|
|
|
|
(concat "exec " (mapconcat 'identity args " ")))))
|
|
|
|
|
|
|
|
|
|
(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'.
|
|
|
|
|
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)))
|
|
|
|
|
(nconc (assoc file after-load-alist) (list form))
|
|
|
|
|
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)))
|
1990-12-22 22:51:22 +00:00
|
|
|
|
|
1992-07-24 05:00:23 +00:00
|
|
|
|
;;(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))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
|
|
|
|
|
(defun user-original-login-name ()
|
|
|
|
|
"Return user's login name from original login.
|
|
|
|
|
This tries to remain unaffected by `su', by looking in environment variables."
|
|
|
|
|
(or (getenv "LOGNAME") (getenv "USER") (user-login-name)))
|
|
|
|
|
|
|
|
|
|
(defun force-mode-line-update (&optional all)
|
|
|
|
|
"Force the mode-line of the current buffer to be redisplayed.
|
|
|
|
|
With optional non-nil ALL then force then force redisplay of all mode-lines."
|
|
|
|
|
(if all (save-excursion (set-buffer (other-buffer))))
|
|
|
|
|
(set-buffer-modified-p (buffer-modified-p)))
|
|
|
|
|
|
|
|
|
|
(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."
|
1992-09-13 10:54:38 +00:00
|
|
|
|
(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))
|
|
|
|
|
(table (make-string (- 256 i) 0)))
|
|
|
|
|
(while (< i 256)
|
|
|
|
|
(aset table i i)
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq keyboard-translate-table table))))
|
1990-11-05 10:06:02 +00:00
|
|
|
|
(aset keyboard-translate-table from to))
|
1992-05-18 08:14:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defmacro lambda (&rest cdr)
|
1992-11-20 17:22:56 +00:00
|
|
|
|
"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
|
|
|
|
|
function, i. e. stored as the function value of a symbol, passed to
|
|
|
|
|
funcall or mapcar, etcetera.
|
|
|
|
|
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."
|
1992-11-16 01:43:07 +00:00
|
|
|
|
;; Note that this definition should not use backquotes; subr.el should not
|
|
|
|
|
;; depend on backquote.el.
|
|
|
|
|
(list 'function (cons 'lambda cdr)))
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
|
|
|
|
;;; subr.el ends here
|