diff options
author | André Spiegel <spiegel@gnu.org> | 2002-03-18 17:20:43 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2002-03-18 17:20:43 +0000 |
commit | 00ec645cd7dffc1c6bf729b7c75c2f9716cadbdc (patch) | |
tree | 7b0d5542375096a14e00303a9589d8abf989ce39 /lisp/vc-sccs.el | |
parent | 4897ff21e9243828757bc004a460adf91b72d691 (diff) | |
download | emacs-00ec645cd7dffc1c6bf729b7c75c2f9716cadbdc.tar.gz |
(vc-sccs-register): Fix handling of vc-[sccs-]register-switches.
Diffstat (limited to 'lisp/vc-sccs.el')
-rw-r--r-- | lisp/vc-sccs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-sccs.el b/lisp/vc-sccs.el index 80df642a8be..3c4817a1f63 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.13 2001/08/28 17:05:55 spiegel Exp $ +;; $Id: vc-sccs.el,v 1.14 2002/02/25 22:05:16 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -161,7 +161,7 @@ the SCCS command (in that order). Automatically retrieve a read-only version of the file with keywords expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile." - (let* ((switches (list + (let* ((switches (append (if (stringp vc-register-switches) (list vc-register-switches) vc-register-switches) |