diff options
| author | Alan Mackenzie | 2017-09-22 21:52:03 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2017-10-01 11:27:16 +0000 |
| commit | 5f76ac150a28e4de940790f96f0f751c8ee5d4c7 (patch) | |
| tree | c5bcacf053fcb197638073f3f167719831f17ff8 /lisp | |
| parent | d5e4e004fa134cb81989bcf40c5d6c79b837301f (diff) | |
| download | emacs-5f76ac150a28e4de940790f96f0f751c8ee5d4c7.tar.gz emacs-5f76ac150a28e4de940790f96f0f751c8ee5d4c7.zip | |
Make the value nil in text-quoting-style mean what it does in Emacs 25.
This is a partial reversion of yesterday's commit by the same author, which
changed the meaning of nil and introduced the new value t.
* src/doc.c (text_quoting_style, text-quoting-style)
(internal--text-quoting-flag): Revert yesterday's changes.
* lisp/cus-start.el: (top level): Amend the entry for text-quoting-style.
* etc/NEWS: Amend the entry for text-quoting-style.
* doc/lispref/control.texi (Signalling Errors)
* doc/lispref/display.texi (Displaying Messages)
* doc/lispref/strings.texi (Formatting Strings): Bind text-quoting-style to
grave rather than nil to inhibit translation of quotes.
* doc/lispref/help.texi (Keys in Documentation): Revert the description of the
proposed new default, t.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/cus-start.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index f5e1431f6bb..a5ec223fe51 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -226,11 +226,10 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 226 | ;; doc.c | 226 | ;; doc.c |
| 227 | (text-quoting-style display | 227 | (text-quoting-style display |
| 228 | (choice | 228 | (choice |
| 229 | (const :tag "No translation" nil) | 229 | (const :tag "Prefer \\=‘curved\\=’ quotes, if possible" nil) |
| 230 | (const :tag "Prefer \\=‘curved\\=’ quotes, if possible" t) | ||
| 231 | (const :tag "\\=‘Curved\\=’ quotes" curved) | 230 | (const :tag "\\=‘Curved\\=’ quotes" curved) |
| 232 | (const :tag "\\='Straight\\=' quotes" straight) | 231 | (const :tag "\\='Straight\\=' quotes" straight) |
| 233 | (const :tag "\\=`Grave\\=' quotes" grave))) | 232 | (const :tag "\\=`Grave\\=' quotes (no translation)" grave))) |
| 234 | 233 | ||
| 235 | ;; dosfns.c | 234 | ;; dosfns.c |
| 236 | (dos-display-scancodes display boolean) | 235 | (dos-display-scancodes display boolean) |