aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond2008-05-09 19:10:29 +0000
committerEric S. Raymond2008-05-09 19:10:29 +0000
commitedbde3530b47089518174496f18e85a989a64659 (patch)
tree6f8cdbe54562fd23b4108c72268390834339fcfa
parent2a85f0c2f09bdf356640820ed228897520d6204b (diff)
downloademacs-edbde3530b47089518174496f18e85a989a64659.tar.gz
emacs-edbde3530b47089518174496f18e85a989a64659.zip
Suppress an annoying warning.
-rw-r--r--lisp/vc-dispatcher.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el
index b500f467b38..64845b99614 100644
--- a/lisp/vc-dispatcher.el
+++ b/lisp/vc-dispatcher.el
@@ -108,7 +108,8 @@
108;; To do: 108;; To do:
109;; 109;;
110;; - vc-dir-kill-dir-status-process should not be specific to dir-status, 110;; - vc-dir-kill-dir-status-process should not be specific to dir-status,
111;; it should work for other async commands as well (pull/push/...). 111;; it should work for other async commands done through vc-do-command
112;; as well,
112;; 113;;
113;; - the *VC-log* buffer needs font-locking. 114;; - the *VC-log* buffer needs font-locking.
114;; 115;;
@@ -116,13 +117,12 @@
116;; 117;;
117;; - vc-dir toolbar needs more icons. 118;; - vc-dir toolbar needs more icons.
118;; 119;;
119;; - vc-dir-next-line should not print an "end of buffer" message when
120;; invoked with the cursor on the last file.
121;;
122;; - add commands to move to the prev/next directory in vc-dir. 120;; - add commands to move to the prev/next directory in vc-dir.
123;; 121;;
124;; - document vc-dir in the manual. 122;; - document vc-dir in the manual.
125;; 123;;
124;; - vc-dir-menu-map-filter hook call needs to be moved to vc.el.
125;;
126 126
127(provide 'vc-dispatcher) 127(provide 'vc-dispatcher)
128 128
@@ -921,8 +921,9 @@ If NOINSERT, ignore elements on ENTRIES which are not in the ewoc."
921 "Go to the next line. 921 "Go to the next line.
922If a prefix argument is given, move by that many lines." 922If a prefix argument is given, move by that many lines."
923 (interactive "p") 923 (interactive "p")
924 (ewoc-goto-next vc-ewoc arg) 924 (with-no-warnings
925 (vc-dir-move-to-goal-column)) 925 (ewoc-goto-next vc-ewoc arg)
926 (vc-dir-move-to-goal-column)))
926 927
927(defun vc-dir-previous-line (arg) 928(defun vc-dir-previous-line (arg)
928 "Go to the previous line. 929 "Go to the previous line.