1 ;;; minibuf.el --- Minibuffer functions for XEmacs
3 ;; Copyright (C) 1992, 1993, 1994, 1997 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Tinker Systems.
5 ;; Copyright (C) 1995, 1996, 2000 Ben Wing.
7 ;; Author: Richard Mlynarik
9 ;; Maintainer: XEmacs Development Team
10 ;; Keywords: internal, dumped
12 ;; This file is part of XEmacs.
14 ;; XEmacs is free software; you can redistribute it and/or modify it
15 ;; under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 2, or (at your option)
19 ;; XEmacs is distributed in the hope that it will be useful, but
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 ;; General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with XEmacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, 59 Temple Place - Suite 330,
27 ;; Boston, MA 02111-1307, USA.
29 ;;; Synched up with: all the minibuffer history stuff is synched with
30 ;;; 19.30. Not sure about the rest.
34 ;; This file is dumped with XEmacs.
36 ;; Written by Richard Mlynarik 2-Oct-92
38 ;; 06/11/1997 - Use char-(after|before) instead of
39 ;; (following|preceding)-char. -slb
43 (defgroup minibuffer nil
44 "Controling the behavior of the minibuffer."
48 (defcustom insert-default-directory t
49 "*Non-nil means when reading a filename start with default dir in minibuffer."
53 (defcustom minibuffer-history-uniquify t
54 "*Non-nil means when adding an item to a minibuffer history, remove
55 previous occurrences of the same item from the history list first,
56 rather than just consing the new element onto the front of the list."
60 (defvar minibuffer-completion-table nil
61 "Alist or obarray used for completion in the minibuffer.
62 This becomes the ALIST argument to `try-completion' and `all-completions'.
64 The value may alternatively be a function, which is given three arguments:
65 STRING, the current buffer contents;
66 PREDICATE, the predicate for filtering possible matches;
67 CODE, which says what kind of things to do.
68 CODE can be nil, t or `lambda'.
69 nil means to return the best completion of STRING, nil if there is none,
70 or t if it is already a unique completion.
71 t means to return a list of all possible completions of STRING.
72 `lambda' means to return t if STRING is a valid completion as it stands.")
74 (defvar minibuffer-completion-predicate nil
75 "Within call to `completing-read', this holds the PREDICATE argument.")
77 (defvar minibuffer-completion-confirm nil
78 "Non-nil => demand confirmation of completion before exiting minibuffer.")
80 (defcustom minibuffer-confirm-incomplete nil
81 "If true, then in contexts where completing-read allows answers which
82 are not valid completions, an extra RET must be typed to confirm the
83 response. This is helpful for catching typos, etc."
87 (defcustom completion-auto-help t
88 "*Non-nil means automatically provide help for invalid completion input."
92 (defcustom enable-recursive-minibuffers nil
93 "*Non-nil means to allow minibuffer commands while in the minibuffer.
94 More precisely, this variable makes a difference when the minibuffer window
95 is the selected window. If you are in some other window, minibuffer commands
96 are allowed even if a minibuffer is active."
100 (defcustom minibuffer-max-depth 1
101 ;; See comment in #'minibuffer-max-depth-exceeded
102 "*Global maximum number of minibuffers allowed;
103 compare to enable-recursive-minibuffers, which is only consulted when the
104 minibuffer is reinvoked while it is the selected window."
105 :type '(choice integer
106 (const :tag "Indefinite" nil))
109 ;; Moved to C. The minibuffer prompt must be setup before this is run
110 ;; and that can only be done from the C side.
111 ;(defvar minibuffer-setup-hook nil
112 ; "Normal hook run just after entry to minibuffer.")
114 ;; see comment at list-mode-hook.
115 (put 'minibuffer-setup-hook 'permanent-local t)
117 (defvar minibuffer-exit-hook nil
118 "Normal hook run just after exit from minibuffer.")
119 (put 'minibuffer-exit-hook 'permanent-local t)
121 (defvar minibuffer-help-form nil
122 "Value that `help-form' takes on inside the minibuffer.")
124 (defvar minibuffer-default nil
125 "Default value for minibuffer input.")
127 (defvar minibuffer-local-map
128 (let ((map (make-sparse-keymap 'minibuffer-local-map)))
130 "Default keymap to use when reading from the minibuffer.")
132 (defvar minibuffer-local-completion-map
133 (let ((map (make-sparse-keymap 'minibuffer-local-completion-map)))
134 (set-keymap-parents map (list minibuffer-local-map))
136 "Local keymap for minibuffer input with completion.")
138 (defvar minibuffer-local-must-match-map
139 (let ((map (make-sparse-keymap 'minibuffer-must-match-map)))
140 (set-keymap-parents map (list minibuffer-local-completion-map))
142 "Local keymap for minibuffer input with completion, for exact match.")
144 ;; (define-key minibuffer-local-map "\C-g" 'abort-recursive-edit)
145 (define-key minibuffer-local-map "\C-g" 'minibuffer-keyboard-quit) ;; moved here from pending-del.el
146 (define-key minibuffer-local-map "\r" 'exit-minibuffer)
147 (define-key minibuffer-local-map "\n" 'exit-minibuffer)
149 ;; Historical crock. Unused by anything but user code, if even that
150 ;(defvar minibuffer-local-ns-map
151 ; (let ((map (make-sparse-keymap 'minibuffer-local-ns-map)))
152 ; (set-keymap-parents map (list minibuffer-local-map))
154 ; "Local keymap for the minibuffer when spaces are not allowed.")
155 ;(define-key minibuffer-local-ns-map [space] 'exit-minibuffer)
156 ;(define-key minibuffer-local-ns-map [tab] 'exit-minibuffer)
157 ;(define-key minibuffer-local-ns-map [?\?] 'self-insert-and-exit)
159 (define-key minibuffer-local-completion-map "\t" 'minibuffer-complete)
160 (define-key minibuffer-local-completion-map " " 'minibuffer-complete-word)
161 (define-key minibuffer-local-completion-map "?" 'minibuffer-completion-help)
162 (define-key minibuffer-local-must-match-map "\r" 'minibuffer-complete-and-exit)
163 (define-key minibuffer-local-must-match-map "\n" 'minibuffer-complete-and-exit)
165 (define-key minibuffer-local-map "\M-n" 'next-history-element)
166 (define-key minibuffer-local-map "\M-p" 'previous-history-element)
167 (define-key minibuffer-local-map '[next] "\M-n")
168 (define-key minibuffer-local-map '[prior] "\M-p")
169 (define-key minibuffer-local-map "\M-r" 'previous-matching-history-element)
170 (define-key minibuffer-local-map "\M-s" 'next-matching-history-element)
171 (define-key minibuffer-local-must-match-map [next]
172 'next-complete-history-element)
173 (define-key minibuffer-local-must-match-map [prior]
174 'previous-complete-history-element)
176 ;; This is an experiment--make up and down arrows do history.
177 (define-key minibuffer-local-map [up] 'previous-history-element)
178 (define-key minibuffer-local-map [down] 'next-history-element)
179 (define-key minibuffer-local-completion-map [up] 'previous-history-element)
180 (define-key minibuffer-local-completion-map [down] 'next-history-element)
181 (define-key minibuffer-local-must-match-map [up] 'previous-history-element)
182 (define-key minibuffer-local-must-match-map [down] 'next-history-element)
184 (defvar read-expression-map (let ((map (make-sparse-keymap
185 'read-expression-map)))
186 (set-keymap-parents map
187 (list minibuffer-local-map))
188 (define-key map "\M-\t" 'lisp-complete-symbol)
190 "Minibuffer keymap used for reading Lisp expressions.")
192 (defvar read-shell-command-map
193 (let ((map (make-sparse-keymap 'read-shell-command-map)))
194 (set-keymap-parents map (list minibuffer-local-map))
195 (define-key map "\t" 'comint-dynamic-complete)
196 (define-key map "\M-\t" 'comint-dynamic-complete)
197 (define-key map "\M-?" 'comint-dynamic-list-completions)
199 "Minibuffer keymap used by `shell-command' and related commands.")
201 (defcustom use-dialog-box t
202 "*Variable controlling usage of the dialog box.
203 If nil, the dialog box will never be used, even in response to mouse events."
207 (defcustom minibuffer-electric-file-name-behavior t
208 "*If non-nil, slash and tilde in certain places cause immediate deletion.
209 These are the same places where this behavior would occur later on anyway,
210 in `substitute-in-file-name'."
214 ;; originally by Stig@hackvan.com
215 (defun minibuffer-electric-separator ()
217 (let ((c last-command-char))
218 (and minibuffer-electric-file-name-behavior
219 (eq c directory-sep-char)
220 (eq c (char-before (point)))
222 (goto-char (point-min))
223 (and (looking-at "/.+:~?[^/]*/.+")
224 (re-search-forward "^/.+:~?[^/]*" nil t)
226 (delete-region (point) (point-max))
229 (goto-char (point-min))
230 (and (looking-at ".+://[^/]*/.+")
231 (re-search-forward "^.+:/" nil t)
233 (delete-region (point) (point-max))
235 ;; permit `//hostname/path/to/file'
236 (not (eq (point) (1+ (point-min))))
237 ;; permit `http://url/goes/here'
238 (or (not (eq ?: (char-after (- (point) 2))))
239 (eq ?/ (char-after (point-min))))
240 (delete-region (point-min) (point)))
243 (defun minibuffer-electric-tilde ()
245 (and minibuffer-electric-file-name-behavior
246 (eq directory-sep-char (char-before (point)))
247 ;; permit URL's with //, for e.g. http://hostname/~user
248 (not (save-excursion (search-backward "//" nil t)))
249 (delete-region (point-min) (point)))
253 (defvar read-file-name-map
254 (let ((map (make-sparse-keymap 'read-file-name-map)))
255 (set-keymap-parents map (list minibuffer-local-completion-map))
256 (define-key map (vector directory-sep-char) 'minibuffer-electric-separator)
257 (define-key map "~" 'minibuffer-electric-tilde)
261 (defvar read-file-name-must-match-map
262 (let ((map (make-sparse-keymap 'read-file-name-map)))
263 (set-keymap-parents map (list minibuffer-local-must-match-map))
264 (define-key map (vector directory-sep-char) 'minibuffer-electric-separator)
265 (define-key map "~" 'minibuffer-electric-tilde)
269 (defun minibuffer-keyboard-quit ()
270 "Abort recursive edit.
271 If `zmacs-regions' is true, and the zmacs region is active in this buffer,
272 then this key deactivates the region without beeping."
274 (if (and (region-active-p)
275 (eq (current-buffer) (zmacs-region-buffer)))
276 ;; pseudo-zmacs compatibility: don't beep if this ^G is simply
277 ;; deactivating the region. If it is inactive, beep.
279 (abort-recursive-edit)))
281 ;;;; Guts of minibuffer invocation
283 ;;#### The only things remaining in C are
284 ;; "Vminibuf_prompt" and the display junk
285 ;; "minibuf_prompt_width" and "minibuf_prompt_pix_width"
286 ;; Also "active_frame", though I suspect I could already
287 ;; hack that in Lisp if I could make any sense of the
288 ;; complete mess of frame/frame code in XEmacs.
289 ;; Vminibuf_prompt could easily be made Lisp-bindable.
290 ;; I suspect that minibuf_prompt*_width are actually recomputed
291 ;; by redisplay as needed -- or could be arranged to be so --
292 ;; and that there could be need for read-minibuffer-internal to
293 ;; save and restore them.
294 ;;#### The only other thing which read-from-minibuffer-internal does
295 ;; which we can't presently do in Lisp is move the frame cursor
296 ;; to the start of the minibuffer line as it returns. This is
297 ;; a rather nice touch and should be preserved -- probably by
298 ;; providing some Lisp-level mechanism (extension to cursor-in-echo-area ?)
302 ;; Like reset_buffer in FSF's buffer.c
303 ;; (Except that kill-all-local-variables doesn't nuke 'permanent-local
304 ;; variables -- we preserve them, reset_buffer doesn't.)
305 (defun reset-buffer (buffer)
306 (with-current-buffer buffer
307 ;(if (fboundp 'unlock-buffer) (unlock-buffer))
308 (kill-all-local-variables)
309 (setq buffer-read-only nil)
310 ;; don't let read only text yanked into the minibuffer
311 ;; permanently wedge it.
312 (make-local-variable 'inhibit-read-only)
313 (setq inhibit-read-only t)
315 ;(setq default-directory nil)
316 (setq buffer-file-name nil)
317 (setq buffer-file-truename nil)
318 (set-buffer-modified-p nil)
319 (setq buffer-backed-up nil)
320 (setq buffer-auto-save-file-name nil)
321 (set-buffer-dedicated-frame buffer nil)
324 (defvar minibuffer-history-variable 'minibuffer-history
325 "History list symbol to add minibuffer values to.
326 Each minibuffer output is added with
327 (set minibuffer-history-variable
328 (cons STRING (symbol-value minibuffer-history-variable)))")
329 (defvar minibuffer-history-position)
332 (defvar initial-minibuffer-history-position)
333 (defvar current-minibuffer-contents)
334 (defvar current-minibuffer-point)
336 (defcustom minibuffer-history-minimum-string-length nil
337 "*If this variable is non-nil, a string will not be added to the
338 minibuffer history if its length is less than that value."
339 :type '(choice (const :tag "Any" nil)
343 (define-error 'input-error "Keyboard input error")
345 (put 'input-error 'display-error
346 #'(lambda (error-object stream)
347 (princ (cadr error-object) stream)))
349 (defun read-from-minibuffer (prompt &optional initial-contents
355 "Read a string from the minibuffer, prompting with string PROMPT.
356 If optional second arg INITIAL-CONTENTS is non-nil, it is a string
357 to be inserted into the minibuffer before reading input.
358 If INITIAL-CONTENTS is (STRING . POSITION), the initial input
359 is STRING, but point is placed POSITION characters into the string.
360 Third arg KEYMAP is a keymap to use while reading;
361 if omitted or nil, the default is `minibuffer-local-map'.
362 If fourth arg READ is non-nil, then interpret the result as a lisp object
363 and return that object:
364 in other words, do `(car (read-from-string INPUT-STRING))'
365 Fifth arg HISTORY, if non-nil, specifies a history list
366 and optionally the initial position in the list.
367 It can be a symbol, which is the history list variable to use,
368 or it can be a cons cell (HISTVAR . HISTPOS).
369 In that case, HISTVAR is the history list variable to use,
370 and HISTPOS is the initial position (the position in the list
371 which INITIAL-CONTENTS corresponds to).
372 If HISTORY is `t', no history will be recorded.
373 Positions are counted starting from 1 at the beginning of the list.
374 Sixth arg ABBREV-TABLE, if non-nil, becomes the value of `local-abbrev-table'
376 Seventh arg DEFAULT, if non-nil, will be returned when user enters
379 See also the variable `completion-highlight-first-word-only' for
380 control over completion display."
381 (if (and (not enable-recursive-minibuffers)
382 (> (minibuffer-depth) 0)
383 (eq (selected-window) (minibuffer-window)))
384 (error "Command attempted to use minibuffer while in minibuffer"))
386 (if (and minibuffer-max-depth
387 (> minibuffer-max-depth 0)
388 (>= (minibuffer-depth) minibuffer-max-depth))
389 (minibuffer-max-depth-exceeded))
391 ;; catch this error before the poor user has typed something...
393 (if (symbolp history)
395 (error "History list %S is unbound" history))
396 (or (boundp (car history))
397 (error "History list %S is unbound" (car history)))))
401 ;; XEmacs in -batch mode calls minibuffer: print the prompt.
402 (message "%s" (gettext prompt))
405 ;;#### Should this even be falling though to the code below?
406 ;;#### How does this stuff work now, anyway?
408 (let* ((dir default-directory)
409 (owindow (selected-window))
410 (oframe (selected-frame))
411 (window (minibuffer-window))
412 (buffer (if (eq (minibuffer-depth) 0)
413 (window-buffer window)
414 (get-buffer-create (format " *Minibuf-%d"
415 (minibuffer-depth)))))
416 (frame (window-frame window))
417 (mconfig (if (eq frame (selected-frame))
418 nil (current-window-configuration frame)))
419 (oconfig (current-window-configuration))
420 ;; dynamic scope sucks sucks sucks sucks sucks sucks.
421 ;; `M-x doctor' makes history a local variable, and thus
422 ;; our binding above is buffer-local and doesn't apply
423 ;; once we switch buffers!!!! We demand better scope!
425 (minibuffer-default default))
428 (set-buffer (reset-buffer buffer))
429 (setq default-directory dir)
430 (make-local-variable 'print-escape-newlines)
431 (setq print-escape-newlines t)
432 (make-local-variable 'current-minibuffer-contents)
433 (make-local-variable 'current-minibuffer-point)
434 (make-local-variable 'initial-minibuffer-history-position)
435 (setq current-minibuffer-contents ""
436 current-minibuffer-point 1)
437 (if (not minibuffer-smart-completion-tracking-behavior)
439 (make-local-variable 'mode-motion-hook)
442 (setq mode-motion-hook 'minibuffer-smart-mouse-tracker))
443 (make-local-variable 'mouse-track-click-hook)
444 (add-hook 'mouse-track-click-hook
445 'minibuffer-smart-maybe-select-highlighted-completion))
446 (set-window-buffer window buffer)
447 (select-window window)
448 (set-window-hscroll window 0)
449 (buffer-enable-undo buffer)
452 (if (consp initial-contents)
454 (insert (car initial-contents))
455 (goto-char (1+ (cdr initial-contents)))
456 (setq current-minibuffer-contents (car initial-contents)
457 current-minibuffer-point (cdr initial-contents)))
458 (insert initial-contents)
459 (setq current-minibuffer-contents initial-contents
460 current-minibuffer-point (point))))
461 (use-local-map (help-keymap-with-help-key
462 (or keymap minibuffer-local-map)
463 minibuffer-help-form))
464 (let ((mouse-grabbed-buffer
465 (and minibuffer-smart-completion-tracking-behavior
467 (current-prefix-arg current-prefix-arg)
468 ;; (help-form minibuffer-help-form)
469 (minibuffer-history-variable (cond ((not _history_)
475 (minibuffer-history-position (cond ((consp _history_)
479 (minibuffer-scroll-window owindow))
480 (setq initial-minibuffer-history-position
481 minibuffer-history-position)
483 (setq local-abbrev-table abbrev-table
485 ;; This is now run from read-minibuffer-internal
486 ;(if minibuffer-setup-hook
487 ; (run-hooks 'minibuffer-setup-hook))
491 (if (> (recursion-depth) (minibuffer-depth))
492 (let ((standard-output t)
494 (read-minibuffer-internal prompt))
495 (read-minibuffer-internal prompt))))
496 ;; Translate an "abort" (throw 'exit 't)
500 (let* ((val (progn (set-buffer buffer)
501 (if minibuffer-exit-hook
502 (run-hooks 'minibuffer-exit-hook))
503 (if (and (eq (char-after (point-min)) nil)
507 (histval (if (and default (string= val ""))
513 (let ((v (read-from-string val)))
514 (if (< (cdr v) (length val))
516 (or (string-match "[ \t\n]*\\'" val (cdr v))
517 (error "Trailing garbage following expression"))))
519 ;; total total kludge
520 (if (stringp v) (setq v (list 'quote v)))
524 '(input-error "End of input before end of expression")))
525 (error (setq err e))))
526 ;; Add the value to the appropriate history list unless
527 ;; it's already the most recent element, or it's only
528 ;; two characters long.
529 (if (and (symbolp minibuffer-history-variable)
530 (boundp minibuffer-history-variable))
531 (let ((list (symbol-value minibuffer-history-variable)))
534 (and list (equal histval (car list)))
536 minibuffer-history-minimum-string-length
538 minibuffer-history-minimum-string-length))
539 (set minibuffer-history-variable
540 (if minibuffer-history-uniquify
541 (cons histval (remove histval list))
542 (cons histval list))))))
543 (if err (signal (car err) (cdr err)))
545 ;; stupid display code requires this for some reason
547 (buffer-disable-undo buffer)
548 (setq buffer-read-only nil)
551 ;; restore frame configurations
552 (if (and mconfig (frame-live-p oframe)
553 (eq frame (selected-frame)))
554 ;; if we changed frames (due to surrogate minibuffer),
555 ;; and we're still on the new frame, go back to the old one.
556 (select-frame oframe))
557 (if mconfig (set-window-configuration mconfig))
558 (set-window-configuration oconfig))))
561 (defun minibuffer-max-depth-exceeded ()
563 ;; This signals an error if an Nth minibuffer is invoked while N-1 are
564 ;; already active, whether the minibuffer window is selected or not.
565 ;; Since, under X, it's easy to jump out of the minibuffer (by doing M-x,
566 ;; getting distracted, and clicking elsewhere) many many novice users have
567 ;; had the problem of having multiple minibuffers build up, even to the
568 ;; point of exceeding max-lisp-eval-depth. Since the variable
569 ;; enable-recursive-minibuffers historically/crockishly is only consulted
570 ;; when the minibuffer is currently active (like typing M-x M-x) it doesn't
571 ;; help in this situation.
573 ;; This routine also offers to edit .emacs for you to get rid of this
574 ;; complaint, like `disabled' commands do, since it's likely that non-novice
575 ;; users will be annoyed by this change, so we give them an easy way to get
576 ;; rid of it forever.
578 (beep t 'minibuffer-limit-exceeded)
580 "Minibuffer already active: abort it with `^]', enable new one with `n': ")
581 (let ((char (let ((cursor-in-echo-area t)) ; #### doesn't always work??
586 ((y-or-n-p "Enable recursive minibuffers for other sessions too? ")
587 ;; This is completely disgusting, but it's basically what novice.el
588 ;; does. This kind of thing should be generalized.
589 (setq minibuffer-max-depth nil)
593 (substitute-in-file-name custom-file)))
594 (goto-char (point-min))
595 (if (re-search-forward
596 "^(setq minibuffer-max-depth \\([0-9]+\\|'?nil\\|'?()\\))\n"
598 (delete-region (match-beginning 0 ) (match-end 0))
599 ;; Must have been disabled by default.
600 (goto-char (point-max)))
601 (insert"\n(setq minibuffer-max-depth nil)\n")
603 (message "Multiple minibuffers enabled")
606 (abort-recursive-edit))
608 (error "Minibuffer already active")))))
611 ;;;; Guts of minibuffer completion
614 ;; Used by minibuffer-do-completion
615 (defvar last-exact-completion nil)
617 (defun temp-minibuffer-message (m)
618 (let ((savemax (point-max)))
620 (goto-char (point-max))
623 (let ((inhibit-quit t))
625 (delete-region savemax (point-max))
626 ;; If the user types a ^G while we're in sit-for, then quit-flag
627 ;; gets set. In this case, we want that ^G to be interpreted
628 ;; as a normal character, and act just like typeahead.
629 (if (and quit-flag (not unread-command-event))
630 (setq unread-command-event (character-to-event (quit-char))
634 ;; Determines whether buffer-string is an exact completion
635 (defun exact-minibuffer-completion-p (buffer-string)
636 (cond ((not minibuffer-completion-table)
639 ((vectorp minibuffer-completion-table)
640 (let ((tem (intern-soft buffer-string
641 minibuffer-completion-table)))
643 (and (string-equal buffer-string "nil")
644 ;; intern-soft loses for 'nil
646 (mapatoms #'(lambda (s)
651 minibuffer-completion-table)
653 (if minibuffer-completion-predicate
654 (funcall minibuffer-completion-predicate
658 ((and (consp minibuffer-completion-table)
659 ;;#### Emacs-Lisp truly sucks!
660 ;; lambda, autoload, etc
661 (not (symbolp (car minibuffer-completion-table))))
662 (if (not completion-ignore-case)
663 (assoc buffer-string minibuffer-completion-table)
664 (let ((s (upcase buffer-string))
665 (tail minibuffer-completion-table)
668 (setq tem (car (car tail)))
669 (if (or (equal tem buffer-string)
671 (if tem (equal (upcase tem) s)))
674 (setq tail (cdr tail))))
677 (funcall minibuffer-completion-table
679 minibuffer-completion-predicate
683 ;; 0 'none no possible completion
684 ;; 1 'unique was already an exact and unique completion
685 ;; 3 'exact was already an exact (but nonunique) completion
686 ;; NOT USED 'completed-exact-unique completed to an exact and completion
687 ;; 4 'completed-exact completed to an exact (but nonunique) completion
688 ;; 5 'completed some completion happened
689 ;; 6 'uncompleted no completion happened
690 (defun minibuffer-do-completion-1 (buffer-string completion)
691 (cond ((not completion)
694 ;; exact and unique match
697 ;; It did find a match. Do we match some possibility exactly now?
698 (let ((completedp (not (string-equal completion buffer-string))))
701 ;; Some completion happened
704 (setq buffer-string completion)))
705 (if (exact-minibuffer-completion-p buffer-string)
706 ;; An exact completion was possible
708 ;; Since no callers need to know the difference, don't bother
709 ;; with this (potentially expensive) discrimination.
710 ;; (if (eq (try-completion completion
711 ;; minibuffer-completion-table
712 ;; minibuffer-completion-predicate)
714 ;; 'completed-exact-unique
718 ;; Not an exact match
724 (defun minibuffer-do-completion (buffer-string)
725 (let* ((completion (try-completion buffer-string
726 minibuffer-completion-table
727 minibuffer-completion-predicate))
728 (status (minibuffer-do-completion-1 buffer-string completion))
729 (last last-exact-completion))
730 (setq last-exact-completion nil)
731 (cond ((eq status 'none)
733 (ding nil 'no-completion)
734 (temp-minibuffer-message " [No match]"))
738 ;; It did find a match. Do we match some possibility exactly now?
739 (if (not (string-equal completion buffer-string))
741 ;; Some completion happened
744 (setq buffer-string completion)))
745 (cond ((eq status 'exact)
746 ;; If the last exact completion and this one were
747 ;; the same, it means we've already given a
748 ;; "Complete but not unique" message and that the
749 ;; user's hit TAB again, so now we give help.
750 (setq last-exact-completion completion)
751 (if (equal buffer-string last)
752 (minibuffer-completion-help)))
753 ((eq status 'uncompleted)
754 (if completion-auto-help
755 (minibuffer-completion-help)
756 (temp-minibuffer-message " [Next char not unique]")))
764 (defun completing-read (prompt table
765 &optional predicate require-match
766 initial-contents history default)
767 "Read a string in the minibuffer, with completion.
768 Args: PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-CONTENTS, HISTORY.
769 PROMPT is a string to prompt with; normally it ends in a colon and a space.
770 TABLE is an alist whose elements' cars are strings, or an obarray.
771 PREDICATE limits completion to a subset of TABLE.
772 See `try-completion' for more details on completion, TABLE, and PREDICATE.
773 If REQUIRE-MATCH is non-nil, the user is not allowed to exit unless
774 the input is (or completes to) an element of TABLE or is null.
775 If it is also not t, Return does not exit if it does non-null completion.
776 If INITIAL-CONTENTS is non-nil, insert it in the minibuffer initially.
777 If it is (STRING . POSITION), the initial input
778 is STRING, but point is placed POSITION characters into the string.
779 HISTORY, if non-nil, specifies a history list
780 and optionally the initial position in the list.
781 It can be a symbol, which is the history list variable to use,
782 or it can be a cons cell (HISTVAR . HISTPOS).
783 In that case, HISTVAR is the history list variable to use,
784 and HISTPOS is the initial position (the position in the list
785 which INITIAL-CONTENTS corresponds to).
786 If HISTORY is `t', no history will be recorded.
787 Positions are counted starting from 1 at the beginning of the list.
788 DEFAULT, if non-nil, is the default value.
789 Completion ignores case if the ambient value of
790 `completion-ignore-case' is non-nil."
791 (let ((minibuffer-completion-table table)
792 (minibuffer-completion-predicate predicate)
793 (minibuffer-completion-confirm (if (eq require-match 't) nil t))
794 (last-exact-completion nil)
796 (setq ret (read-from-minibuffer prompt
798 (if (not require-match)
799 minibuffer-local-completion-map
800 minibuffer-local-must-match-map)
805 (if (and (string= ret "")
811 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
812 ;;;; Minibuffer completion commands ;;;;
813 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
816 (defun minibuffer-complete ()
817 "Complete the minibuffer contents as far as possible.
818 Return nil if there is no valid completion, else t.
819 If no characters can be completed, display a list of possible completions.
820 If you repeat this command after it displayed such a list,
821 scroll the window of possible completions."
823 ;; If the previous command was not this, then mark the completion
825 (or (eq last-command this-command)
826 (setq minibuffer-scroll-window nil))
827 (let ((window minibuffer-scroll-window))
828 (if (and window (windowp window) (window-buffer window)
829 (buffer-name (window-buffer window)))
830 ;; If there's a fresh completion window with a live buffer
831 ;; and this command is repeated, scroll that window.
832 (let ((obuf (current-buffer)))
835 (set-buffer (window-buffer window))
836 (if (pos-visible-in-window-p (point-max) window)
837 ;; If end is in view, scroll up to the beginning.
838 (set-window-start window (point-min))
839 ;; Else scroll down one frame.
840 (scroll-other-window)))
843 (let ((status (minibuffer-do-completion (buffer-string))))
844 (if (eq status 'none)
847 (cond ((eq status 'unique)
848 (temp-minibuffer-message
849 " [Sole completion]"))
851 (temp-minibuffer-message
852 " [Complete, but not unique]")))
856 (defun minibuffer-complete-and-exit ()
857 "Complete the minibuffer contents, and maybe exit.
858 Exit if the name is valid with no completion needed.
859 If name was completed to a valid match,
860 a repetition of this command will exit."
862 (if (= (point-min) (point-max))
863 ;; Crockishly allow user to specify null string
865 (let ((buffer-string (buffer-string)))
866 ;; Short-cut -- don't call minibuffer-do-completion if we already
867 ;; have an (possibly nonunique) exact completion.
868 (if (exact-minibuffer-completion-p buffer-string)
870 (let ((status (minibuffer-do-completion buffer-string)))
871 (if (or (eq status 'unique)
873 (if (or (eq status 'completed-exact)
874 (eq status 'completed-exact-unique))
875 (if minibuffer-completion-confirm
876 (progn (temp-minibuffer-message " [Confirm]")
879 (throw 'exit nil)))))
882 (defun self-insert-and-exit ()
883 "Terminate minibuffer input."
885 (self-insert-command 1)
888 (defun exit-minibuffer ()
889 "Terminate this minibuffer argument.
890 If minibuffer-confirm-incomplete is true, and we are in a completing-read
891 of some kind, and the contents of the minibuffer is not an existing
892 completion, requires an additional RET before the minibuffer will be exited
893 \(assuming that RET was the character that invoked this command:
894 the character in question must be typed again)."
896 (if (not minibuffer-confirm-incomplete)
898 (let ((buffer-string (buffer-string)))
899 (if (exact-minibuffer-completion-p buffer-string)
901 (let ((completion (if (not minibuffer-completion-table)
903 (try-completion buffer-string
904 minibuffer-completion-table
905 minibuffer-completion-predicate))))
906 (if (or (eq completion 't)
907 ;; Crockishly allow user to specify null string
908 (string-equal buffer-string ""))
910 (if completion ;; rewritten for I18N3 snarfing
911 (temp-minibuffer-message " [incomplete; confirm]")
912 (temp-minibuffer-message " [no completions; confirm]"))
913 (let ((event (let ((inhibit-quit t))
916 (setq quit-flag nil)))))
917 (cond ((equal event last-command-event)
919 ((equal (quit-char) (event-to-character event))
922 (dispatch-event event)))))
924 ;;;; minibuffer-complete-word
927 ;;;#### I think I have done this correctly; it certainly is simpler
928 ;;;#### than what the C code seemed to be trying to do.
929 (defun minibuffer-complete-word ()
930 "Complete the minibuffer contents at most a single word.
931 After one word is completed as much as possible, a space or hyphen
932 is added, provided that matches some possible completion.
933 Return nil if there is no valid completion, else t."
935 (let* ((buffer-string (buffer-string))
936 (completion (try-completion buffer-string
937 minibuffer-completion-table
938 minibuffer-completion-predicate))
939 (status (minibuffer-do-completion-1 buffer-string completion)))
940 (cond ((eq status 'none)
941 (ding nil 'no-completion)
942 (temp-minibuffer-message " [No match]")
945 ;; New message, only in this new Lisp code
946 (temp-minibuffer-message " [Sole completion]")
949 (cond ((or (eq status 'uncompleted)
951 (let ((foo #'(lambda (s)
954 (concat buffer-string s)
955 minibuffer-completion-table
956 minibuffer-completion-predicate)
958 (goto-char (point-max))
963 (char last-command-char))
964 ;; Try to complete by adding a word-delimiter
965 (or (and (characterp char) (> char 0)
966 (funcall foo (char-to-string char)))
967 (and (not (eq char ?\ ))
969 (and (not (eq char ?\-))
972 (if completion-auto-help
973 (minibuffer-completion-help)
974 ;; New message, only in this new Lisp code
975 ;; rewritten for I18N3 snarfing
976 (if (eq status 'exact)
977 (temp-minibuffer-message
978 " [Complete, but not unique]")
979 (temp-minibuffer-message " [Ambiguous]")))
984 ;; First word-break in stuff found by completion
985 (goto-char (point-min))
986 (let ((len (length buffer-string))
988 (if (and (< len (length completion))
993 (upcase (aref buffer-string n))
994 (upcase (aref completion n)))
999 (goto-char (point-min))
1001 (re-search-forward "\\W" nil t)))
1002 (delete-region (point) (point-max))
1003 (goto-char (point-max))))
1007 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1008 ;;;; "Smart minibuffer" hackery ;;;;
1009 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1011 ;;; ("Kludgy minibuffer hackery" is perhaps a better name)
1013 ;; This works by setting `mouse-grabbed-buffer' to the minibuffer,
1014 ;; defining button2 in the minibuffer keymap to
1015 ;; `minibuffer-smart-select-highlighted-completion', and setting the
1016 ;; mode-motion-hook of the minibuffer to `minibuffer-mouse-tracker'.
1017 ;; By setting `mouse-grabbed-buffer', the minibuffer's keymap and
1018 ;; mode-motion-hook apply (for mouse motion and presses) no matter
1019 ;; what buffer the mouse is over. Then, `minibuffer-mouse-tracker'
1020 ;; examines the text under the mouse looking for something that looks
1021 ;; like a completion, and causes it to be highlighted, and
1022 ;; `minibuffer-smart-select-highlighted-completion' looks for a
1023 ;; flagged completion under the mouse and inserts it. This has the
1024 ;; following advantages:
1026 ;; -- filenames and such in any buffer can be inserted by clicking,
1027 ;; not just completions
1029 ;; but the following disadvantages:
1031 ;; -- unless you're aware of the "filename in any buffer" feature,
1032 ;; the fact that strings in arbitrary buffers get highlighted appears
1034 ;; -- mouse motion can cause ange-ftp actions -- bad bad bad.
1036 ;; There's some hackery in minibuffer-mouse-tracker to try to avoid the
1037 ;; ange-ftp stuff, but it doesn't work.
1040 (defcustom minibuffer-smart-completion-tracking-behavior nil
1041 "*If non-nil, look for completions under mouse in all buffers.
1042 This allows you to click on something that looks like a completion
1043 and have it selected, regardless of what buffer it is in.
1045 This is not enabled by default because
1047 -- The \"mysterious\" highlighting in normal buffers is confusing to
1048 people not expecting it, and looks like a bug
1049 -- If ange-ftp is enabled, this tracking sometimes causes ange-ftp
1050 action as a result of mouse motion, which is *bad bad bad*.
1051 Hopefully this bug will be fixed at some point."
1055 (defun minibuffer-smart-mouse-tracker (event)
1056 ;; Used as the mode-motion-hook of the minibuffer window, which is the
1057 ;; value of `mouse-grabbed-buffer' while the minibuffer is active. If
1058 ;; the word under the mouse is a valid minibuffer completion, then it
1061 ;; We do some special voodoo when we're reading a pathname, because
1062 ;; the way filename completion works is funny. Possibly there's some
1063 ;; more general way this could be dealt with...
1065 ;; We do some further voodoo when reading a pathname that is an
1066 ;; ange-ftp or efs path, because causing FTP activity as a result of
1067 ;; mouse motion is a really bad time.
1069 (and minibuffer-smart-completion-tracking-behavior
1071 ;; avoid conflict with display-completion-list extents
1072 (not (extent-at (event-point event)
1073 (event-buffer event)
1075 (let ((filename-kludge-p (eq minibuffer-completion-table
1076 'read-file-name-internal)))
1077 (mode-motion-highlight-internal
1079 #'(lambda () (default-mouse-track-beginning-of-word
1080 (if filename-kludge-p 'nonwhite t)))
1084 (default-mouse-track-end-of-word
1085 (if filename-kludge-p 'nonwhite t))
1086 (if (and (/= p (point)) minibuffer-completion-table)
1087 (setq string (buffer-substring p (point))))
1088 (if (string-match "\\`[ \t\n]*\\'" string)
1090 (if filename-kludge-p
1091 (setq string (minibuffer-smart-select-kludge-filename
1093 ;; try-completion bogusly returns a string even when
1094 ;; that string is complete if that string is also a
1095 ;; prefix for other completions. This means that we
1096 ;; can't just do the obvious thing, (eq t
1097 ;; (try-completion ...)).
1099 (if (and filename-kludge-p
1100 ;; #### evil evil evil evil
1101 (or (and (fboundp 'ange-ftp-ftp-path)
1102 (ange-ftp-ftp-path string))
1103 (and (fboundp 'efs-ftp-path)
1104 (efs-ftp-path string))))
1107 (try-completion string
1108 minibuffer-completion-table
1109 minibuffer-completion-predicate)))
1111 (and (equal comp string)
1112 (or (null minibuffer-completion-predicate)
1114 minibuffer-completion-predicate) ; ???
1115 (funcall minibuffer-completion-predicate
1117 minibuffer-completion-table)
1120 minibuffer-completion-table)
1122 (goto-char p))))))))))
1124 (defun minibuffer-smart-select-kludge-filename (string)
1126 (set-buffer mouse-grabbed-buffer) ; the minibuf
1127 (let ((kludge-string (concat (buffer-string) string)))
1128 (if (or (and (fboundp 'ange-ftp-ftp-path)
1129 (ange-ftp-ftp-path kludge-string))
1130 (and (fboundp 'efs-ftp-path) (efs-ftp-path kludge-string)))
1131 ;; #### evil evil evil, but more so.
1133 (append-expand-filename (buffer-string) string)))))
1135 (defun minibuffer-smart-select-highlighted-completion (event)
1136 "Select the highlighted text under the mouse as a minibuffer response.
1137 When the minibuffer is being used to prompt the user for a completion,
1138 any valid completions which are visible on the frame will highlight
1139 when the mouse moves over them. Clicking \\<minibuffer-local-map>\
1140 \\[minibuffer-smart-select-highlighted-completion] will select the
1141 highlighted completion under the mouse.
1143 If the mouse is clicked while not over a highlighted completion,
1144 then the global binding of \\[minibuffer-smart-select-highlighted-completion] \
1145 will be executed instead. In this\nway you can get at the normal global \
1146 behavior of \\[minibuffer-smart-select-highlighted-completion] as well as
1147 the special minibuffer behavior."
1149 (if minibuffer-smart-completion-tracking-behavior
1150 (minibuffer-smart-select-highlighted-completion-1 event t)
1151 (let ((command (lookup-key global-map
1152 (vector current-mouse-event))))
1153 (if command (call-interactively command)))))
1155 (defun minibuffer-smart-select-highlighted-completion-1 (event global-p)
1156 (let* ((filename-kludge-p (eq minibuffer-completion-table
1157 'read-file-name-internal))
1160 (evpoint (event-point event))
1161 (evextent (and evpoint (extent-at evpoint (event-buffer event)
1164 ;; avoid conflict with display-completion-list extents.
1165 ;; if we find one, do that behavior instead.
1166 (list-mode-item-selected-1 evextent event)
1168 (let* ((buffer (window-buffer (event-window event)))
1169 (p (event-point event))
1170 (extent (and p (extent-at p buffer 'mouse-face))))
1172 (if (not (and (extent-live-p extent)
1173 (eq (extent-object extent) (current-buffer))
1174 (not (extent-detached-p extent))))
1176 ;; ...else user has selected a highlighted completion.
1178 (buffer-substring (extent-start-position extent)
1179 (extent-end-position extent)))
1180 (if filename-kludge-p
1181 (setq completion (minibuffer-smart-select-kludge-filename
1183 ;; remove the extent so that it's not hanging around in
1185 (detach-extent extent)
1186 (set-buffer mouse-grabbed-buffer)
1188 (insert completion))))
1189 ;; we need to execute the command or do the throw outside of the
1191 (cond ((and command-p global-p)
1192 (let ((command (lookup-key global-map
1193 (vector current-mouse-event))))
1195 (call-interactively command)
1196 (if minibuffer-completion-table
1198 "Highlighted words are valid completions. You may select one.")
1199 (error "no completions")))))
1201 ;; things get confused if the minibuffer is terminated while
1203 (select-window (minibuffer-window))
1204 (if (and filename-kludge-p (file-directory-p completion))
1205 ;; if the user clicked middle on a directory name, display the
1206 ;; files in that directory.
1208 (goto-char (point-max))
1209 (minibuffer-completion-help))
1210 ;; otherwise, terminate input
1211 (throw 'exit nil)))))))
1213 (defun minibuffer-smart-maybe-select-highlighted-completion
1214 (event &optional click-count)
1215 "Like `minibuffer-smart-select-highlighted-completion' but does nothing if
1216 there is no completion (as opposed to executing the global binding). Useful
1217 as the value of `mouse-track-click-hook'."
1219 (minibuffer-smart-select-highlighted-completion-1 event nil))
1221 (define-key minibuffer-local-map 'button2
1222 'minibuffer-smart-select-highlighted-completion)
1225 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1226 ;;;; Minibuffer History ;;;;
1227 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1229 (defvar minibuffer-history '()
1230 "Default minibuffer history list.
1231 This is used for all minibuffer input except when an alternate history
1232 list is specified.")
1234 ;; Some other history lists:
1236 (defvar minibuffer-history-search-history '())
1237 (defvar function-history '())
1238 (defvar variable-history '())
1239 (defvar buffer-history '())
1240 (defvar shell-command-history '())
1241 (defvar file-name-history '())
1243 (defvar read-expression-history nil)
1245 (defvar minibuffer-history-sexp-flag nil ;weird FSF Emacs kludge
1246 "Non-nil when doing history operations on `command-history'.
1247 More generally, indicates that the history list being acted on
1248 contains expressions rather than strings.")
1250 (defun previous-matching-history-element (regexp n)
1251 "Find the previous history element that matches REGEXP.
1252 \(Previous history elements refer to earlier actions.)
1253 With prefix argument N, search for Nth previous match.
1254 If N is negative, find the next or Nth next match."
1256 (let ((enable-recursive-minibuffers t)
1257 (minibuffer-history-sexp-flag nil)
1258 (minibuffer-max-depth (and minibuffer-max-depth
1259 (1+ minibuffer-max-depth))))
1260 (if (eq 't (symbol-value minibuffer-history-variable))
1261 (error "History is not being recorded in this context"))
1262 (list (read-from-minibuffer "Previous element matching (regexp): "
1263 (car minibuffer-history-search-history)
1264 minibuffer-local-map
1266 'minibuffer-history-search-history)
1267 (prefix-numeric-value current-prefix-arg))))
1268 (let ((history (symbol-value minibuffer-history-variable))
1270 (pos minibuffer-history-position))
1272 (error "History is not being recorded in this context"))
1275 (setq pos (min (max 1 (+ pos (if (< n 0) -1 1))) (length history)))
1277 (if (= pos 1) ;; rewritten for I18N3 snarfing
1278 (error "No later matching history item")
1279 (error "No earlier matching history item")))
1280 (if (string-match regexp
1281 (if minibuffer-history-sexp-flag
1282 (let ((print-level nil))
1283 (prin1-to-string (nth (1- pos) history)))
1284 (nth (1- pos) history)))
1285 (setq n (+ n (if (< n 0) 1 -1)))))
1286 (setq minibuffer-history-position pos)
1287 (setq current-minibuffer-contents (buffer-string)
1288 current-minibuffer-point (point))
1290 (let ((elt (nth (1- pos) history)))
1291 (insert (if minibuffer-history-sexp-flag
1292 (let ((print-level nil))
1293 (prin1-to-string elt))
1295 (goto-char (point-min)))
1296 (if (or (eq (car (car command-history)) 'previous-matching-history-element)
1297 (eq (car (car command-history)) 'next-matching-history-element))
1298 (setq command-history (cdr command-history))))
1300 (defun next-matching-history-element (regexp n)
1301 "Find the next history element that matches REGEXP.
1302 \(The next history element refers to a more recent action.)
1303 With prefix argument N, search for Nth next match.
1304 If N is negative, find the previous or Nth previous match."
1306 (let ((enable-recursive-minibuffers t)
1307 (minibuffer-history-sexp-flag nil)
1308 (minibuffer-max-depth (and minibuffer-max-depth
1309 (1+ minibuffer-max-depth))))
1310 (if (eq t (symbol-value minibuffer-history-variable))
1311 (error "History is not being recorded in this context"))
1312 (list (read-from-minibuffer "Next element matching (regexp): "
1313 (car minibuffer-history-search-history)
1314 minibuffer-local-map
1316 'minibuffer-history-search-history)
1317 (prefix-numeric-value current-prefix-arg))))
1318 (previous-matching-history-element regexp (- n)))
1320 (defun next-history-element (n)
1321 "Insert the next element of the minibuffer history into the minibuffer."
1323 (if (eq 't (symbol-value minibuffer-history-variable))
1324 (error "History is not being recorded in this context"))
1326 (when (eq minibuffer-history-position
1327 initial-minibuffer-history-position)
1328 (setq current-minibuffer-contents (buffer-string)
1329 current-minibuffer-point (point)))
1330 (let ((narg (- minibuffer-history-position n))
1331 (minimum (if minibuffer-default -1 0)))
1332 ;; a weird special case here; when in repeat-complex-command, we're
1333 ;; trying to edit the top command, and minibuffer-history-position
1334 ;; points to 1, the next-to-top command. in this case, the top
1335 ;; command in the history is suppressed in favor of the one being
1336 ;; edited, and there is no more command below it, except maybe the
1338 (if (and (zerop narg) (eq minibuffer-history-position
1339 initial-minibuffer-history-position))
1340 (setq minimum (1+ minimum)))
1341 (cond ((< narg minimum)
1342 (error (if minibuffer-default
1343 "No following item in %s"
1344 "No following item in %s; no default available")
1345 minibuffer-history-variable))
1346 ((> narg (length (symbol-value minibuffer-history-variable)))
1347 (error "No preceding item in %s" minibuffer-history-variable)))
1349 (setq minibuffer-history-position narg)
1350 (if (eq narg initial-minibuffer-history-position)
1352 (insert current-minibuffer-contents)
1353 (goto-char current-minibuffer-point))
1354 (let ((elt (if (> narg 0)
1355 (nth (1- minibuffer-history-position)
1356 (symbol-value minibuffer-history-variable))
1357 minibuffer-default)))
1359 (if (not (stringp elt))
1360 (let ((print-level nil))
1362 (let ((print-readably t)
1363 (print-escape-newlines t))
1364 (prin1-to-string elt))
1365 (error (prin1-to-string elt))))
1367 ;; FSF has point-min here.
1368 (goto-char (point-max))))))
1370 (defun previous-history-element (n)
1371 "Insert the previous element of the minibuffer history into the minibuffer."
1373 (next-history-element (- n)))
1375 (defun next-complete-history-element (n)
1376 "Get next element of history which is a completion of minibuffer contents."
1378 (let ((point-at-start (point)))
1379 (next-matching-history-element
1380 (concat "^" (regexp-quote (buffer-substring (point-min) (point)))) n)
1381 ;; next-matching-history-element always puts us at (point-min).
1382 ;; Move to the position we were at before changing the buffer contents.
1383 ;; This is still sensical, because the text before point has not changed.
1384 (goto-char point-at-start)))
1386 (defun previous-complete-history-element (n)
1387 "Get previous element of history which is a completion of minibuffer contents."
1389 (next-complete-history-element (- n)))
1392 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1393 ;;;; reading various things from a minibuffer ;;;;
1394 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1396 (defun read-expression (prompt &optional initial-contents history default-value)
1397 "Return a Lisp object read using the minibuffer, prompting with PROMPT.
1398 If non-nil, optional second arg INITIAL-CONTENTS is a string to insert
1399 in the minibuffer before reading.
1400 Third arg HISTORY, if non-nil, specifies a history list.
1401 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
1402 for history command, and as the value to return if the user enters the
1404 (let ((minibuffer-history-sexp-flag t)
1405 ;; Semi-kludge to get around M-x C-x o M-ESC trying to do completion.
1406 (minibuffer-completion-table nil))
1407 (read-from-minibuffer prompt
1411 (or history 'read-expression-history)
1412 lisp-mode-abbrev-table
1415 (defun read-string (prompt &optional initial-contents history default-value)
1416 "Return a string from the minibuffer, prompting with string PROMPT.
1417 If non-nil, optional second arg INITIAL-CONTENTS is a string to insert
1418 in the minibuffer before reading.
1419 Third arg HISTORY, if non-nil, specifies a history list.
1420 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
1421 for history command, and as the value to return if the user enters the
1423 (let ((minibuffer-completion-table nil))
1424 (read-from-minibuffer prompt
1426 minibuffer-local-map
1427 nil history nil default-value)))
1429 (defun eval-minibuffer (prompt &optional initial-contents history default-value)
1430 "Return value of Lisp expression read using the minibuffer.
1431 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1432 is a string to insert in the minibuffer before reading.
1433 Third arg HISTORY, if non-nil, specifies a history list.
1434 Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used
1435 for history command, and as the value to return if the user enters the
1437 (eval (read-expression prompt initial-contents history default-value)))
1439 ;; The name `command-history' is already taken
1440 (defvar read-command-history '())
1442 (defun read-command (prompt &optional default-value)
1443 "Read the name of a command and return as a symbol.
1444 Prompts with PROMPT. By default, return DEFAULT-VALUE."
1445 (intern (completing-read prompt obarray 'commandp t nil
1446 ;; 'command-history is not right here: that's a
1447 ;; list of evalable forms, not a history list.
1448 'read-command-history
1451 (defun read-function (prompt &optional default-value)
1452 "Read the name of a function and return as a symbol.
1453 Prompts with PROMPT. By default, return DEFAULT-VALUE."
1454 (intern (completing-read prompt obarray 'fboundp t nil
1455 'function-history default-value)))
1457 (defun read-variable (prompt &optional default-value)
1458 "Read the name of a user variable and return it as a symbol.
1459 Prompts with PROMPT. By default, return DEFAULT-VALUE.
1460 A user variable is one whose documentation starts with a `*' character."
1461 (intern (completing-read prompt obarray 'user-variable-p t nil
1463 (if (symbolp default-value)
1464 (symbol-name default-value)
1467 (defun read-buffer (prompt &optional default require-match)
1468 "Read the name of a buffer and return as a string.
1469 Prompts with PROMPT. Optional second arg DEFAULT is value to return if user
1470 enters an empty line. If optional third arg REQUIRE-MATCH is non-nil,
1471 only existing buffer names are allowed."
1472 (let ((prompt (if default
1473 (format "%s(default %s) "
1474 (gettext prompt) (if (bufferp default)
1475 (buffer-name default)
1478 (alist (mapcar #'(lambda (b) (cons (buffer-name b) b))
1482 (setq result (completing-read prompt alist nil require-match
1484 (if (bufferp default)
1485 (buffer-name default)
1487 (cond ((not (equal result ""))
1489 ((not require-match)
1490 (setq result default)
1494 ((not (get-buffer default))
1497 (setq result default)
1499 (if (bufferp result)
1500 (buffer-name result)
1503 (defun read-number (prompt &optional integers-only default-value)
1504 "Read a number from the minibuffer, prompting with PROMPT.
1505 If optional second argument INTEGERS-ONLY is non-nil, accept
1507 If DEFAULT-VALUE is non-nil, return that if user enters an empty
1509 (let ((pred (if integers-only 'integerp 'numberp))
1511 (while (not (funcall pred num))
1512 (setq num (condition-case ()
1513 (let ((minibuffer-completion-table nil))
1514 (read-from-minibuffer
1515 prompt (if num (prin1-to-string num)) nil t
1516 nil nil default-value))
1518 (invalid-read-syntax nil)
1520 (or (funcall pred num) (beep)))
1523 (defun read-shell-command (prompt &optional initial-input history default-value)
1524 "Just like read-string, but uses read-shell-command-map:
1525 \\{read-shell-command-map}"
1526 (let ((minibuffer-completion-table nil))
1527 (read-from-minibuffer prompt initial-input read-shell-command-map
1528 nil (or history 'shell-command-history)
1529 nil default-value)))
1532 ;;; This read-file-name stuff probably belongs in files.el
1534 ;; Quote "$" as "$$" to get it past substitute-in-file-name
1535 (defun un-substitute-in-file-name (string)
1536 (let ((regexp "\\$")
1537 (olen (length string))
1540 (if (not (string-match regexp string))
1543 (while (string-match regexp string (match-end 0))
1545 (setq new (make-string (+ olen n) ?$))
1548 (setq ch (aref string o))
1550 (setq o (1+ o) n (1+ n))
1552 ;; already aset by make-string initial-value
1557 ;; Wrapper for `directory-files' for use in generating completion lists.
1558 ;; Generates output in the same format as `file-name-all-completions'.
1560 ;; The EFS replacement for `directory-files' doesn't support the FILES-ONLY
1561 ;; option, so it has to be faked. The listing cache will hopefully
1562 ;; improve the performance of this operation.
1563 (defun minibuf-directory-files (dir &optional match-regexp files-only)
1564 (let ((want-file (or (eq files-only nil) (eq files-only t)))
1565 (want-dirs (or (eq files-only nil) (not (eq files-only t)))))
1567 (mapcar (function (lambda (f)
1568 (if (file-directory-p (expand-file-name f dir))
1569 (and want-dirs (file-name-as-directory f))
1570 (and want-file f))))
1571 (delete "." (directory-files dir nil match-regexp))))))
1574 (defun read-file-name-2 (history prompt dir default
1575 must-match initial-contents
1578 (setq dir default-directory))
1579 (setq dir (abbreviate-file-name dir t))
1580 (let* ((insert (cond ((and (not insert-default-directory)
1581 (not initial-contents))
1584 (cons (un-substitute-in-file-name
1585 (concat dir initial-contents))
1588 (un-substitute-in-file-name dir))))
1590 ;; Hateful, broken, case-sensitive un*x
1591 ;;; (completing-read prompt
1597 ;; #### - this is essentially the guts of completing read.
1598 ;; There should be an elegant way to pass a pair of keymaps to
1599 ;; completing read, but this will do for now. All sins are
1601 (let ((minibuffer-completion-table completer)
1602 (minibuffer-completion-predicate dir)
1603 (minibuffer-completion-confirm (if (eq must-match 't)
1605 (last-exact-completion nil))
1606 (read-from-minibuffer prompt
1608 (if (not must-match)
1610 read-file-name-must-match-map)
1615 ;;; ;; Kludge! Put "/foo/bar" on history rather than "/default//foo/bar"
1616 ;;; (let ((hist (cond ((not history) 'minibuffer-history)
1617 ;;; ((consp history) (car history))
1621 ;;; (not (eq hist 't))
1623 ;;; (equal (car-safe (symbol-value hist)) val))
1624 ;;; (let ((e (condition-case nil
1625 ;;; (expand-file-name val)
1627 ;;; (if (and e (not (equal e val)))
1628 ;;; (set hist (cons e (cdr (symbol-value hist))))))))
1631 (error "No file name specified"))
1633 (equal val (if (consp insert) (car insert) insert)))
1636 (substitute-in-file-name val)))))
1638 ;; #### this function should use minibuffer-completion-table
1639 ;; or something. But that is sloooooow.
1640 ;; #### all this shit needs better documentation!!!!!!!!
1641 (defun read-file-name-activate-callback (event extent dir-p)
1642 ;; used as the activate-callback of the filename list items
1643 ;; in the completion buffer, in place of default-choose-completion.
1644 ;; if a regular file was selected, we call default-choose-completion
1645 ;; (which just inserts the string in the minibuffer and calls
1646 ;; exit-minibuffer). If a directory was selected, we display
1647 ;; the contents of the directory.
1648 (let* ((file (extent-string extent))
1649 (completion-buf (extent-object extent))
1650 (minibuf (symbol-value-in-buffer 'completion-reference-buffer
1652 (in-dir (file-name-directory (buffer-substring nil nil minibuf)))
1653 (full (expand-file-name file in-dir)))
1654 (if (not (file-directory-p full))
1655 (default-choose-completion event extent minibuf)
1656 (erase-buffer minibuf)
1657 (insert-string (file-name-as-directory
1658 (abbreviate-file-name full t)) minibuf)
1659 (reset-buffer completion-buf)
1660 (let ((standard-output completion-buf))
1661 (display-completion-list
1662 (minibuf-directory-files full nil (if dir-p 'directory))
1664 :reference-buffer minibuf
1665 :activate-callback 'read-file-name-activate-callback)
1666 (goto-char (point-min) completion-buf)))))
1668 (defun read-file-name-1 (history prompt dir default
1669 must-match initial-contents
1671 (if (should-use-dialog-box-p)
1674 (apply #'make-dialog-box
1675 'file `(:title ,(capitalize-string-as-title
1676 ;; Kludge: Delete ": " off the end.
1677 (replace-in-string prompt ": $" ""))
1678 ,@(and dir (list :initial-directory
1680 :file-must-exist ,must-match
1681 ,@(and initial-contents
1682 (list :initial-filename
1683 initial-contents))))))
1684 ;; hack -- until we implement reading a directory properly,
1685 ;; allow a file as indicating the directory it's in
1686 (if (and (eq completer 'read-directory-name-internal)
1687 (not (file-directory-p file)))
1688 (file-name-directory file)
1691 ;; this calls read-file-name-2
1692 (mouse-read-file-name-1 history prompt dir default must-match
1693 initial-contents completer)
1696 'minibuffer-setup-hook
1698 ;; #### SCREAM! Create a `file-system-ignore-case'
1699 ;; function, so this kind of stuff is generalized!
1700 (and (eq system-type 'windows-nt)
1701 (set (make-local-variable 'completion-ignore-case) t))
1703 (make-local-variable
1704 'completion-display-completion-list-function)
1705 #'(lambda (completions)
1706 (display-completion-list
1708 :user-data (not (eq completer 'read-file-name-internal))
1710 'read-file-name-activate-callback)))))
1711 (read-file-name-2 history prompt dir default must-match
1712 initial-contents completer)))
1714 (defun read-file-name (prompt
1715 &optional dir default must-match initial-contents
1717 "Read file name, prompting with PROMPT and completing in directory DIR.
1718 This will prompt with a dialog box if appropriate, according to
1719 `should-use-dialog-box-p'.
1720 Value is not expanded---you must call `expand-file-name' yourself.
1721 Value is subject to interpretation by `substitute-in-file-name' however.
1722 Default name to DEFAULT if user enters a null string.
1723 (If DEFAULT is omitted, the visited file name is used,
1724 except that if INITIAL-CONTENTS is specified, that combined with DIR is
1726 Fourth arg MUST-MATCH non-nil means require existing file's name.
1727 Non-nil and non-t means also require confirmation after completion.
1728 Fifth arg INITIAL-CONTENTS specifies text to start with. If this is not
1729 specified, and `insert-default-directory' is non-nil, DIR or the current
1730 directory will be used.
1731 Sixth arg HISTORY specifies the history list to use. Default is
1732 `file-name-history'.
1733 DIR defaults to current buffer's directory default."
1735 (or history 'file-name-history)
1736 prompt dir (or default
1737 (and initial-contents
1738 (abbreviate-file-name (expand-file-name
1739 initial-contents dir) t))
1740 (and buffer-file-truename
1741 (abbreviate-file-name buffer-file-name t)))
1742 must-match initial-contents
1743 ;; A separate function (not an anonymous lambda-expression)
1744 ;; and passed as a symbol because of disgusting kludges in various
1745 ;; places which do stuff like (let ((filename-kludge-p (eq minibuffer-completion-table 'read-file-name-internal))) ...)
1746 'read-file-name-internal))
1748 (defun read-directory-name (prompt
1749 &optional dir default must-match initial-contents
1751 "Read directory name, prompting with PROMPT and completing in directory DIR.
1752 This will prompt with a dialog box if appropriate, according to
1753 `should-use-dialog-box-p'.
1754 Value is not expanded---you must call `expand-file-name' yourself.
1755 Value is subject to interpreted by substitute-in-file-name however.
1756 Default name to DEFAULT if user enters a null string.
1757 (If DEFAULT is omitted, the current buffer's default directory is used.)
1758 Fourth arg MUST-MATCH non-nil means require existing directory's name.
1759 Non-nil and non-t means also require confirmation after completion.
1760 Fifth arg INITIAL-CONTENTS specifies text to start with.
1761 Sixth arg HISTORY specifies the history list to use. Default is
1762 `file-name-history'.
1763 DIR defaults to current buffer's directory default."
1765 (or history 'file-name-history)
1766 prompt dir (or default default-directory) must-match initial-contents
1767 'read-directory-name-internal))
1770 ;; Environment-variable and ~username completion hack
1771 (defun read-file-name-internal-1 (string dir action completer)
1772 (if (not (string-match
1773 "\\([^$]\\|\\`\\)\\(\\$\\$\\)*\\$\\([A-Za-z0-9_]*\\|{[^}]*\\)\\'"
1775 ;; Not doing environment-variable completion hack
1776 (let* ((orig (if (equal string "") nil string))
1777 (sstring (if orig (substitute-in-file-name string) string))
1778 (specdir (if orig (file-name-directory sstring) nil))
1779 (name (if orig (file-name-nondirectory sstring) string))
1780 (direct (if specdir (expand-file-name specdir dir) dir)))
1781 ;; ~username completion
1782 (if (and (fboundp 'user-name-completion-1)
1783 (string-match "^[~]" name))
1784 (let ((user (substring name 1)))
1785 (cond ((eq action 'lambda)
1786 (file-directory-p name))
1789 (mapcar #'(lambda (p) (concat "~" p))
1790 (user-name-all-completions user)))
1793 (let* ((val+uniq (user-name-completion-1 user))
1794 (val (car val+uniq))
1795 (uniq (cdr val+uniq)))
1796 (cond ((stringp val)
1798 (file-name-as-directory (concat "~" val))
1801 (file-name-as-directory name))
1810 ;; An odd number of trailing $'s
1811 (let* ((start (match-beginning 3))
1812 (env (substring string
1813 (cond ((= start (length string))
1816 ((= (aref string start) ?{)
1821 (head (substring string 0 (1- start)))
1823 (mapcar #'(lambda (x)
1824 (cons (substring x 0 (string-match "=" x))
1826 process-environment))))
1828 (cond ((eq action 'lambda)
1832 (mapcar #'(lambda (p)
1833 (if (and (> (length p) 0)
1834 ;;#### Unix-specific
1835 ;;#### -- need absolute-pathname-p
1838 (concat head "$" p)))
1839 (all-completions env (funcall alist))))
1842 (let* ((e (funcall alist))
1843 (val (try-completion env e)))
1844 (cond ((stringp val)
1845 (if (string-match "[^A-Za-z0-9_]" val)
1848 ;; completed uniquely?
1849 (if (eq (try-completion val e) 't)
1851 (concat head "$" val)))
1854 (un-substitute-in-file-name (getenv env))))
1858 (defun read-file-name-internal (string dir action)
1859 (read-file-name-internal-1
1861 #'(lambda (action orig string specdir dir name)
1862 (cond ((eq action 'lambda)
1865 (let ((sstring (condition-case nil
1866 (expand-file-name string)
1869 ;; Some pathname syntax error in string
1871 (file-exists-p sstring)))))
1874 (mapcar #'un-substitute-in-file-name
1875 (if (string= name "")
1876 (delete "./" (file-name-all-completions "" dir))
1877 (file-name-all-completions name dir))))
1880 (let* ((d (or dir default-directory))
1881 (val (file-name-completion name d)))
1882 (if (and (eq val 't)
1883 (not (null completion-ignored-extensions)))
1884 ;;#### (file-name-completion "foo") returns 't
1885 ;; when both "foo" and "foo~" exist and the latter
1886 ;; is "pruned" by completion-ignored-extensions.
1887 ;; I think this is a bug in file-name-completion.
1888 (setq val (let ((completion-ignored-extensions '()))
1889 (file-name-completion name d))))
1891 (un-substitute-in-file-name (if specdir
1892 (concat specdir val)
1894 (let ((tem (un-substitute-in-file-name string)))
1895 (if (not (equal tem orig))
1896 ;; substitute-in-file-name did something
1900 (defun read-directory-name-internal (string dir action)
1901 (read-file-name-internal-1
1903 #'(lambda (action orig string specdir dir name)
1904 (let* ((dirs #'(lambda (fn)
1905 (let ((l (if (equal name "")
1906 (minibuf-directory-files
1910 (minibuf-directory-files
1912 (concat "\\`" (regexp-quote name))
1917 (cond ((eq action 'lambda)
1921 (file-directory-p string)))
1924 (funcall dirs #'(lambda (n)
1925 (un-substitute-in-file-name
1926 (file-name-as-directory n)))))
1929 (let ((val (try-completion
1933 (list (file-name-as-directory
1936 (un-substitute-in-file-name (if specdir
1937 (concat specdir val)
1939 (let ((tem (un-substitute-in-file-name string)))
1940 (if (not (equal tem orig))
1941 ;; substitute-in-file-name did something
1945 (defun append-expand-filename (file-string string)
1946 "Append STRING to FILE-STRING differently depending on whether STRING
1947 is a username (~string), an environment variable ($string),
1948 or a filename (/string). The resultant string is returned with the
1949 environment variable or username expanded and resolved to indicate
1950 whether it is a file(/result) or a directory (/result/)."
1952 (cond ((string-match "\\([~$]\\)\\([^~$/]*\\)$" file-string)
1953 (cond ((string= (substring file-string
1956 (concat (substring file-string 0 (match-end 1))
1958 (t (substitute-in-file-name
1959 (concat (substring file-string 0 (match-end 1))
1961 (t (concat (file-name-directory
1962 (substitute-in-file-name file-string)) string))))
1965 (cond ((stringp (setq result (and (file-exists-p (expand-file-name file))
1966 (read-file-name-internal
1968 (expand-file-name file)
1974 (defun mouse-rfn-setup-vars (prompt)
1975 ;; a specifier would be nice.
1976 (set (make-local-variable 'frame-title-format)
1977 (capitalize-string-as-title
1978 ;; Kludge: Delete ": " off the end.
1979 (replace-in-string prompt ": $" "")))
1980 ;; ensure that killing the frame works right,
1981 ;; instead of leaving us in the minibuffer.
1982 (add-local-hook 'delete-frame-hook
1984 (abort-recursive-edit))))
1986 (defun mouse-file-display-completion-list (window dir minibuf user-data)
1987 (let ((standard-output (window-buffer window)))
1989 (display-completion-list
1990 (minibuf-directory-files dir nil t)
1991 :window-width (window-width window)
1992 :window-height (window-text-area-height window)
1993 :completion-string ""
1995 'mouse-read-file-name-activate-callback
1996 :user-data user-data
1997 :reference-buffer minibuf
2002 (defun mouse-directory-display-completion-list (window dir minibuf user-data)
2003 (let ((standard-output (window-buffer window)))
2005 (display-completion-list
2006 (minibuf-directory-files dir nil 1)
2007 :window-width (window-width window)
2008 :window-height (window-text-area-height window)
2009 :completion-string ""
2011 'mouse-read-file-name-activate-callback
2012 :user-data user-data
2013 :reference-buffer minibuf
2018 (defun mouse-read-file-name-activate-callback (event extent user-data)
2019 (let* ((file (extent-string extent))
2020 (minibuf (symbol-value-in-buffer 'completion-reference-buffer
2021 (extent-object extent)))
2022 (ministring (buffer-substring nil nil minibuf))
2023 (in-dir (file-name-directory ministring))
2024 (full (expand-file-name file in-dir))
2025 (filebuf (nth 0 user-data))
2026 (dirbuf (nth 1 user-data))
2027 (filewin (nth 2 user-data))
2028 (dirwin (nth 3 user-data)))
2029 (if (file-regular-p full)
2030 (default-choose-completion event extent minibuf)
2031 (erase-buffer minibuf)
2032 (insert-string (file-name-as-directory
2033 (abbreviate-file-name full t)) minibuf)
2034 (reset-buffer filebuf)
2036 (mouse-directory-display-completion-list filewin full minibuf
2038 (mouse-file-display-completion-list filewin full minibuf user-data)
2039 (reset-buffer dirbuf)
2040 (mouse-directory-display-completion-list dirwin full minibuf
2043 ;; our cheesy but god-awful time consuming file dialog box implementation.
2044 ;; this will be replaced with use of the native file dialog box (when
2046 (defun mouse-read-file-name-1 (history prompt dir default
2047 must-match initial-contents
2049 ;; file-p is t if we're reading files, nil if directories.
2050 (let* ((file-p (eq 'read-file-name-internal completer))
2051 (filebuf (get-buffer-create "*Completions*"))
2052 (dirbuf (and file-p (generate-new-buffer " *mouse-read-file*")))
2053 (butbuf (generate-new-buffer " *mouse-read-file*"))
2054 (frame (make-dialog-frame))
2059 (reset-buffer filebuf)
2061 ;; set up the frame.
2063 (let ((window-min-height 1))
2064 ;; #### should be 2 not 3, but that causes
2065 ;; "window too small to split" errors for some
2066 ;; people (but not for me ...) There's a more
2067 ;; fundamental bug somewhere.
2068 (split-window nil (- (frame-height frame) 3)))
2071 (split-window-horizontally 16)
2072 (setq filewin (frame-rightmost-window frame)
2073 dirwin (frame-leftmost-window frame))
2074 (set-window-buffer filewin filebuf)
2075 (set-window-buffer dirwin dirbuf))
2076 (setq filewin (frame-highest-window frame))
2077 (set-window-buffer filewin filebuf))
2078 (setq user-data (list filebuf dirbuf filewin dirwin))
2079 (set-window-buffer (frame-lowest-window frame) butbuf)
2081 ;; set up completion buffers.
2084 ;; #### I really need to flesh out the object
2085 ;; hierarchy better to avoid these kludges.
2086 ;; (?? I wrote this comment above some time ago,
2087 ;; and I don't understand what I'm referring to
2090 (mouse-rfn-setup-vars prompt)
2091 (when (featurep 'scrollbar)
2092 (set-specifier scrollbar-width 0 (current-buffer)))
2093 (setq truncate-lines t))))
2095 (set-buffer filebuf)
2096 (add-local-hook 'completion-setup-hook rfcshookfun)
2099 (add-local-hook 'completion-setup-hook rfcshookfun)))
2101 ;; set up minibuffer.
2103 'minibuffer-setup-hook
2106 (mouse-directory-display-completion-list
2107 filewin dir (current-buffer) user-data)
2108 (mouse-file-display-completion-list
2109 filewin dir (current-buffer) user-data)
2110 (mouse-directory-display-completion-list
2111 dirwin dir (current-buffer) user-data))
2113 (make-local-variable
2114 'completion-display-completion-list-function)
2115 (lambda (completions)
2116 (display-completion-list
2119 :window-width (window-width filewin)
2120 :window-height (window-text-area-height filewin)
2121 :completion-string ""
2123 'mouse-read-file-name-activate-callback
2124 :user-data user-data)))
2125 (mouse-rfn-setup-vars prompt)
2126 (save-selected-window
2127 ;; kludge to ensure the frame title is correct.
2128 ;; the minibuffer leaves the frame title the way
2129 ;; it was before (i.e. of the selected window before
2130 ;; the dialog box was opened), so to get it correct
2131 ;; we have to be tricky.
2132 (select-window filewin)
2133 (redisplay-frame nil t)
2134 ;; #### another kludge. sometimes the focus ends up
2135 ;; back in the main window, not the dialog box. it
2136 ;; occurs randomly and it's not possible to reliably
2137 ;; reproduce. We try to fix it by draining non-user
2138 ;; events and then setting the focus back on the frame.
2140 (focus-frame frame))))
2142 ;; set up button buffer.
2144 (mouse-rfn-setup-vars prompt)
2146 (setq default-directory dir))
2147 (when (featurep 'scrollbar)
2148 (set-specifier scrollbar-width 0 butbuf))
2150 (insert-gui-button (make-gui-button "OK"
2152 (exit-minibuffer))))
2154 (insert-gui-button (make-gui-button "Cancel"
2156 (abort-recursive-edit))))
2158 ;; now start reading filename.
2159 (read-file-name-2 history prompt dir default
2160 must-match initial-contents
2164 ;; get rid of our hook that calls abort-recursive-edit -- not a good
2166 (kill-local-variable 'delete-frame-hook)
2167 (delete-frame frame)
2168 (kill-buffer filebuf)
2169 (kill-buffer butbuf)
2170 (and dirbuf (kill-buffer dirbuf)))))
2172 (defun read-face (prompt &optional must-match)
2173 "Read the name of a face from the minibuffer and return it as a symbol."
2174 (intern (completing-read prompt obarray 'find-face must-match)))
2176 ;; #### - wrong place for this variable? Exactly. We probably want
2177 ;; `color-list' to be a console method, so `tty-color-list' becomes
2178 ;; obsolete, and `read-color-completion-table' conses (mapcar #'list
2179 ;; (color-list)), optionally caching the results.
2181 ;; Ben wanted all of the possibilities from the `configure' script used
2182 ;; here, but I think this is way too many. I already trimmed the R4 variants
2183 ;; and a few obvious losers from the list. --Stig
2184 (defvar x-library-search-path '("/usr/X11R6/lib/X11/"
2185 "/usr/X11R5/lib/X11/"
2186 "/usr/lib/X11R6/X11/"
2187 "/usr/lib/X11R5/X11/"
2188 "/usr/local/X11R6/lib/X11/"
2189 "/usr/local/X11R5/lib/X11/"
2190 "/usr/local/lib/X11R6/X11/"
2191 "/usr/local/lib/X11R5/X11/"
2194 "/usr/local/lib/X11/"
2195 "/usr/X386/lib/X11/"
2196 "/usr/x386/lib/X11/"
2197 "/usr/XFree86/lib/X11/"
2198 "/usr/unsupported/lib/X11/"
2199 "/usr/athena/lib/X11/"
2200 "/usr/local/x11r5/lib/X11/"
2201 "/usr/lpp/Xamples/lib/X11/"
2202 "/usr/openwin/lib/X11/"
2203 "/usr/openwin/share/lib/X11/")
2204 "Search path used by `read-color' to find rgb.txt.")
2206 (defvar x-read-color-completion-table)
2208 (defun read-color-completion-table ()
2210 ;; #### Evil device-type dependency
2212 (if (boundp 'x-read-color-completion-table)
2213 x-read-color-completion-table
2214 (let ((rgb-file (locate-file "rgb.txt" x-library-search-path))
2217 ;; prevents multiple searches for rgb.txt if we can't find it
2218 (setq x-read-color-completion-table nil)
2219 (with-current-buffer (get-buffer-create " *colors*")
2220 (reset-buffer (current-buffer))
2221 (insert-file-contents rgb-file)
2223 ;; skip over comments
2224 (while (looking-at "^!")
2227 (skip-chars-forward "0-9 \t")
2230 (setq color (buffer-substring p (point))
2231 clist (cons (list color) clist))
2232 ;; Ugh. If we want to be able to complete the lowercase form
2233 ;; of the color name, we need to add it twice! Yuck.
2234 (let ((dcase (downcase color)))
2235 (or (string= dcase color)
2236 (push (list dcase) clist)))
2238 (kill-buffer (current-buffer))))
2239 (setq x-read-color-completion-table clist)
2240 x-read-color-completion-table)))
2242 (mapcar #'list (mswindows-color-list)))
2244 (mapcar #'list (tty-color-list)))))
2246 (defun read-color (prompt &optional must-match initial-contents)
2247 "Read the name of a color from the minibuffer.
2248 On X devices, this uses `x-library-search-path' to find rgb.txt in order
2249 to build a completion table.
2250 On TTY devices, this uses `tty-color-list'.
2251 On mswindows devices, this uses `mswindows-color-list'."
2252 (let ((table (read-color-completion-table)))
2253 (completing-read prompt table nil (and table must-match)
2257 ;; #### The doc string for read-non-nil-coding system gets lost if we
2258 ;; only include these if the mule feature is present. Strangely,
2259 ;; read-coding-system doesn't.
2261 ;;(if (featurep 'mule)
2263 (defun read-coding-system (prompt &optional default-coding-system)
2264 "Read a coding-system (or nil) from the minibuffer.
2265 Prompting with string PROMPT.
2266 If the user enters null input, return second argument DEFAULT-CODING-SYSTEM.
2267 DEFAULT-CODING-SYSTEM can be a string, symbol, or coding-system object."
2268 (intern (completing-read prompt obarray 'find-coding-system t nil nil
2269 (cond ((symbolp default-coding-system)
2270 (symbol-name default-coding-system))
2271 ((coding-system-p default-coding-system)
2272 (symbol-name (coding-system-name default-coding-system)))
2274 default-coding-system)))))
2276 (defun read-non-nil-coding-system (prompt)
2277 "Read a non-nil coding-system from the minibuffer.
2278 Prompt with string PROMPT."
2279 (let ((retval (intern "")))
2280 (while (= 0 (length (symbol-name retval)))
2281 (setq retval (intern (completing-read prompt obarray
2286 ;;) ;; end of (featurep 'mule)
2290 (defcustom force-dialog-box-use nil
2291 "*If non-nil, always use a dialog box for asking questions, if possible.
2292 You should *bind* this, not set it. This is useful if you're doing
2293 something mousy but which wasn't actually invoked using the mouse."
2297 ;; We include this here rather than dialog.el so it is defined
2298 ;; even when dialog boxes are not present.
2299 (defun should-use-dialog-box-p ()
2300 "If non-nil, questions should be asked with a dialog box instead of the
2301 minibuffer. This looks at `last-command-event' to see if it was a mouse
2302 event, and checks whether dialog-support exists and the current device
2303 supports dialog boxes.
2305 The dialog box is totally disabled if the variable `use-dialog-box'
2307 (and (featurep 'dialog)
2308 (device-on-window-system-p)
2310 (or force-dialog-box-use
2311 (button-press-event-p last-command-event)
2312 (button-release-event-p last-command-event)
2313 (misc-user-event-p last-command-event))))
2315 ;;; minibuf.el ends here