# HG changeset patch # User Andr Spiegel # Date 984221416 0 # Node ID 551ff6f7ef12b4156d1e18e3e9001839a9e9308c # Parent 22fd463447c313388e5bbb2de127633e0cf88781 (vc-rcs-print-log): Output to buffer *vc*, not the current buffer. (vc-rcs-diff): Output to buffer *vc-diff*, not the current buffer. diff -r 22fd463447c3 -r 551ff6f7ef12 lisp/vc-rcs.el --- a/lisp/vc-rcs.el Sat Mar 10 10:49:05 2001 +0000 +++ b/lisp/vc-rcs.el Sat Mar 10 10:50:16 2001 +0000 @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel -;; $Id: vc-rcs.el,v 1.17 2001/02/01 15:11:05 spiegel Exp $ +;; $Id: vc-rcs.el,v 1.18 2001/02/01 17:42:03 fx Exp $ ;; This file is part of GNU Emacs. @@ -509,7 +509,7 @@ (defun vc-rcs-print-log (file) "Get change log associated with FILE." - (vc-do-command t 0 "rlog" (vc-name file))) + (vc-do-command nil 0 "rlog" (vc-name file))) (defun vc-rcs-show-log-entry (version) (when (re-search-forward @@ -545,7 +545,7 @@ (defun vc-rcs-diff (file &optional oldvers newvers) "Get a difference report using RCS between two versions of FILE." (if (not oldvers) (setq oldvers (vc-workfile-version file))) - (apply 'vc-do-command t 1 "rcsdiff" file + (apply 'vc-do-command "*vc-diff*" 1 "rcsdiff" file (append (list "-q" (concat "-r" oldvers) (and newvers (concat "-r" newvers)))