aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-10-26 22:27:39 +0000
committerKim F. Storm2002-10-26 22:27:39 +0000
commit2c05f7adc52beb1604ce5b5d1e869c4fcfc6a20c (patch)
tree7070595d52e2d17b76559e056d992d4d59b46d94
parent5e8b072b5171625f3483396c82e81b7a865205c8 (diff)
downloademacs-2c05f7adc52beb1604ce5b5d1e869c4fcfc6a20c.tar.gz
emacs-2c05f7adc52beb1604ce5b5d1e869c4fcfc6a20c.zip
(cvs-checkout): Use read-directory-name.
(cvs-query-directory): Likewise.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/pcvs.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e3f87024362..84368bbfc02 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-10-27 Kim F. Storm <storm@cua.dk>
2
3 * pcvs.el (cvs-checkout): Use read-directory-name.
4 (cvs-query-directory): Likewise.
5
12002-10-25 Stefan Monnier <monnier@cs.yale.edu> 62002-10-25 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * textmodes/outline.el (outline-next-heading): Make sure the match-data 8 * textmodes/outline.el (outline-next-heading): Make sure the match-data
diff --git a/lisp/pcvs.el b/lisp/pcvs.el
index 4bfe1d8f6cd..c2aede4445b 100644
--- a/lisp/pcvs.el
+++ b/lisp/pcvs.el
@@ -14,7 +14,7 @@
14;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com 14;; (Jari Aalto+mail.emacs) jari.aalto@poboxes.com
15;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu 15;; Maintainer: (Stefan Monnier) monnier+lists/cvs/pcl@flint.cs.yale.edu
16;; Keywords: CVS, version control, release management 16;; Keywords: CVS, version control, release management
17;; Revision: $Id: pcvs.el,v 1.41 2002/09/13 19:09:45 monnier Exp $ 17;; Revision: $Id: pcvs.el,v 1.42 2002/10/01 18:48:35 monnier Exp $
18 18
19;; This file is part of GNU Emacs. 19;; This file is part of GNU Emacs.
20 20
@@ -893,7 +893,7 @@ and run `cvs-mode' on it.
893With a prefix argument, prompt for cvs FLAGS to use." 893With a prefix argument, prompt for cvs FLAGS to use."
894 (interactive 894 (interactive
895 (list (cvs-string->strings (read-string "Module(s): " (cvs-get-module))) 895 (list (cvs-string->strings (read-string "Module(s): " (cvs-get-module)))
896 (read-file-name "CVS Checkout Directory: " 896 (read-directory-name "CVS Checkout Directory: "
897 nil default-directory nil) 897 nil default-directory nil)
898 (cvs-add-branch-prefix 898 (cvs-add-branch-prefix
899 (cvs-flags-query 'cvs-checkout-flags "cvs checkout flags")))) 899 (cvs-flags-query 'cvs-checkout-flags "cvs checkout flags"))))
@@ -920,7 +920,7 @@ With a prefix argument, prompt for cvs FLAGS to use."
920 (not current-prefix-arg) 920 (not current-prefix-arg)
921 (not (eq last-command-char ?\r))) 921 (not (eq last-command-char ?\r)))
922 default-directory 922 default-directory
923 (read-file-name msg nil default-directory nil))) 923 (read-directory-name msg nil default-directory nil)))
924 924
925;;;###autoload 925;;;###autoload
926(defun cvs-quickdir (dir &optional flags noshow) 926(defun cvs-quickdir (dir &optional flags noshow)