emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/vc-dispatcher.el,v


From: Eric S. Raymond
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-dispatcher.el,v
Date: Fri, 09 May 2008 19:10:29 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Eric S. Raymond <esr>   08/05/09 19:10:29

Index: vc-dispatcher.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc-dispatcher.el,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -b -r1.32 -r1.33
--- vc-dispatcher.el    9 May 2008 18:59:44 -0000       1.32
+++ vc-dispatcher.el    9 May 2008 19:10:29 -0000       1.33
@@ -108,7 +108,8 @@
 ;; To do:
 ;;
 ;; - vc-dir-kill-dir-status-process should not be specific to dir-status,
-;;   it should work for other async commands as well (pull/push/...).
+;;   it should work for other async commands done through vc-do-command 
+;;   as well,
 ;;
 ;; - the *VC-log* buffer needs font-locking.
 ;;
@@ -116,13 +117,12 @@
 ;;
 ;; - vc-dir toolbar needs more icons.
 ;;
-;; - vc-dir-next-line should not print an "end of buffer" message when
-;;   invoked with the cursor on the last file.
-;;
 ;; - add commands to move to the prev/next directory in vc-dir.
 ;;
 ;; - document vc-dir in the manual.
 ;;
+;; - vc-dir-menu-map-filter hook call needs to be moved to vc.el.
+;;
 
 (provide 'vc-dispatcher)
 
@@ -921,8 +921,9 @@
   "Go to the next line.
 If a prefix argument is given, move by that many lines."
   (interactive "p")
+  (with-no-warnings
   (ewoc-goto-next vc-ewoc arg)
-  (vc-dir-move-to-goal-column))
+    (vc-dir-move-to-goal-column)))
 
 (defun vc-dir-previous-line (arg)
   "Go to the previous line.




reply via email to

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