diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-25 18:46:18 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-08-25 19:00:21 -0700 |
commit | bcfe2e0ed5018bf796cbb41465377fa1e38863b8 (patch) | |
tree | 442098b9e75518448f4c20d28ccdbf2fdd97bf01 /lisp/wid-edit.el | |
parent | 71781c31a4860e56434643296eaa303ca43386bb (diff) | |
download | emacs-bcfe2e0ed5018bf796cbb41465377fa1e38863b8.tar.gz |
Fix customization of text-quoting-style
* lisp/cus-edit.el (custom-guess-type, custom-variable-documentation):
* lisp/wid-edit.el (widget-docstring):
Get raw docstring here since it’s cooked later and should not be
cooked twice.
* lisp/cus-edit.el (custom-group-value-create):
Cook the docstring before inserting it.
* lisp/cus-start.el (text-quoting-style): Quote the customization
docstrings according to the new rules. Give curved examples.
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index e98ac18fc5e..0c8f4af58e1 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -1676,7 +1676,7 @@ as the argument to `documentation-property'." (cond ((functionp doc-prop) (funcall doc-prop value)) ((symbolp doc-prop) - (documentation-property value doc-prop))))))) + (documentation-property value doc-prop t))))))) (when (and (stringp doc) (> (length doc) 0)) ;; Remove any redundant `*' in the beginning. (when (eq (aref doc 0) ?*) |