From: André Spiegel Date: Mon, 25 Feb 2002 22:00:51 +0000 (+0000) Subject: (vc-diff-switches-list): Fix prev change, making the function X-Git-Tag: ttn-vms-21-2-B4~16477 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e5f52e5b97766565702e55c4eea6b482e569bff;p=emacs.git (vc-diff-switches-list): Fix prev change, making the function consistent with the others that take a backend name as a symbol. --- diff --git a/lisp/vc.el b/lisp/vc.el index a2ac1ee7208..a6c5b47e7fd 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -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 @@ actually call the backend, but performs a local diff." (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)