# HG changeset patch # User Eric S. Raymond # Date 1210360229 0 # Node ID 0977154ddbe53a9cad58b79725ec0643e66c68f3 # Parent 3b9ee5aefff78d29ff8bf4a26c6b3d943c7bb5d7 Suppress an annoying warning. diff -r 3b9ee5aefff7 -r 0977154ddbe5 lisp/vc-dispatcher.el --- a/lisp/vc-dispatcher.el Fri May 09 19:09:33 2008 +0000 +++ b/lisp/vc-dispatcher.el Fri May 09 19:10:29 2008 +0000 @@ -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") - (ewoc-goto-next vc-ewoc arg) - (vc-dir-move-to-goal-column)) + (with-no-warnings + (ewoc-goto-next vc-ewoc arg) + (vc-dir-move-to-goal-column))) (defun vc-dir-previous-line (arg) "Go to the previous line.