diff options
| author | Romain Francoise | 2005-09-24 23:26:28 +0000 |
|---|---|---|
| committer | Romain Francoise | 2005-09-24 23:26:28 +0000 |
| commit | ce5a3ac01e1d22fe149978bd19bf7861ba116f62 (patch) | |
| tree | 9f407de17683e30922fe3e0e54bc90d65a0bb4ae /lisp/ido.el | |
| parent | 668414769aa92a7350bacab3c98507c3c1189e5c (diff) | |
| download | emacs-ce5a3ac01e1d22fe149978bd19bf7861ba116f62.tar.gz emacs-ce5a3ac01e1d22fe149978bd19bf7861ba116f62.zip | |
2005-09-25 Romain Francoise <romain@orebokech.com>
* dired-aux.el (dired-copy-file-recursive):
* dired.el (dired-delete-file):
* ediff-mult.el (ediff-dir-diff-copy-file):
* ediff-util.el (ediff-test-save-region):
* forms.el (forms-mode):
* ido.el (ido-file-internal, ido-delete-file-at-head):
* log-edit.el (log-edit-done):
* ses.el (ses-yank-resize):
* play/gomoku.el (gomoku-human-plays, gomoku)
(gomoku-human-resigns, gomoku-prompt-for-other-game)
(gomoku-offer-a-draw):
* play/landmark.el (lm-human-resigns, lm):
* net/eudcb-ldap.el (eudc-ldap-check-base):
* play/mpuz.el (mpuz-offer-abort, mpuz-try-letter, mpuz-close-game):
* progmodes/ebrowse.el (ebrowse-find-pattern):
* progmodes/idlw-shell.el (idlwave-shell-set-bp-check):
* textmodes/reftex-index.el (reftex-index-initialize-phrases-buffer):
End `yes-or-no-p' and `y-or-n-p' prompts with question mark and
space.
* vc.el (vc-delete-file):
* play/gomoku.el (gomoku-terminate-game, gomoku)
(gomoku-prompt-for-move, gomoku-human-takes-back):
* play/landmark.el (lm-human-takes-back, lm-prompt-for-move)
(lm-start-robot, lm-human-plays): Remove extraneous spaces in
messages.
Diffstat (limited to 'lisp/ido.el')
| -rw-r--r-- | lisp/ido.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 7c9d269417a..2d62f6c74ef 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -2138,7 +2138,7 @@ If INITIAL is non-nil, it specifies the initial input string." | |||
| 2138 | (ido-record-command method dirname) | 2138 | (ido-record-command method dirname) |
| 2139 | (ido-record-work-directory) | 2139 | (ido-record-work-directory) |
| 2140 | (funcall method dirname)) | 2140 | (funcall method dirname)) |
| 2141 | ((y-or-n-p (format "Directory %s does not exist. Create it " filename)) | 2141 | ((y-or-n-p (format "Directory %s does not exist. Create it? " filename)) |
| 2142 | (ido-record-command method dirname) | 2142 | (ido-record-command method dirname) |
| 2143 | (ido-record-work-directory dirname) | 2143 | (ido-record-work-directory dirname) |
| 2144 | (make-directory-internal dirname) | 2144 | (make-directory-internal dirname) |
| @@ -3529,7 +3529,7 @@ for first matching file." | |||
| 3529 | (file-exists-p file) | 3529 | (file-exists-p file) |
| 3530 | (not (file-directory-p file)) | 3530 | (not (file-directory-p file)) |
| 3531 | (file-writable-p ido-current-directory) | 3531 | (file-writable-p ido-current-directory) |
| 3532 | (yes-or-no-p (concat "Delete " file " "))) | 3532 | (yes-or-no-p (concat "Delete " file "? "))) |
| 3533 | (delete-file file) | 3533 | (delete-file file) |
| 3534 | ;; Check if file still exists. | 3534 | ;; Check if file still exists. |
| 3535 | (if (file-exists-p file) | 3535 | (if (file-exists-p file) |