diff options
| author | Paul Eggert | 2015-08-25 18:46:18 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-08-25 19:00:21 -0700 |
| commit | bcfe2e0ed5018bf796cbb41465377fa1e38863b8 (patch) | |
| tree | 442098b9e75518448f4c20d28ccdbf2fdd97bf01 /lisp/cus-start.el | |
| parent | 71781c31a4860e56434643296eaa303ca43386bb (diff) | |
| download | emacs-bcfe2e0ed5018bf796cbb41465377fa1e38863b8.tar.gz emacs-bcfe2e0ed5018bf796cbb41465377fa1e38863b8.zip | |
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/cus-start.el')
| -rw-r--r-- | lisp/cus-start.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index daa95d1cb9d..2b9cc094f95 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -224,11 +224,9 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 224 | (text-quoting-style | 224 | (text-quoting-style |
| 225 | help | 225 | help |
| 226 | (choice | 226 | (choice |
| 227 | (const :tag "Quote with curved single quotes" curve) | 227 | (const :tag "Quote with curved single quotes \\=‘like this\\=’" curve) |
| 228 | (const :tag "Quote with straight apostrophes 'like this'" | 228 | (const :tag "Quote with straight apostrophes \\='like this\\='" straight) |
| 229 | straight) | 229 | (const :tag "Quote with grave accent and apostrophe \\=`like this\\='" grave) |
| 230 | (const :tag "Quote with grave accent and apostrophe `like this'" | ||
| 231 | grave) | ||
| 232 | (const :tag "Use curved quotes if displayable, grave accent and apostrophe otherwise" nil)) | 230 | (const :tag "Use curved quotes if displayable, grave accent and apostrophe otherwise" nil)) |
| 233 | "25.1") | 231 | "25.1") |
| 234 | ;; dosfns.c | 232 | ;; dosfns.c |