From 7d67c448c918cb6d6df835773d44f200f9ecb025 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 17 Jan 2014 01:29:06 +0100 Subject: [PATCH] ox-koma-letter: Fix customizable variable * contrib/lisp/ox-koma-letter.el (org-koma-letter-use-foldmarks): Use correct type and improve docstring. --- contrib/lisp/ox-koma-letter.el | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/contrib/lisp/ox-koma-letter.el b/contrib/lisp/ox-koma-letter.el index 82859756a..bd4c266fb 100644 --- a/contrib/lisp/ox-koma-letter.el +++ b/contrib/lisp/ox-koma-letter.el @@ -232,15 +232,22 @@ English manual of 2012-07-22)." :group 'org-export-koma-letter :type 'boolean) -(defcustom org-koma-letter-use-foldmarks "true" +(defcustom org-koma-letter-use-foldmarks t "Configure appearence of fold marks. Accepts any valid value for the KOMA-Script `foldmarks' option. +This option can also be set with the OPTIONS keyword, e.g.: -Use `foldmarks:true' to activate default fold marks or -`foldmarks:nil' to deactivate fold marks." + foldmarks:\"blmt\" + +nil and t are also accepted, as shortcuts for, respectively, +\"false\" and \"true\", i.e. to deactivate folding marks or +activate default ones." :group 'org-export-koma-letter - :type 'string) + :type '(choice + (const :tag "Activate default folding marks" t) + (const :tag "Deactivate folding marks" nil) + (string :tag "Choose configuration flags"))) (defcustom org-koma-letter-use-phone nil "Non-nil prints sender's phone number." -- 2.11.4.GIT