branch: elpa commit b90986f447091376341612f4c2c40e60159cef51 Author: Mosè Giordano <m...@gnu.org> Commit: Mosè Giordano <m...@gnu.org>
Fix type of ConTeXt-Mark-version option * context.el (ConTeXt-Mark-version): Fix the type, it was wrongly set with a string in place of a symbol. Reported by Tobias Berndt. --- context.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.el b/context.el index 25151e5..941057a 100644 --- a/context.el +++ b/context.el @@ -498,7 +498,7 @@ in your .emacs file." ;; Define before first use. (defcustom ConTeXt-Mark-version "II" "ConTeXt Mark version used for running ConTeXt." - :type "string" + :type 'string :group 'TeX-command) (make-variable-buffer-local 'ConTeXt-Mark-version) (put 'ConTeXt-Mark-version 'safe-local-variable 'stringp)