From ed0fb7ea3538bde77f222b83c6869913e8dc8a59 Mon Sep 17 00:00:00 2001 From: "Tom Breton (Tehom)" Date: Sun, 27 Jun 2010 16:18:40 -0400 Subject: [PATCH] Prettied up customization format --- eproject.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eproject.el b/eproject.el index a7f56e6..c6026a8 100644 --- a/eproject.el +++ b/eproject.el @@ -40,9 +40,9 @@ :tag "Key sequence" :match-alternatives (vectorp stringp)) function - (choice - (const :tag "always" always) - (const :tag "not always" nil)))) + (choice :format "%[Always provide%] %v" + (const :tag "yes" always) + (const :tag "no" nil)))) :group 'prj-group) @@ -65,11 +65,11 @@ (list :format "\n%v" (string :tag "name") (string :tag "shell command") - (choice :tag "Key sequence" + (choice :format "%[Toggle%] %v" (restricted-sexp - :tag "yes" + :tag "Key sequence" :match-alternatives (vectorp stringp)) - (const :inline t :tag "None" nil))))) + (const :inline t :tag "No key sequence" nil))))) :group 'prj-group) -- 2.11.4.GIT