# HG changeset patch # User Stefan Monnier # Date 1034108661 0 # Node ID 10d173c975ef788938495a8ee0005dd8be441ee8 # Parent 81b51b0d6e665141d9e35f27fcfcad7543a8a8c7 (vc-sccs-find-version): Fix vc-checkout-switches use. diff -r 81b51b0d6e66 -r 10d173c975ef lisp/vc-sccs.el --- a/lisp/vc-sccs.el Tue Oct 08 20:23:36 2002 +0000 +++ b/lisp/vc-sccs.el Tue Oct 08 20:24:21 2002 +0000 @@ -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 @@ (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.