From 8e859566007d91483aa8d02376cf16028d691820 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 8 Oct 2002 20:24:21 +0000 Subject: [PATCH] (vc-sccs-find-version): Fix vc-checkout-switches use. --- lisp/vc-sccs.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el index 10426a46bae..eddc990a4f4 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 -;; $Id: vc-sccs.el,v 1.15 2002/03/18 17:20:43 spiegel Exp $ +;; $Id: vc-sccs.el,v 1.16 2002/10/08 15:35:03 monnier Exp $ ;; This file is part of GNU Emacs. @@ -211,7 +211,9 @@ expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile." (and rev (concat "-r" (vc-sccs-lookup-triple file rev))) - vc-checkout-switches)) + (if (stringp vc-checkout-switches) + (list vc-checkout-switches) + vc-checkout-switches))) (defun vc-sccs-checkout (file &optional editable rev) "Retrieve a copy of a saved version of SCCS controlled FILE. -- 2.39.2