+2008-05-10 Reiner Steib <reiner.steib@gmx.de>
+
+ * smerge-mode.el (smerge-command-prefix): Fix custom type.
+
2008-05-05 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el (org-read-date-get-relative): Interpret lone
(defcustom smerge-command-prefix "\C-c^"
"Prefix for `smerge-mode' commands."
:group 'smerge
- :type '(choice (string "\e") (string "\C-c^") (string "") string))
+ :type '(choice (const :tag "ESC" "\e")
+ (const :tag "C-c ^" "\C-c^" )
+ (const :tag "none" "")
+ string))
(easy-mmode-defmap smerge-mode-map
`((,smerge-command-prefix . ,smerge-basic-map))