# HG changeset patch # User Andr Spiegel # Date 1014674451 0 # Node ID 143e4daefa5ed900cbecb3ab432f39247e9c7818 # Parent 4481706b64ddbced6b4673476c8ad93191adadbd (vc-diff-switches-list): Fix prev change, making the function consistent with the others that take a backend name as a symbol. diff -r 4481706b64dd -r 143e4daefa5e lisp/vc.el --- a/lisp/vc.el Mon Feb 25 21:07:37 2002 +0000 +++ b/lisp/vc.el Mon Feb 25 22:00:51 2002 +0000 @@ -6,7 +6,7 @@ ;; Maintainer: Andre Spiegel ;; Keywords: tools -;; $Id: vc.el,v 1.325 2002/01/05 17:15:20 spiegel Exp $ +;; $Id: vc.el,v 1.326 2002/02/21 21:00:35 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -1877,7 +1877,7 @@ (if (listp diff-switches) diff-switches (list diff-switches)) (if (listp vc-diff-switches) vc-diff-switches (list vc-diff-switches)) (let* ((backend-switches-symbol - (intern (concat "vc-" (symbol-name ,backend) + (intern (concat "vc-" (downcase (symbol-name ,backend)) "-diff-switches"))) (backend-switches (if (boundp backend-switches-symbol)