diff options
author | Juri Linkov <juri@jurta.org> | 2006-01-23 01:24:26 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2006-01-23 01:24:26 +0000 |
commit | f6039de63ebe45e5af6d86f55facb690b97d385a (patch) | |
tree | aa795decfc06f93a14535a35714cee87f16ec1ee /lisp | |
parent | 07696982f10458a8af3b47d96190c554a8fde8fc (diff) | |
download | emacs-f6039de63ebe45e5af6d86f55facb690b97d385a.tar.gz |
(clone-buffer, clone-indirect-buffer, clone-indirect-buffer-other-window):
Use `read-buffer' instead of `read-string'. Fix prompts.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/simple.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 8aa7da00af0..346a242c042 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -5035,8 +5035,8 @@ select the completion near point.\n\n"))))) (goto-char (point-min)) (search-forward "\n\n") (forward-line 1)))) - -;; Support keyboard commands to turn on various modifiers. + +;;; Support keyboard commands to turn on various modifiers. ;; These functions -- which are not commands -- each add one modifier ;; to the following event. @@ -5101,7 +5101,7 @@ PREFIX is the string that represents this modifier in an event type symbol." (define-key function-key-map [?\C-x ?@ ?a] 'event-apply-alt-modifier) (define-key function-key-map [?\C-x ?@ ?S] 'event-apply-shift-modifier) (define-key function-key-map [?\C-x ?@ ?c] 'event-apply-control-modifier) - + ;;;; Keypad support. ;;; Make the keypad keys act like ordinary typing keys. If people add @@ -5196,7 +5196,8 @@ after it has been set up properly in other respects." (error "Cannot clone a file-visiting buffer")) (if (get major-mode 'no-clone) (error "Cannot clone a buffer in %s mode" mode-name)) - (list (if current-prefix-arg (read-string "Name: ")) + (list (if current-prefix-arg + (read-buffer "Name of new cloned buffer: " (current-buffer))) t))) (if buffer-file-name (error "Cannot clone a file-visiting buffer")) @@ -5266,7 +5267,7 @@ front of the list of recently selected ones." (if (get major-mode 'no-clone-indirect) (error "Cannot indirectly clone a buffer in %s mode" mode-name)) (list (if current-prefix-arg - (read-string "BName of indirect buffer: ")) + (read-buffer "Name of indirect buffer: " (current-buffer))) t))) (if (get major-mode 'no-clone-indirect) (error "Cannot indirectly clone a buffer in %s mode" mode-name)) @@ -5290,7 +5291,7 @@ the front of the list of recently selected ones." (if (get major-mode 'no-clone-indirect) (error "Cannot indirectly clone a buffer in %s mode" mode-name)) (list (if current-prefix-arg - (read-string "BName of indirect buffer: ")) + (read-buffer "Name of indirect buffer: " (current-buffer))) t))) (let ((pop-up-windows t)) (set-buffer buffer) |