From 14b7a0b52728e51ac20d4f4467f6329bc7c58f4b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 19 Mar 2008 01:44:34 +0000 Subject: [PATCH] (vc-annotate-background): Fix custom type. --- lisp/ChangeLog | 4 ++++ lisp/vc.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 37938c1bc44..1097aea3d72 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-03-19 Gustav H$(Q)[(Bllberg (tiny change) + + * vc.el (vc-annotate-background): Fix custom type. + 2008-03-19 Stefan Monnier * descr-text.el (describe-char-unidata-list): Allow specifying diff --git a/lisp/vc.el b/lisp/vc.el index 742e960fbc7..274376765c5 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -851,7 +851,7 @@ all other colors between (excluding black and white)." (defcustom vc-annotate-background "black" "Background color for \\[vc-annotate]. Default color is used if nil." - :type 'string + :type '(choice (const :tag "Default background" nil) (color)) :group 'vc) (defcustom vc-annotate-menu-elements '(2 0.5 0.1 0.01) -- 2.39.5