Sync with r21-2-19-tomo-6-charset-alias-2.
[chise/xemacs-chise.git] / lisp / minibuf.el
index 1217fe6..0061576 100644 (file)
@@ -41,7 +41,7 @@
 ;;; Code:
 
 (defgroup minibuffer nil
-  "Controling the behaviour of the minibuffer."
+  "Controling the behavior of the minibuffer."
   :group 'environment)
 
 
@@ -67,7 +67,7 @@ The value may alternatively be a function, which is given three arguments:
   CODE, which says what kind of things to do.
 CODE can be nil, t or `lambda'.
 nil means to return the best completion of STRING, nil if there is none,
-  or t if it is was already a unique completion.
+  or t if it is already a unique completion.
 t means to return a list of all possible completions of STRING.
 `lambda' means to return t if STRING is a valid completion as it stands.")
 
@@ -350,7 +350,7 @@ If optional second arg INITIAL-CONTENTS is non-nil, it is a string
   to be inserted into the minibuffer before reading input.
   If INITIAL-CONTENTS is (STRING . POSITION), the initial input
   is STRING, but point is placed POSITION characters into the string.
-Third arg KEYMAP is a keymap to use whilst reading;
+Third arg KEYMAP is a keymap to use while reading;
   if omitted or nil, the default is `minibuffer-local-map'.
 If fourth arg READ is non-nil, then interpret the result as a lisp object
   and return that object:
@@ -748,7 +748,7 @@ See also the variable completion-highlight-first-word-only for control over
 
 (defun completing-read (prompt table
                         &optional predicate require-match
-                                  initial-contents history)
+                                  initial-contents history default)
   "Read a string in the minibuffer, with completion.
 Args: PROMPT, TABLE, PREDICATE, REQUIRE-MATCH, INITIAL-CONTENTS, HISTORY.
 PROMPT is a string to prompt with; normally it ends in a colon and a space.
@@ -770,19 +770,25 @@ HISTORY, if non-nil, specifies a history list
   which INITIAL-CONTENTS corresponds to).
   If HISTORY is `t', no history will be recorded.
   Positions are counted starting from 1 at the beginning of the list.
+DEFAULT, if non-nil, is the default value.
 Completion ignores case if the ambient value of
   `completion-ignore-case' is non-nil."
   (let ((minibuffer-completion-table table)
         (minibuffer-completion-predicate predicate)
         (minibuffer-completion-confirm (if (eq require-match 't) nil t))
-        (last-exact-completion nil))
-    (read-from-minibuffer prompt
-                          initial-contents
-                          (if (not require-match)
-                              minibuffer-local-completion-map
-                              minibuffer-local-must-match-map)
-                          nil
-                          history)))
+        (last-exact-completion nil)
+       ret)
+    (setq ret (read-from-minibuffer prompt
+                                   initial-contents
+                                   (if (not require-match)
+                                       minibuffer-local-completion-map
+                                     minibuffer-local-must-match-map)
+                                   nil
+                                   history))
+    (if (and (string= ret "")
+            default)
+       default
+      ret)))
 
 \f
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -1477,24 +1483,21 @@ only existing buffer names are allowed."
         (olen (length string))
         new
         n o ch)
-    (cond ((eq system-type 'vax-vms)
-           string)
-          ((not (string-match regexp string))
-           string)
-          (t
-           (setq n 1)
-           (while (string-match regexp string (match-end 0))
-             (setq n (1+ n)))
-           (setq new (make-string (+ olen n) ?$))
-           (setq n 0 o 0)
-           (while (< o olen)
-             (setq ch (aref string o))
-             (aset new n ch)
-             (setq o (1+ o) n (1+ n))
-             (if (eq ch ?$)
-                 ;; already aset by make-string initial-value
-                 (setq n (1+ n))))
-           new))))
+    (if (not (string-match regexp string))
+       string
+      (setq n 1)
+      (while (string-match regexp string (match-end 0))
+       (setq n (1+ n)))
+      (setq new (make-string (+ olen n) ?$))
+      (setq n 0 o 0)
+      (while (< o olen)
+       (setq ch (aref string o))
+       (aset new n ch)
+       (setq o (1+ o) n (1+ n))
+       (if (eq ch ?$)
+           ;; already aset by make-string initial-value
+           (setq n (1+ n))))
+      new)))
 
 (defun read-file-name-2 (history prompt dir default
                                 must-match initial-contents
@@ -1511,8 +1514,7 @@ only existing buffer names are allowed."
                               (length dir)))
                        (t
                         (un-substitute-in-file-name dir))))
-         (val (let ((completion-ignore-case (or completion-ignore-case
-                                               (eq system-type 'vax-vms))))
+         (val 
                 ;;  Hateful, broken, case-sensitive un*x
 ;;;                 (completing-read prompt
 ;;;                                  completer
@@ -1520,22 +1522,22 @@ only existing buffer names are allowed."
 ;;;                                  must-match
 ;;;                                  insert
 ;;;                                  history)
-               ;; #### - this is essentially the guts of completing read.
-               ;; There should be an elegant way to pass a pair of keymaps to
-               ;; completing read, but this will do for now.  All sins are
-               ;; relative.  --Stig
-               (let ((minibuffer-completion-table completer)
-                     (minibuffer-completion-predicate dir)
-                     (minibuffer-completion-confirm (if (eq must-match 't)
-                                                        nil t))
-                     (last-exact-completion nil))
-                 (read-from-minibuffer prompt
-                                       insert
-                                       (if (not must-match)
-                                           read-file-name-map
-                                         read-file-name-must-match-map)
-                                       nil
-                                       history)))
+         ;; #### - this is essentially the guts of completing read.
+         ;; There should be an elegant way to pass a pair of keymaps to
+         ;; completing read, but this will do for now.  All sins are
+         ;; relative.  --Stig
+         (let ((minibuffer-completion-table completer)
+               (minibuffer-completion-predicate dir)
+               (minibuffer-completion-confirm (if (eq must-match 't)
+                                                  nil t))
+               (last-exact-completion nil))
+           (read-from-minibuffer prompt
+                                 insert
+                                 (if (not must-match)
+                                     read-file-name-map
+                                   read-file-name-must-match-map)
+                                 nil
+                                 history))
              ))
 ;;;     ;; Kludge!  Put "/foo/bar" on history rather than "/default//foo/bar"
 ;;;     (let ((hist (cond ((not history) 'minibuffer-history)
@@ -1728,7 +1730,7 @@ DIR defaults to current buffer's directory default."
              (alist #'(lambda ()
                         (mapcar #'(lambda (x)
                                     (cons (substring x 0 (string-match "=" x))
-                                          'nil))
+                                          nil))
                                 process-environment))))
 
        (cond ((eq action 'lambda)
@@ -1743,7 +1745,7 @@ DIR defaults to current buffer's directory default."
                               (concat "$" p)
                              (concat head "$" p)))
                        (all-completions env (funcall alist))))
-              (t ;; 'nil
+              (t ;; nil
                ;; complete
                (let* ((e (funcall alist))
                       (val (try-completion env e)))
@@ -1779,7 +1781,7 @@ DIR defaults to current buffer's directory default."
              ;; all completions
              (mapcar #'un-substitute-in-file-name
                      (file-name-all-completions name dir)))
-            (t;; 'nil
+            (t;; nil
              ;; complete
              (let* ((d (or dir default-directory))
                    (val (file-name-completion name d)))
@@ -1820,11 +1822,8 @@ DIR defaults to current buffer's directory default."
                                   nil
                                   'directories))))
                         (mapcar fn
-                                (cond ((eq system-type 'vax-vms)
-                                       l)
-                                      (t
-                                       ;; Wretched unix
-                                       (delete "." l))))))))
+                                ;; Wretched unix
+                                (delete "." l))))))
         (cond ((eq action 'lambda)
                ;; complete?
                (if (not orig)
@@ -2114,10 +2113,12 @@ On mswindows devices, this uses `mswindows-color-list'."
 
 ;;(if (featurep 'mule)
 
-(defun read-coding-system (prompt)
+(defun read-coding-system (prompt &optional default-coding-system)
   "Read a coding-system (or nil) from the minibuffer.
-Prompting with string PROMPT."
-  (intern (completing-read prompt obarray 'find-coding-system t)))
+Prompting with string PROMPT.
+If the user enters null input, return second argument DEFAULT-CODING-SYSTEM."
+  (intern (completing-read prompt obarray 'find-coding-system t nil nil 
+                          default-coding-system)))
 
 (defun read-non-nil-coding-system (prompt)
   "Read a non-nil coding-system from the minibuffer.