# HG changeset patch # User Richard M. Stallman # Date 736957773 0 # Node ID c52476200becffe19fe46259c7e25705dac3a1f5 # Parent b4587e7ff4e5c943a89bfdea704cf173b62ce474 (vc-backend-diff): Handle either string or list. diff -r b4587e7ff4e5 -r c52476200bec lisp/vc.el --- a/lisp/vc.el Sun May 09 14:27:02 1993 +0000 +++ b/lisp/vc.el Sun May 09 14:29:33 1993 +0000 @@ -1487,7 +1487,9 @@ file (and oldvers (concat "-r" oldvers)) (and newvers (concat "-r" newvers)) - diff-switches + (if (listp diff-switches) + diff-switches + (list diff-switches)) )) (defun vc-check-headers ()