diff options
| author | Paul Eggert | 2015-06-20 13:35:29 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-06-20 13:35:59 -0700 |
| commit | bf32130d7debe3ee6dbd9974e50bb4a2a48047f4 (patch) | |
| tree | 4953779f914a603a0328f387d06ff7efd753ab37 | |
| parent | b1cd8375f618969aab5c2df403a97b7d88064bda (diff) | |
| download | emacs-bf32130d7debe3ee6dbd9974e50bb4a2a48047f4.tar.gz emacs-bf32130d7debe3ee6dbd9974e50bb4a2a48047f4.zip | |
Improve port of settings UI to older displays
* lisp/cus-start.el (standard): Don't assume curved quotes are
easily distinguishable when users are tinkering with a setting
that affects how curved quotes are generated.
| -rw-r--r-- | lisp/cus-start.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index a246d89f81f..69dbf0d0c57 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -223,10 +223,11 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 223 | ;; doc.c | 223 | ;; doc.c |
| 224 | (help-quote-translation help | 224 | (help-quote-translation help |
| 225 | (choice | 225 | (choice |
| 226 | (character :tag "Quote ‘like this’" :value ?‘) | 226 | (character :tag "Quote with curved quotes" |
| 227 | :value ?‘) | ||
| 227 | (character :tag "Quote 'like this'" :value ?\') | 228 | (character :tag "Quote 'like this'" :value ?\') |
| 228 | (character :tag "Quote `like this'" :value ?\`) | 229 | (character :tag "Quote `like this'" :value ?\`) |
| 229 | (const :tag "Quote ‘like this’ if displayable, 'like this' otherwise" nil)) | 230 | (const :tag "Quote with curved quotes if displayable, 'like this' otherwise" nil)) |
| 230 | "25.1") | 231 | "25.1") |
| 231 | ;; dosfns.c | 232 | ;; dosfns.c |
| 232 | (dos-display-scancodes display boolean) | 233 | (dos-display-scancodes display boolean) |