0
|
1 ;;; cmdloop.el --- support functions for the top-level command loop.
|
|
2
|
|
3 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; This file is part of XEmacs.
|
|
6
|
|
7 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
8 ;; under the terms of the GNU General Public License as published by
|
|
9 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
10 ;; any later version.
|
|
11
|
|
12 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
15 ;; General Public License for more details.
|
|
16
|
|
17 ;; You should have received a copy of the GNU General Public License
|
16
|
18 ;; along with XEmacs; see the file COPYING. If not, write to the
|
70
|
19 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
16
|
20 ;; Boston, MA 02111-1307, USA.
|
0
|
21
|
|
22 ;;; Synched up with: FSF 19.30. (Some of the stuff below is in FSF's subr.el.)
|
|
23
|
|
24 ;; Written by Richard Mlynarik 8-Jul-92
|
|
25
|
|
26 (defun recursion-depth ()
|
|
27 "Return the current depth in recursive edits."
|
|
28 (+ command-loop-level (minibuffer-depth)))
|
|
29
|
|
30 (defun top-level ()
|
|
31 "Exit all recursive editing levels."
|
|
32 (interactive)
|
|
33 (throw 'top-level nil))
|
|
34
|
|
35 (defun exit-recursive-edit ()
|
|
36 "Exit from the innermost recursive edit or minibuffer."
|
|
37 (interactive)
|
|
38 (if (> (recursion-depth) 0)
|
|
39 (throw 'exit nil))
|
|
40 (error "No recursive edit is in progress"))
|
|
41
|
|
42 (defun abort-recursive-edit ()
|
|
43 "Abort the command that requested this recursive edit or minibuffer input."
|
|
44 (interactive)
|
|
45 (if (> (recursion-depth) 0)
|
|
46 (throw 'exit t))
|
|
47 (error "No recursive edit is in progress"))
|
|
48
|
|
49 ;; (defun keyboard-quit ()
|
|
50 ;; "Signal a `quit' condition."
|
|
51 ;; (interactive)
|
|
52 ;; (deactivate-mark)
|
|
53 ;; (signal 'quit nil))
|
|
54
|
|
55 ;; moved here from pending-del.
|
|
56 (defun keyboard-quit ()
|
|
57 "Signal a `quit' condition.
|
|
58 If this character is typed while lisp code is executing, it will be treated
|
|
59 as an interrupt.
|
|
60 If this character is typed at top-level, this simply beeps.
|
|
61 If `zmacs-regions' is true, and the zmacs region is active, then this
|
|
62 key deactivates the region without beeping or signalling."
|
|
63 (interactive)
|
|
64 (if (and zmacs-regions (zmacs-deactivate-region))
|
|
65 ;; pseudo-zmacs compatibility: don't beep if this ^G is simply
|
|
66 ;; deactivating the region. If it is inactive, beep.
|
|
67 nil
|
|
68 (signal 'quit nil)))
|
|
69
|
|
70 (defvar buffer-quit-function nil
|
|
71 "Function to call to \"quit\" the current buffer, or nil if none.
|
|
72 \\[keyboard-escape-quit] calls this function when its more local actions
|
|
73 \(such as cancelling a prefix argument, minibuffer or region) do not apply.")
|
|
74
|
|
75 (defun keyboard-escape-quit ()
|
|
76 "Exit the current \"mode\" (in a generalized sense of the word).
|
|
77 This command can exit an interactive command such as `query-replace',
|
|
78 can clear out a prefix argument or a region,
|
|
79 can get out of the minibuffer or other recursive edit,
|
|
80 cancel the use of the current buffer (for special-purpose buffers),
|
|
81 or go back to just one window (by deleting all but the selected window)."
|
|
82 (interactive)
|
|
83 (cond ((eq last-command 'mode-exited) nil)
|
|
84 ((> (minibuffer-depth) 0)
|
|
85 (abort-recursive-edit))
|
|
86 (current-prefix-arg
|
|
87 nil)
|
|
88 ((region-active-p)
|
|
89 (zmacs-deactivate-region))
|
|
90 (buffer-quit-function
|
|
91 (funcall buffer-quit-function))
|
|
92 ((not (one-window-p t))
|
|
93 (delete-other-windows))))
|
|
94
|
|
95 ;;#### This should really be a ring of last errors.
|
|
96 (defvar last-error nil
|
|
97 "#### Document me.")
|
|
98
|
|
99 (defun command-error (error-object)
|
|
100 (let ((inhibit-quit t)
|
|
101 (debug-on-error nil)
|
|
102 (etype (car-safe error-object)))
|
|
103 (setq quit-flag nil)
|
|
104 (setq standard-output t)
|
|
105 (setq standard-input t)
|
|
106 (setq executing-kbd-macro nil)
|
|
107 (zmacs-deactivate-region)
|
|
108 (discard-input)
|
|
109
|
|
110 (setq last-error error-object)
|
|
111
|
|
112 (message nil)
|
|
113 (ding nil (cond ((eq etype 'undefined-keystroke-sequence)
|
|
114 (if (and (vectorp (nth 1 error-object))
|
|
115 (/= 0 (length (nth 1 error-object)))
|
|
116 (button-event-p (aref (nth 1 error-object) 0)))
|
|
117 'undefined-click
|
|
118 'undefined-key))
|
|
119 ((eq etype 'quit)
|
|
120 'quit)
|
|
121 ((memq etype '(end-of-buffer beginning-of-buffer))
|
|
122 'buffer-bound)
|
|
123 ((eq etype 'buffer-read-only)
|
|
124 'read-only)
|
|
125 (t 'command-error)))
|
|
126 (display-error error-object t)
|
|
127
|
|
128 (if (noninteractive)
|
|
129 (progn
|
|
130 (message "XEmacs exiting.")
|
|
131 (kill-emacs -1)))
|
|
132 t))
|
|
133
|
|
134 (defun describe-last-error ()
|
|
135 "Redisplay the last error-message. See the variable `last-error'."
|
|
136 (interactive)
|
|
137 (with-displaying-help-buffer
|
2
|
138 (lambda ()
|
|
139 (princ "Last error was:\n" standard-output)
|
|
140 (display-error last-error standard-output))))
|
0
|
141
|
|
142
|
|
143 ;;#### Must be done later in the loadup sequence
|
|
144 ;(define-key (symbol-function 'help-command) "e" 'describe-last-error)
|
|
145
|
|
146
|
|
147 (defun truncate-command-history-for-gc ()
|
|
148 (let ((tail (nthcdr 30 command-history)))
|
|
149 (if tail (setcdr tail nil)))
|
|
150 (let ((tail (nthcdr 30 values)))
|
|
151 (if tail (setcdr tail nil)))
|
|
152 )
|
|
153
|
|
154 (add-hook 'pre-gc-hook 'truncate-command-history-for-gc)
|
|
155
|
|
156
|
|
157 ;;;; Object-oriented programming at its finest
|
|
158
|
|
159 (defun display-error (error-object stream) ;(defgeneric report-condition ...)
|
|
160 "Display `error-object' on `stream' in a user-friendly way."
|
|
161 (funcall (or (let ((type (car-safe error-object)))
|
|
162 (catch 'error
|
|
163 (and (consp error-object)
|
|
164 (symbolp type)
|
|
165 ;;(stringp (get type 'error-message))
|
|
166 (consp (get type 'error-conditions))
|
|
167 (let ((tail (cdr error-object)))
|
|
168 (while (not (null tail))
|
|
169 (if (consp tail)
|
|
170 (setq tail (cdr tail))
|
|
171 (throw 'error nil)))
|
|
172 t)
|
|
173 ;; (check-type condition condition)
|
|
174 (get type 'error-conditions)
|
|
175 ;; Search class hierarchy
|
|
176 (let ((tail (get type 'error-conditions)))
|
|
177 (while (not (null tail))
|
|
178 (cond ((not (and (consp tail)
|
|
179 (symbolp (car tail))))
|
|
180 (throw 'error nil))
|
|
181 ((get (car tail) 'display-error)
|
|
182 (throw 'error (get (car tail)
|
|
183 'display-error)))
|
|
184 (t
|
|
185 (setq tail (cdr tail)))))
|
|
186 ;; Default method
|
|
187 #'(lambda (error-object stream)
|
|
188 (let ((type (car error-object))
|
|
189 (tail (cdr error-object))
|
|
190 (first t)
|
|
191 (print-message-label 'error))
|
|
192 (if (eq type 'error)
|
|
193 (progn (princ (car tail) stream)
|
|
194 (setq tail (cdr tail)))
|
|
195 (princ (or (gettext (get type 'error-message)) type)
|
|
196 stream))
|
|
197 (while tail
|
|
198 (princ (if first ": " ", ") stream)
|
|
199 (prin1 (car tail) stream)
|
|
200 (setq tail (cdr tail)
|
|
201 first nil))))))))
|
|
202 #'(lambda (error-object stream)
|
|
203 (princ (gettext "Peculiar error ") stream)
|
|
204 (prin1 error-object stream)))
|
|
205 error-object stream))
|
|
206
|
|
207 (put 'file-error 'display-error
|
|
208 #'(lambda (error-object stream)
|
|
209 (let ((tail (cdr error-object))
|
|
210 (first t))
|
|
211 (princ (car tail) stream)
|
|
212 (while (setq tail (cdr tail))
|
|
213 (princ (if first ": " ", ") stream)
|
|
214 (princ (car tail) stream)
|
|
215 (setq first nil)))))
|
|
216
|
|
217 (put 'undefined-keystroke-sequence 'display-error
|
|
218 #'(lambda (error-object stream)
|
|
219 (princ (key-description (car (cdr error-object))) stream)
|
|
220 ;; #### I18N3: doesn't localize properly.
|
|
221 (princ (gettext " not defined.") stream) ; doo dah, doo dah.
|
|
222 ))
|
|
223
|
|
224
|
|
225 (defvar teach-extended-commands-p t
|
|
226 "*If true, then `\\[execute-extended-command]' will teach you keybindings.
|
|
227 Any time you execute a command with \\[execute-extended-command] which has a
|
|
228 shorter keybinding, you will be shown the alternate binding before the
|
|
229 command executes. There is a short pause after displaying the binding,
|
|
230 before executing it; the length can be controlled by
|
|
231 `teach-extended-commands-timeout'.")
|
|
232
|
|
233 (defvar teach-extended-commands-timeout 2
|
|
234 "*How long to pause after displaying a keybinding before executing.
|
|
235 The value is measured in seconds. This only applies if
|
|
236 `teach-extended-commands-p' is true.")
|
|
237
|
|
238 ;That damn RMS went off and implemented something differently, after
|
|
239 ;we had already implemented it. We can't support both properly until
|
|
240 ;we have Lisp magic variables.
|
|
241 ;(defvar suggest-key-bindings t
|
|
242 ; "*FSFmacs equivalent of `teach-extended-commands-*'.
|
|
243 ;Provided for compatibility only.
|
|
244 ;Non-nil means show the equivalent key-binding when M-x command has one.
|
|
245 ;The value can be a length of time to show the message for.
|
|
246 ;If the value is non-nil and not a number, we wait 2 seconds.")
|
|
247 ;
|
|
248 ;(make-obsolete-variable 'suggest-key-bindings 'teach-extended-commands-p)
|
|
249
|
|
250 (defun execute-extended-command (prefix-arg)
|
|
251 "Read a command name from the minibuffer using 'completing-read'.
|
|
252 Then call the specified command using 'command-execute' and return its
|
|
253 return value. If the command asks for a prefix argument, supply the
|
|
254 value of the current raw prefix argument, or the value of PREFIX-ARG
|
|
255 when called from Lisp."
|
|
256 (interactive "P")
|
|
257 ;; Note: This doesn't hack "this-command-keys"
|
|
258 (let ((prefix-arg prefix-arg))
|
|
259 (setq this-command (read-command
|
|
260 ;; Note: this has the hard-wired
|
|
261 ;; "C-u" and "M-x" string bug in common
|
|
262 ;; with all GNU Emacs's.
|
|
263 ;; (i.e. it prints C-u and M-x regardless of
|
|
264 ;; whether some other keys were actually bound
|
|
265 ;; to `execute-extended-command' and
|
|
266 ;; `universal-argument'.
|
|
267 (cond ((eq prefix-arg '-)
|
|
268 "- M-x ")
|
|
269 ((equal prefix-arg '(4))
|
|
270 "C-u M-x ")
|
|
271 ((integerp prefix-arg)
|
|
272 (format "%d M-x " prefix-arg))
|
|
273 ((and (consp prefix-arg)
|
|
274 (integerp (car prefix-arg)))
|
|
275 (format "%d M-x " (car prefix-arg)))
|
|
276 (t
|
|
277 "M-x ")))))
|
|
278
|
|
279 (if (and teach-extended-commands-p (interactive-p))
|
|
280 (let ((keys (where-is-internal this-command)))
|
|
281 (if keys
|
|
282 (progn
|
|
283 (message "M-x %s (bound to key%s: %s)"
|
|
284 this-command
|
|
285 (if (cdr keys) "s" "")
|
|
286 (mapconcat 'key-description
|
|
287 (sort keys #'(lambda (x y)
|
|
288 (< (length x) (length y))))
|
|
289 ", "))
|
|
290 (sit-for teach-extended-commands-timeout)))))
|
|
291
|
|
292 (command-execute this-command t))
|
|
293
|
|
294
|
|
295 ;;; C code calls this; the underscores in the variable names are to avoid
|
|
296 ;;; cluttering the specbind namespace (lexical scope! lexical scope!)
|
|
297 ;;; Putting this in Lisp instead of C slows kbd macros by 50%.
|
|
298 ;(defun command-execute (_command &optional _record-flag)
|
|
299 ; "Execute CMD as an editor command.
|
|
300 ;CMD must be a symbol that satisfies the `commandp' predicate.
|
|
301 ;Optional second arg RECORD-FLAG non-nil
|
|
302 ;means unconditionally put this command in `command-history'.
|
|
303 ;Otherwise, that is done only if an arg is read using the minibuffer."
|
|
304 ; (let ((_prefix prefix-arg)
|
|
305 ; (_cmd (indirect-function _command)))
|
|
306 ; (setq prefix-arg nil
|
|
307 ; this-command _command
|
|
308 ; current-prefix-arg _prefix
|
|
309 ; zmacs-region-stays nil)
|
|
310 ; ;; #### debug_on_next_call = 0;
|
|
311 ; (cond ((and (symbolp _command)
|
|
312 ; (get _command 'disabled))
|
|
313 ; (run-hooks disabled-command-hook))
|
|
314 ; ((or (stringp _cmd) (vectorp _cmd))
|
|
315 ; ;; If requested, place the macro in the command history.
|
|
316 ; ;; For other sorts of commands, call-interactively takes
|
|
317 ; ;; care of this.
|
|
318 ; (if _record-flag
|
|
319 ; (setq command-history
|
|
320 ; (cons (list 'execute-kbd-macro _cmd _prefix)
|
|
321 ; command-history)))
|
|
322 ; (execute-kbd-macro _cmd _prefix))
|
|
323 ; (t
|
|
324 ; (call-interactively _command _record-flag)))))
|
|
325
|
|
326 (defun y-or-n-p-minibuf (prompt)
|
|
327 "Ask user a \"y or n\" question. Return t if answer is \"y\".
|
|
328 Takes one argument, which is the string to display to ask the question.
|
|
329 It should end in a space; `y-or-n-p' adds `(y or n) ' to it.
|
|
330 No confirmation of the answer is requested; a single character is enough.
|
|
331 Also accepts Space to mean yes, or Delete to mean no."
|
|
332 (save-excursion
|
|
333 (let* ((pre "")
|
|
334 (yn (gettext "(y or n) "))
|
|
335 ;; we need to translate the prompt ourselves because of the
|
|
336 ;; strange way we handle it.
|
|
337 (prompt (gettext prompt))
|
|
338 event)
|
|
339 (while (stringp yn)
|
|
340 (if (let ((cursor-in-echo-area t)
|
|
341 (inhibit-quit t))
|
|
342 (message "%s%s%s" pre prompt yn)
|
|
343 (setq event (next-command-event event))
|
70
|
344 (prog1
|
|
345 (or quit-flag (eq 'keyboard-quit (key-binding event)))
|
|
346 (setq quit-flag nil)))
|
0
|
347 (progn
|
|
348 (message "%s%s%s%s" pre prompt yn (single-key-description event))
|
|
349 (setq quit-flag nil)
|
|
350 (signal 'quit '())))
|
|
351 (let* ((keys (events-to-keys (vector event)))
|
|
352 (def (lookup-key query-replace-map keys)))
|
|
353 (cond ((eq def 'skip)
|
|
354 (message "%s%sNo" prompt yn)
|
|
355 (setq yn nil))
|
|
356 ((eq def 'act)
|
|
357 (message "%s%sYes" prompt yn)
|
|
358 (setq yn t))
|
|
359 ((eq def 'recenter)
|
|
360 (recenter))
|
|
361 ((or (eq def 'quit) (eq def 'exit-prefix))
|
|
362 (signal 'quit '()))
|
|
363 ((button-release-event-p event) ; ignore them
|
|
364 nil)
|
|
365 (t
|
|
366 (message "%s%s%s%s" pre prompt yn
|
|
367 (single-key-description event))
|
|
368 (ding nil 'y-or-n-p)
|
|
369 (discard-input)
|
|
370 (if (= (length pre) 0)
|
|
371 (setq pre (gettext "Please answer y or n. ")))))))
|
|
372 yn)))
|
|
373
|
|
374 (defun yes-or-no-p-minibuf (prompt)
|
|
375 "Ask user a yes-or-no question. Return t if answer is yes.
|
|
376 Takes one argument, which is the string to display to ask the question.
|
|
377 It should end in a space; `yes-or-no-p' adds `(yes or no) ' to it.
|
|
378 The user must confirm the answer with RET,
|
|
379 and can edit it until it has been confirmed."
|
|
380 (save-excursion
|
|
381 (let ((p (concat (gettext prompt) (gettext "(yes or no) ")))
|
|
382 (ans ""))
|
|
383 (while (stringp ans)
|
|
384 (setq ans (downcase (read-string p nil t))) ;no history
|
|
385 (cond ((string-equal ans (gettext "yes"))
|
|
386 (setq ans 't))
|
|
387 ((string-equal ans (gettext "no"))
|
|
388 (setq ans 'nil))
|
|
389 (t
|
|
390 (ding nil 'yes-or-no-p)
|
|
391 (discard-input)
|
|
392 (message "Please answer yes or no.")
|
|
393 (sleep-for 2))))
|
|
394 ans)))
|
|
395
|
|
396 ;; these may be redefined later, but make the original def easily encapsulable
|
|
397 (define-function 'yes-or-no-p 'yes-or-no-p-minibuf)
|
|
398 (define-function 'y-or-n-p 'y-or-n-p-minibuf)
|
|
399
|
|
400
|
|
401 (defun read-char ()
|
|
402 "Read a character from the command input (keyboard or macro).
|
|
403 If a mouse click or non-ASCII character is detected, an error is
|
|
404 signalled. The character typed is returned as an ASCII value. This
|
|
405 is most likely the wrong thing for you to be using: consider using
|
|
406 the `next-command-event' function instead."
|
|
407 (save-excursion
|
|
408 (let ((inhibit-quit t)
|
|
409 (event (next-command-event)))
|
|
410 (prog1 (or (event-to-character event)
|
|
411 ;; Kludge. If the event we read was a mouse-release,
|
|
412 ;; discard it and read the next one.
|
|
413 (if (button-release-event-p event)
|
|
414 (event-to-character (next-command-event event)))
|
|
415 (error "Key read has no ASCII equivalent %S" event))
|
|
416 ;; this is not necessary, but is marginally more efficient than GC.
|
|
417 (deallocate-event event)))))
|
|
418
|
|
419 (defun read-char-exclusive ()
|
|
420 "Read a character from the command input (keyboard or macro).
|
|
421 If a mouse click or non-ASCII character is detected, it is discarded.
|
|
422 The character typed is returned as an ASCII value. This is most likely
|
|
423 the wrong thing for you to be using: consider using the
|
|
424 `next-command-event' function instead."
|
|
425 (let ((inhibit-quit t)
|
|
426 event ch)
|
|
427 (while (progn
|
|
428 (setq event (next-command-event))
|
|
429 (setq ch (event-to-character event))
|
|
430 (deallocate-event event)
|
|
431 (null ch)))
|
|
432 ch))
|
|
433
|
|
434 (defun read-quoted-char (&optional prompt)
|
|
435 "Like `read-char', except that if the first character read is an octal
|
|
436 digit, we read up to two more octal digits and return the character
|
|
437 represented by the octal number consisting of those digits.
|
|
438 Optional argument PROMPT specifies a string to use to prompt the user."
|
|
439 (save-excursion
|
|
440 (let ((count 0) (code 0)
|
|
441 (prompt (and prompt (gettext prompt)))
|
|
442 char event)
|
|
443 (while (< count 3)
|
|
444 (let ((inhibit-quit (zerop count))
|
|
445 ;; Don't let C-h get the help message--only help function keys.
|
|
446 (help-char nil)
|
|
447 (help-form
|
|
448 "Type the special character you want to use,
|
|
449 or three octal digits representing its character code."))
|
|
450 (and prompt (display-message 'prompt (format "%s-" prompt)))
|
|
451 (setq event (next-command-event)
|
|
452 char (or (event-to-character event nil nil t)
|
|
453 (error "key read cannot be inserted in a buffer: %S"
|
|
454 event)))
|
|
455 (if inhibit-quit (setq quit-flag nil)))
|
|
456 (cond ((null char))
|
|
457 ((and (<= ?0 char) (<= char ?7))
|
|
458 (setq code (+ (* code 8) (- char ?0))
|
|
459 count (1+ count))
|
|
460 (and prompt (display-message
|
|
461 'prompt
|
|
462 (setq prompt (format "%s %c" prompt char)))))
|
|
463 ((> count 0)
|
|
464 (setq unread-command-event event
|
|
465 count 259))
|
|
466 (t (setq code char count 259))))
|
|
467 ;; Turn a meta-character into a character with the 0200 bit set.
|
|
468 (logior (if (/= (logand code ?\M-\^@) 0) 128 0)
|
|
469 (logand 255 code)))))
|
|
470
|
|
471 (defun momentary-string-display (string pos &optional exit-char message)
|
|
472 "Momentarily display STRING in the buffer at POS.
|
|
473 Display remains until next character is typed.
|
|
474 If the char is EXIT-CHAR (optional third arg, default is SPC) it is swallowed;
|
|
475 otherwise it is then available as input (as a command if nothing else).
|
|
476 Display MESSAGE (optional fourth arg) in the echo area.
|
|
477 If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there."
|
|
478 (or exit-char (setq exit-char ?\ ))
|
|
479 (let ((buffer-read-only nil)
|
|
480 ;; Don't modify the undo list at all.
|
|
481 (buffer-undo-list t)
|
|
482 (modified (buffer-modified-p))
|
|
483 (name buffer-file-name)
|
|
484 insert-end)
|
|
485 (unwind-protect
|
|
486 (progn
|
|
487 (save-excursion
|
|
488 (goto-char pos)
|
|
489 ;; defeat file locking... don't try this at home, kids!
|
|
490 (setq buffer-file-name nil)
|
|
491 (insert-before-markers (gettext string))
|
|
492 (setq insert-end (point))
|
|
493 ;; If the message end is off frame, recenter now.
|
|
494 (if (> (window-end) insert-end)
|
|
495 (recenter (/ (window-height) 2)))
|
|
496 ;; If that pushed message start off the frame,
|
|
497 ;; scroll to start it at the top of the frame.
|
|
498 (move-to-window-line 0)
|
|
499 (if (> (point) pos)
|
|
500 (progn
|
|
501 (goto-char pos)
|
|
502 (recenter 0))))
|
|
503 (message (or message (gettext "Type %s to continue editing."))
|
|
504 (single-key-description exit-char))
|
|
505 (let ((event (save-excursion (next-command-event))))
|
|
506 (or (eq (event-to-character event) exit-char)
|
|
507 (setq unread-command-event event))))
|
|
508 (if insert-end
|
|
509 (save-excursion
|
|
510 (delete-region pos insert-end)))
|
|
511 (setq buffer-file-name name)
|
|
512 (set-buffer-modified-p modified))))
|
|
513
|
|
514 ;;; cmdloop.el ends here
|