(mouse-set-point): Error if click in inactive minibuffer.
[bpt/emacs.git] / lisp / subr.el
CommitLineData
c88ab9ce 1;;; subr.el --- basic lisp subroutines for Emacs
630cc463 2
492878e4 3;;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
be9b65ac
DL
4
5;; This file is part of GNU Emacs.
6
7;; GNU Emacs is free software; you can redistribute it and/or modify
8;; it under the terms of the GNU General Public License as published by
492878e4 9;; the Free Software Foundation; either version 2, or (at your option)
be9b65ac
DL
10;; any later version.
11
12;; GNU Emacs is distributed in the hope that it will be useful,
13;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;; GNU General Public License for more details.
16
17;; You should have received a copy of the GNU General Public License
18;; along with GNU Emacs; see the file COPYING. If not, write to
19;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20
630cc463 21;;; Code:
be9b65ac 22
9a5336ae
JB
23\f
24;;;; Lisp language features.
25
26(defmacro lambda (&rest cdr)
27 "Return a lambda expression.
28A call of the form (lambda ARGS DOCSTRING INTERACTIVE BODY) is
29self-quoting; the result of evaluating the lambda expression is the
30expression itself. The lambda expression may then be treated as a
31function, i. e. stored as the function value of a symbol, passed to
32funcall or mapcar, etcetera.
33ARGS should take the same form as an argument list for a `defun'.
34DOCSTRING should be a string, as described for `defun'. It may be omitted.
35INTERACTIVE should be a call to the function `interactive', which see.
36It may also be omitted.
37BODY should be a list of lisp expressions."
38 ;; Note that this definition should not use backquotes; subr.el should not
39 ;; depend on backquote.el.
40 (list 'function (cons 'lambda cdr)))
41
42;;(defmacro defun-inline (name args &rest body)
43;; "Create an \"inline defun\" (actually a macro).
44;;Use just like `defun'."
45;; (nconc (list 'defmacro name '(&rest args))
46;; (if (stringp (car body))
47;; (prog1 (list (car body))
48;; (setq body (or (cdr body) body))))
49;; (list (list 'cons (list 'quote
50;; (cons 'lambda (cons args body)))
51;; 'args))))
52
53\f
54;;;; Window tree functions.
55
492878e4 56(defun one-window-p (&optional nomini)
be9b65ac
DL
57 "Returns non-nil if there is only one window.
58Optional arg NOMINI non-nil means don't count the minibuffer
59even if it is active."
492878e4
JB
60 (let ((base-window (selected-window)))
61 (if (and nomini (eq base-window (minibuffer-window)))
62 (setq base-window (next-window base-window)))
63 (eq base-window
64 (next-window base-window (if nomini 'arg)))))
be9b65ac 65
0cc89026 66(defun walk-windows (proc &optional minibuf all-frames)
be9b65ac
DL
67 "Cycle through all visible windows, calling PROC for each one.
68PROC is called with a window as argument.
69Optional second arg MINIBUF t means count the minibuffer window
70even if not active. If MINIBUF is neither t nor nil it means
71not to count the minibuffer even if it is active.
f1f2d09a
RS
72
73Optional third arg ALL-FRAMES, if t, means include all frames.
74ALL-FRAMES nil or omitted means cycle within the selected frame,
75but include the minibuffer window (if MINIBUF says so) that that
76frame uses, even if it is on another frame.
77If ALL-FRAMES is neither nil nor t, stick strictly to the selected frame."
be9b65ac
DL
78 (let* ((walk-windows-start (selected-window))
79 (walk-windows-current walk-windows-start))
80 (while (progn
81 (setq walk-windows-current
0cc89026 82 (next-window walk-windows-current minibuf all-frames))
be9b65ac
DL
83 (funcall proc walk-windows-current)
84 (not (eq walk-windows-current walk-windows-start))))))
85
9a5336ae
JB
86\f
87;;;; Keymap support.
be9b65ac
DL
88
89(defun undefined ()
90 (interactive)
91 (ding))
92
93;Prevent the \{...} documentation construct
94;from mentioning keys that run this command.
95(put 'undefined 'suppress-keymap t)
96
97(defun suppress-keymap (map &optional nodigits)
98 "Make MAP override all normally self-inserting keys to be undefined.
99Normally, as an exception, digits and minus-sign are set to make prefix args,
100but optional second arg NODIGITS non-nil treats them like other chars."
101 (let ((i 0))
102 (while (<= i 127)
103 (if (eql (lookup-key global-map (char-to-string i)) 'self-insert-command)
104 (define-key map (char-to-string i) 'undefined))
105 (setq i (1+ i))))
106 (or nodigits
107 (let (loop)
108 (define-key map "-" 'negative-argument)
109 ;; Make plain numbers do numeric args.
110 (setq loop ?0)
111 (while (<= loop ?9)
112 (define-key map (char-to-string loop) 'digit-argument)
113 (setq loop (1+ loop))))))
114
be9b65ac
DL
115;Moved to keymap.c
116;(defun copy-keymap (keymap)
117; "Return a copy of KEYMAP"
118; (while (not (keymapp keymap))
119; (setq keymap (signal 'wrong-type-argument (list 'keymapp keymap))))
120; (if (vectorp keymap)
121; (copy-sequence keymap)
122; (copy-alist keymap)))
123
7f2c2edd 124(defun substitute-key-definition (olddef newdef keymap &optional oldmap prefix)
be9b65ac
DL
125 "Replace OLDDEF with NEWDEF for any keys in KEYMAP now defined as OLDDEF.
126In other words, OLDDEF is replaced with NEWDEF where ever it appears.
7f2c2edd
RS
127If optional fourth argument OLDMAP is specified, we redefine
128in KEYMAP as NEWDEF those chars which are defined as OLDDEF in OLDMAP."
129 (or prefix (setq prefix ""))
130 (let* ((scan (or oldmap keymap))
131 (vec1 (vector nil))
132 (prefix1 (vconcat prefix vec1)))
133 ;; Scan OLDMAP, finding each char or event-symbol that
134 ;; has any definition, and act on it with hack-key.
135 (while (consp scan)
136 (if (consp (car scan))
137 (let ((char (car (car scan)))
138 (defn (cdr (car scan))))
139 ;; The inside of this let duplicates exactly
140 ;; the inside of the following let that handles array elements.
141 (aset vec1 0 char)
142 (aset prefix1 (length prefix) char)
143 (let (inner-def)
144 ;; Skip past menu-prompt.
145 (while (stringp (car-safe defn))
146 (setq defn (cdr defn)))
147 (setq inner-def defn)
148 (while (and (symbolp inner-def)
149 (fboundp inner-def))
150 (setq inner-def (symbol-function inner-def)))
151 (if (eq defn olddef)
152 (define-key keymap prefix1 newdef)
153 (if (keymapp defn)
154 (substitute-key-definition olddef newdef keymap
155 inner-def
156 prefix1)))))
157 (if (arrayp (car scan))
158 (let* ((array (car scan))
159 (len (length array))
160 (i 0))
161 (while (< i len)
162 (let ((char i) (defn (aref array i)))
163 ;; The inside of this let duplicates exactly
164 ;; the inside of the previous let.
165 (aset vec1 0 char)
166 (aset prefix1 (length prefix) char)
167 (let (inner-def)
168 ;; Skip past menu-prompt.
169 (while (stringp (car-safe defn))
170 (setq defn (cdr defn)))
171 (setq inner-def defn)
172 (while (and (symbolp inner-def)
173 (fboundp inner-def))
174 (setq inner-def (symbol-function inner-def)))
175 (if (eq defn olddef)
176 (define-key keymap prefix1 newdef)
177 (if (keymapp defn)
178 (substitute-key-definition olddef newdef keymap
179 inner-def
180 prefix1)))))
181 (setq i (1+ i))))))
182 (setq scan (cdr scan)))))
9a5336ae 183
06ae9cf2 184(defun define-key-after (keymap key definition after)
4434d61b
RS
185 "Add binding in KEYMAP for KEY => DEFINITION, right after AFTER's binding.
186This is like `define-key' except that the binding for KEY is placed
187just after the binding for the event AFTER, instead of at the beginning
188of the map.
626f67f3
RS
189The order matters when the keymap is used as a menu.
190KEY must contain just one event type--it must be a string or vector
191of length 1."
4434d61b
RS
192 (or (keymapp keymap)
193 (signal 'wrong-type-argument (list 'keymapp keymap)))
ab375e6c 194 (if (> (length key) 1)
626f67f3 195 (error "multi-event key specified in `define-key-after'"))
113d28a8 196 (let ((tail keymap) done inserted
4434d61b
RS
197 (first (aref key 0)))
198 (while (and (not done) tail)
199 ;; Delete any earlier bindings for the same key.
200 (if (eq (car-safe (car (cdr tail))) first)
201 (setcdr tail (cdr (cdr tail))))
202 ;; When we reach AFTER's binding, insert the new binding after.
203 ;; If we reach an inherited keymap, insert just before that.
113d28a8 204 ;; If we reach the end of this keymap, insert at the end.
4434d61b 205 (if (or (eq (car-safe (car tail)) after)
113d28a8
RS
206 (eq (car (cdr tail)) 'keymap)
207 (null (cdr tail)))
4434d61b 208 (progn
113d28a8
RS
209 ;; Stop the scan only if we find a parent keymap.
210 ;; Keep going past the inserted element
211 ;; so we can delete any duplications that come later.
212 (if (eq (car (cdr tail)) 'keymap)
213 (setq done t))
214 ;; Don't insert more than once.
215 (or inserted
216 (setcdr tail (cons (cons (aref key 0) definition) (cdr tail))))
217 (setq inserted t)))
4434d61b
RS
218 (setq tail (cdr tail)))))
219
9a5336ae
JB
220(defun keyboard-translate (from to)
221 "Translate character FROM to TO at a low level.
222This function creates a `keyboard-translate-table' if necessary
223and then modifies one entry in it."
224 (or (arrayp keyboard-translate-table)
225 (setq keyboard-translate-table ""))
226 (if (or (> from (length keyboard-translate-table))
227 (> to (length keyboard-translate-table)))
228 (progn
229 (let* ((i (length keyboard-translate-table))
f4ebbdbe
RS
230 (table (concat keyboard-translate-table
231 (make-string (- 256 i) 0))))
9a5336ae
JB
232 (while (< i 256)
233 (aset table i i)
234 (setq i (1+ i)))
235 (setq keyboard-translate-table table))))
236 (aset keyboard-translate-table from to))
237
238\f
239;;;; The global keymap tree.
240
241;;; global-map, esc-map, and ctl-x-map have their values set up in
242;;; keymap.c; we just give them docstrings here.
243
244(defvar global-map nil
245 "Default global keymap mapping Emacs keyboard input into commands.
246The value is a keymap which is usually (but not necessarily) Emacs's
247global map.")
248
249(defvar esc-map nil
250 "Default keymap for ESC (meta) commands.
251The normal global definition of the character ESC indirects to this keymap.")
252
253(defvar ctl-x-map nil
254 "Default keymap for C-x commands.
255The normal global definition of the character C-x indirects to this keymap.")
256
257(defvar ctl-x-4-map (make-sparse-keymap)
258 "Keymap for subcommands of C-x 4")
059184dd 259(defalias 'ctl-x-4-prefix ctl-x-4-map)
9a5336ae
JB
260(define-key ctl-x-map "4" 'ctl-x-4-prefix)
261
262(defvar ctl-x-5-map (make-sparse-keymap)
263 "Keymap for frame commands.")
059184dd 264(defalias 'ctl-x-5-prefix ctl-x-5-map)
9a5336ae
JB
265(define-key ctl-x-map "5" 'ctl-x-5-prefix)
266
0f03054a 267\f
9a5336ae
JB
268;;;; Event manipulation functions.
269
114137b8
RS
270;; This code exists specifically to make sure that the
271;; resulting number does not appear in the .elc file.
272;; The number is negative on most machines, but not on all!
273(defconst listify-key-sequence-1
274 (lsh 1 7))
275(setq listify-key-sequence-1 (logior (lsh 1 23) listify-key-sequence-1))
276
cde6d7e3
RS
277(defun listify-key-sequence (key)
278 "Convert a key sequence to a list of events."
279 (if (vectorp key)
280 (append key nil)
281 (mapcar (function (lambda (c)
282 (if (> c 127)
114137b8 283 (logxor c listify-key-sequence-1)
cde6d7e3
RS
284 c)))
285 (append key nil))))
286
53e5a4e8
RS
287(defsubst eventp (obj)
288 "True if the argument is an event object."
289 (or (integerp obj)
290 (and (symbolp obj)
291 (get obj 'event-symbol-elements))
292 (and (consp obj)
293 (symbolp (car obj))
294 (get (car obj) 'event-symbol-elements))))
295
296(defun event-modifiers (event)
297 "Returns a list of symbols representing the modifier keys in event EVENT.
298The elements of the list may include `meta', `control',
32295976
RS
299`shift', `hyper', `super', `alt', `click', `double', `triple', `drag',
300and `down'."
53e5a4e8
RS
301 (let ((type event))
302 (if (listp type)
303 (setq type (car type)))
304 (if (symbolp type)
305 (cdr (get type 'event-symbol-elements))
306 (let ((list nil))
307 (or (zerop (logand type (lsh 1 23)))
308 (setq list (cons 'meta list)))
309 (or (and (zerop (logand type (lsh 1 22)))
310 (>= (logand type 127) 32))
311 (setq list (cons 'control list)))
312 (or (and (zerop (logand type (lsh 1 21)))
313 (= (logand type 255) (downcase (logand type 255))))
314 (setq list (cons 'shift list)))
315 (or (zerop (logand type (lsh 1 20)))
316 (setq list (cons 'hyper list)))
317 (or (zerop (logand type (lsh 1 19)))
318 (setq list (cons 'super list)))
319 (or (zerop (logand type (lsh 1 18)))
320 (setq list (cons 'alt list)))
321 list))))
322
d63de416
RS
323(defun event-basic-type (event)
324 "Returns the basic type of the given event (all modifiers removed).
325The value is an ASCII printing character (not upper case) or a symbol."
2b0f4ba5
JB
326 (if (consp event)
327 (setq event (car event)))
d63de416
RS
328 (if (symbolp event)
329 (car (get event 'event-symbol-elements))
330 (let ((base (logand event (1- (lsh 1 18)))))
331 (downcase (if (< base 32) (logior base 64) base)))))
332
0f03054a
RS
333(defsubst mouse-movement-p (object)
334 "Return non-nil if OBJECT is a mouse movement event."
335 (and (consp object)
336 (eq (car object) 'mouse-movement)))
337
338(defsubst event-start (event)
339 "Return the starting position of EVENT.
340If EVENT is a mouse press or a mouse click, this returns the location
341of the event.
342If EVENT is a drag, this returns the drag's starting position.
343The return value is of the form
344 (WINDOW BUFFER-POSITION (COL . ROW) TIMESTAMP)
345The `posn-' functions access elements of such lists."
346 (nth 1 event))
347
348(defsubst event-end (event)
349 "Return the ending location of EVENT. EVENT should be a click or drag event.
350If EVENT is a click event, this function is the same as `event-start'.
351The return value is of the form
352 (WINDOW BUFFER-POSITION (COL . ROW) TIMESTAMP)
353The `posn-' functions access elements of such lists."
69b95560 354 (nth (if (consp (nth 2 event)) 2 1) event))
0f03054a 355
32295976
RS
356(defsubst event-click-count (event)
357 "Return the multi-click count of EVENT, a click or drag event.
358The return value is a positive integer."
359 (if (integerp (nth 2 event)) (nth 2 event) 1))
360
0f03054a
RS
361(defsubst posn-window (position)
362 "Return the window in POSITION.
363POSITION should be a list of the form
364 (WINDOW BUFFER-POSITION (COL . ROW) TIMESTAMP)
365as returned by the `event-start' and `event-end' functions."
366 (nth 0 position))
367
368(defsubst posn-point (position)
369 "Return the buffer location in POSITION.
370POSITION should be a list of the form
371 (WINDOW BUFFER-POSITION (COL . ROW) TIMESTAMP)
372as returned by the `event-start' and `event-end' functions."
15db4e0e
JB
373 (if (consp (nth 1 position))
374 (car (nth 1 position))
375 (nth 1 position)))
0f03054a
RS
376
377(defsubst posn-col-row (position)
378 "Return the row and column in POSITION.
379POSITION should be a list of the form
380 (WINDOW BUFFER-POSITION (COL . ROW) TIMESTAMP)
381as returned by the `event-start' and `event-end' functions."
382 (nth 2 position))
383
384(defsubst posn-timestamp (position)
385 "Return the timestamp of POSITION.
386POSITION should be a list of the form
387 (WINDOW BUFFER-POSITION (COL . ROW) TIMESTAMP)
f415c00c 388as returned by the `event-start' and `event-end' functions."
0f03054a 389 (nth 3 position))
9a5336ae 390
0f03054a 391\f
9a5336ae
JB
392;;;; Obsolescent names for functions.
393
059184dd
ER
394(defalias 'make-syntax-table 'copy-syntax-table)
395(defalias 'dot 'point)
396(defalias 'dot-marker 'point-marker)
397(defalias 'dot-min 'point-min)
398(defalias 'dot-max 'point-max)
399(defalias 'window-dot 'window-point)
400(defalias 'set-window-dot 'set-window-point)
401(defalias 'read-input 'read-string)
402(defalias 'send-string 'process-send-string)
403(defalias 'send-region 'process-send-region)
404(defalias 'show-buffer 'set-window-buffer)
405(defalias 'buffer-flush-undo 'buffer-disable-undo)
406(defalias 'eval-current-buffer 'eval-buffer)
407(defalias 'compiled-function-p 'byte-code-function-p)
be9b65ac 408
d2ec8956
JB
409;;; This name isn't mentioned in the manual, and we've been hoping to
410;;; phase it out, but there's still a lot of code out there, even for
411;;; Emacs 18.59, which uses mod. I'm going to let the byte compiler's
412;;; make-obsolete function to poke people a little more, and leave the
413;;; `mod' name around for a while longer.
059184dd 414(defalias 'mod '%)
d2ec8956 415
9a5336ae
JB
416;; Some programs still use this as a function.
417(defun baud-rate ()
bcacc42c
RS
418 "Obsolete function returning the value of the `baud-rate' variable.
419Please convert your programs to use the variable `baud-rate' directly."
9a5336ae
JB
420 baud-rate)
421
422\f
423;;;; Alternate names for functions - these are not being phased out.
424
059184dd
ER
425(defalias 'string= 'string-equal)
426(defalias 'string< 'string-lessp)
427(defalias 'move-marker 'set-marker)
428(defalias 'eql 'eq)
429(defalias 'not 'null)
430(defalias 'rplaca 'setcar)
431(defalias 'rplacd 'setcdr)
eb8c3be9 432(defalias 'beep 'ding) ;preserve lingual purity
059184dd
ER
433(defalias 'indent-to-column 'indent-to)
434(defalias 'backward-delete-char 'delete-backward-char)
435(defalias 'search-forward-regexp (symbol-function 're-search-forward))
436(defalias 'search-backward-regexp (symbol-function 're-search-backward))
437(defalias 'int-to-string 'number-to-string)
37f6661a
JB
438
439;;; Should this be an obsolete name? If you decide it should, you get
440;;; to go through all the sources and change them.
059184dd 441(defalias 'string-to-int 'string-to-number)
be9b65ac 442\f
9a5336ae 443;;;; Hook manipulation functions.
be9b65ac 444
be9b65ac
DL
445(defun run-hooks (&rest hooklist)
446 "Takes hook names and runs each one in turn. Major mode functions use this.
447Each argument should be a symbol, a hook variable.
448These symbols are processed in the order specified.
449If a hook symbol has a non-nil value, that value may be a function
450or a list of functions to be called to run the hook.
451If the value is a function, it is called with no arguments.
452If it is a list, the elements are called, in order, with no arguments."
453 (while hooklist
454 (let ((sym (car hooklist)))
455 (and (boundp sym)
456 (symbol-value sym)
457 (let ((value (symbol-value sym)))
458 (if (and (listp value) (not (eq (car value) 'lambda)))
459 (mapcar 'funcall value)
460 (funcall value)))))
461 (setq hooklist (cdr hooklist))))
462
463;; Tell C code how to call this function.
464(defconst run-hooks 'run-hooks
465 "Variable by which C primitives find the function `run-hooks'.
466Don't change it.")
467
08159178 468(defun add-hook (hook function &optional append)
32295976
RS
469 "Add to the value of HOOK the function FUNCTION.
470FUNCTION is not added if already present.
471FUNCTION is added (if necessary) at the beginning of the hook list
472unless the optional argument APPEND is non-nil, in which case
473FUNCTION is added at the end.
474
475HOOK should be a symbol, and FUNCTION may be any valid function. If
476HOOK is void, it is first set to nil. If HOOK's value is a single
477function, it is changed to a list of functions."
be9b65ac 478 (or (boundp hook) (set hook nil))
32295976
RS
479 ;; If the hook value is a single function, turn it into a list.
480 (let ((old (symbol-value hook)))
481 (if (or (not (listp old)) (eq (car old) 'lambda))
482 (set hook (list old))))
be9b65ac
DL
483 (or (if (consp function)
484 ;; Clever way to tell whether a given lambda-expression
485 ;; is equal to anything in the hook.
486 (let ((tail (assoc (cdr function) (symbol-value hook))))
487 (equal function tail))
488 (memq function (symbol-value hook)))
08159178
ER
489 (set hook
490 (if append
491 (nconc (symbol-value hook) (list function))
492 (cons function (symbol-value hook))))))
9a5336ae 493
be9b65ac 494\f
9a5336ae
JB
495;;;; Specifying things to do after certain files are loaded.
496
497(defun eval-after-load (file form)
498 "Arrange that, if FILE is ever loaded, FORM will be run at that time.
499This makes or adds to an entry on `after-load-alist'.
500FILE should be the name of a library, with no directory name."
501 (or (assoc file after-load-alist)
502 (setq after-load-alist (cons (list file) after-load-alist)))
503 (nconc (assoc file after-load-alist) (list form))
504 form)
505
506(defun eval-next-after-load (file)
507 "Read the following input sexp, and run it whenever FILE is loaded.
508This makes or adds to an entry on `after-load-alist'.
509FILE should be the name of a library, with no directory name."
510 (eval-after-load file (read)))
511
512\f
513;;;; Input and display facilities.
514
515(defun read-quoted-char (&optional prompt)
516 "Like `read-char', except that if the first character read is an octal
517digit, we read up to two more octal digits and return the character
518represented by the octal number consisting of those digits.
519Optional argument PROMPT specifies a string to use to prompt the user."
520 (let ((count 0) (code 0) char)
521 (while (< count 3)
522 (let ((inhibit-quit (zerop count))
523 (help-form nil))
524 (and prompt (message "%s-" prompt))
525 (setq char (read-char))
526 (if inhibit-quit (setq quit-flag nil)))
527 (cond ((null char))
528 ((and (<= ?0 char) (<= char ?7))
529 (setq code (+ (* code 8) (- char ?0))
530 count (1+ count))
531 (and prompt (message (setq prompt
532 (format "%s %c" prompt char)))))
533 ((> count 0)
534 (setq unread-command-events (list char) count 259))
535 (t (setq code char count 259))))
536 (logand 255 code)))
537
538(defun force-mode-line-update (&optional all)
539 "Force the mode-line of the current buffer to be redisplayed.
540With optional non-nil ALL then force then force redisplay of all mode-lines."
541 (if all (save-excursion (set-buffer (other-buffer))))
542 (set-buffer-modified-p (buffer-modified-p)))
543
be9b65ac
DL
544(defun momentary-string-display (string pos &optional exit-char message)
545 "Momentarily display STRING in the buffer at POS.
546Display remains until next character is typed.
547If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
548otherwise it is then available as input (as a command if nothing else).
549Display MESSAGE (optional fourth arg) in the echo area.
550If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
551 (or exit-char (setq exit-char ?\ ))
552 (let ((buffer-read-only nil)
553 (modified (buffer-modified-p))
554 (name buffer-file-name)
555 insert-end)
556 (unwind-protect
557 (progn
558 (save-excursion
559 (goto-char pos)
560 ;; defeat file locking... don't try this at home, kids!
561 (setq buffer-file-name nil)
562 (insert-before-markers string)
563 (setq insert-end (point)))
564 (message (or message "Type %s to continue editing.")
565 (single-key-description exit-char))
3547c855 566 (let ((char (read-event)))
be9b65ac 567 (or (eq char exit-char)
dbc4e1c1 568 (setq unread-command-events (list char)))))
be9b65ac
DL
569 (if insert-end
570 (save-excursion
571 (delete-region pos insert-end)))
572 (setq buffer-file-name name)
573 (set-buffer-modified-p modified))))
574
9a5336ae
JB
575\f
576;;;; Miscellanea.
577
578(defun ignore (&rest ignore)
579 "Do nothing.
580Accept any number of arguments, but ignore them."
581 nil)
582
583(defun error (&rest args)
584 "Signal an error, making error message by passing all args to `format'."
585 (while t
586 (signal 'error (list (apply 'format args)))))
587
588(defun user-original-login-name ()
589 "Return user's login name from original login.
590This tries to remain unaffected by `su', by looking in environment variables."
591 (or (getenv "LOGNAME") (getenv "USER") (user-login-name)))
592
be9b65ac
DL
593(defun start-process-shell-command (name buffer &rest args)
594 "Start a program in a subprocess. Return the process object for it.
595Args are NAME BUFFER COMMAND &rest COMMAND-ARGS.
596NAME is name for process. It is modified if necessary to make it unique.
597BUFFER is the buffer or (buffer-name) to associate with the process.
598 Process output goes at end of that buffer, unless you specify
599 an output stream or filter function to handle the output.
600 BUFFER may be also nil, meaning that this process is not associated
601 with any buffer
602Third arg is command name, the name of a shell command.
603Remaining arguments are the arguments for the command.
604Wildcards and redirection are handle as usual in the shell."
605 (if (eq system-type 'vax-vms)
606 (apply 'start-process name buffer args)
607 (start-process name buffer shell-file-name "-c"
608 (concat "exec " (mapconcat 'identity args " ")))))
be9b65ac 609
9a5336ae
JB
610(defmacro save-match-data (&rest body)
611 "Execute the BODY forms, restoring the global value of the match data."
612 (let ((original (make-symbol "match-data")))
613 (list
614 'let (list (list original '(match-data)))
615 (list 'unwind-protect
616 (cons 'progn body)
617 (list 'store-match-data original)))))
ffd56f97 618
9a5336ae
JB
619;; now in fns.c
620;(defun nth (n list)
621; "Returns the Nth element of LIST.
622;N counts from zero. If LIST is not that long, nil is returned."
623; (car (nthcdr n list)))
624;
625;(defun copy-alist (alist)
626; "Return a copy of ALIST.
627;This is a new alist which represents the same mapping
628;from objects to objects, but does not share the alist structure with ALIST.
629;The objects mapped (cars and cdrs of elements of the alist)
630;are shared, however."
631; (setq alist (copy-sequence alist))
632; (let ((tail alist))
633; (while tail
634; (if (consp (car tail))
635; (setcar tail (cons (car (car tail)) (cdr (car tail)))))
636; (setq tail (cdr tail))))
637; alist)
630cc463
ER
638
639;;; subr.el ends here
9a5336ae 640