# HG changeset patch # User Andr Spiegel # Date 984221482 0 # Node ID e7e3ef78863986e12b761f080dcc39f2b9395eec # Parent 551ff6f7ef12b4156d1e18e3e9001839a9e9308c (vc-sccs-print-log): Output to buffer *vc*, not the current buffer. (vc-sccs-diff): Output to buffer *vc-diff*, not the current buffer. diff -r 551ff6f7ef12 -r e7e3ef788639 lisp/vc-sccs.el --- a/lisp/vc-sccs.el Sat Mar 10 10:50:16 2001 +0000 +++ b/lisp/vc-sccs.el Sat Mar 10 10:51:22 2001 +0000 @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel -;; $Id: vc-sccs.el,v 1.8 2001/02/01 15:12:35 spiegel Exp $ +;; $Id: vc-sccs.el,v 1.9 2001/02/01 17:42:44 fx Exp $ ;; This file is part of GNU Emacs. @@ -293,7 +293,7 @@ (defun vc-sccs-print-log (file) "Get change log associated with FILE." - (vc-do-command t 0 "prs" (vc-name file))) + (vc-do-command nil 0 "prs" (vc-name file))) (defun vc-sccs-logentry-check () "Check that the log entry in the current buffer is acceptable for SCCS." @@ -305,7 +305,7 @@ "Get a difference report using SCCS between two versions of FILE." (setq oldvers (vc-sccs-lookup-triple file oldvers)) (setq newvers (vc-sccs-lookup-triple file newvers)) - (apply 'vc-do-command t 1 "vcdiff" (vc-name file) + (apply 'vc-do-command "*vc-diff*" 1 "vcdiff" (vc-name file) (append (list "-q" (and oldvers (concat "-r" oldvers)) (and newvers (concat "-r" newvers)))