emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/cvs-status.el


From: Masatake YAMATO
Subject: [Emacs-diffs] Changes to emacs/lisp/cvs-status.el
Date: Sun, 22 Aug 2004 07:01:20 -0400

Index: emacs/lisp/cvs-status.el
diff -c emacs/lisp/cvs-status.el:1.18 emacs/lisp/cvs-status.el:1.19
*** emacs/lisp/cvs-status.el:1.18       Fri May 28 19:07:57 2004
--- emacs/lisp/cvs-status.el    Sun Aug 22 04:37:44 2004
***************
*** 48,54 ****
      ("\M-n"   . cvs-status-next)
      ("\M-p"   . cvs-status-prev)
      ("t"      . cvs-status-cvstrees)
!     ("T"      . cvs-status-trees))
    "CVS-Status' keymap."
    :group 'cvs-status
    :inherit 'cvs-mode-map)
--- 48,55 ----
      ("\M-n"   . cvs-status-next)
      ("\M-p"   . cvs-status-prev)
      ("t"      . cvs-status-cvstrees)
!     ("T"      . cvs-status-trees)
!     (">"        . cvs-status-checkout))
    "CVS-Status' keymap."
    :group 'cvs-status
    :inherit 'cvs-mode-map)
***************
*** 464,469 ****
--- 465,489 ----
            ;;(sit-for 0)
            ))))))
  
+ (defun-cvs-mode (cvs-status-checkout . NOARGS) (dir)
+   "Run cvs-checkout against the tag under the point.
+ The files are stored to DIR."
+   (interactive 
+    (let* ((module (cvs-get-module))
+         (branch (cvs-prefix-get 'cvs-branch-prefix))
+         (prompt (format "CVS Checkout Directory for `%s%s': " 
+                        module
+                        (if branch (format "(branch: %s)" branch)
+                          ""))))
+      (list
+       (read-directory-name prompt
+                          nil default-directory nil))))
+   (let ((modules (cvs-string->strings (cvs-get-module)))
+       (flags (cvs-add-branch-prefix
+               (cvs-flags-query 'cvs-checkout-flags "cvs checkout flags")))
+       (cvs-cvsroot (cvs-get-cvsroot)))
+     (cvs-checkout modules dir flags)))
+ 
  (defun cvs-tree-tags-insert (tags prev)
    (when tags
      (let* ((tag (car tags))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]