Mercurial > emacs
changeset 43532:143e4daefa5e
(vc-diff-switches-list): Fix prev change, making the function
consistent with the others that take a backend name as a symbol.
author | André Spiegel <spiegel@gnu.org> |
---|---|
date | Mon, 25 Feb 2002 22:00:51 +0000 |
parents | 4481706b64dd |
children | d4dab5e8395f |
files | lisp/vc.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <spiegel@gnu.org> ;; 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)