diff options
author | André Spiegel <spiegel@gnu.org> | 2001-03-10 10:51:22 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2001-03-10 10:51:22 +0000 |
commit | 23e94aedc2b2b0fd58e187d955bd22f7ceb2de72 (patch) | |
tree | 3c31009e8618e6618c0f233b03ec9b6aae0f3418 /lisp/vc-sccs.el | |
parent | cdc2fe43d4f9c5504a750873822667bd47f02a9e (diff) | |
download | emacs-23e94aedc2b2b0fd58e187d955bd22f7ceb2de72.tar.gz |
(vc-sccs-print-log): Output to buffer *vc*, not the current buffer.
(vc-sccs-diff): Output to buffer *vc-diff*, not the current buffer.
Diffstat (limited to 'lisp/vc-sccs.el')
-rw-r--r-- | lisp/vc-sccs.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el index 08be815bc0c..bf2bf48430b 100644 --- a/lisp/vc-sccs.el +++ b/lisp/vc-sccs.el @@ -5,7 +5,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $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 @@ EDITABLE non-nil means previous version should be locked." (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 @@ EDITABLE non-nil means previous version should be locked." "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))) |