aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/control.texi2
-rw-r--r--doc/lispref/display.texi2
-rw-r--r--doc/lispref/help.texi10
-rw-r--r--doc/lispref/strings.texi8
4 files changed, 11 insertions, 11 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 09435f57966..c39e035459e 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -1109,7 +1109,7 @@ quotes. In contrast, a call using a format like @t{"Missing '%s'"}
1109with only apostrophes typically generates a message like @t{"Missing 1109with only apostrophes typically generates a message like @t{"Missing
1110’foo’"} with only closing curved quotes, an unusual style in English. 1110’foo’"} with only closing curved quotes, an unusual style in English.
1111One way around this problem is to bind @code{text-quoting-style} to 1111One way around this problem is to bind @code{text-quoting-style} to
1112@code{nil} around the call to @code{error}; this causes the 1112the symbol @code{grave} around the call to @code{error}; this causes
1113@acronym{ASCII} quote characters to be output unchanged. 1113@acronym{ASCII} quote characters to be output unchanged.
1114 1114
1115@strong{Warning:} If you want to use your own string as an error message 1115@strong{Warning:} If you want to use your own string as an error message
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 8f58fca506f..62b136f6c60 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -273,7 +273,7 @@ quotes. In contrast, a call using a format like @t{"Missing '%s'"}
273with only apostrophes typically generates a message like @t{"Missing 273with only apostrophes typically generates a message like @t{"Missing
274’foo’"} with only closing curved quotes, an unusual style in English. 274’foo’"} with only closing curved quotes, an unusual style in English.
275One way around this problem is to bind @code{text-quoting-style} to 275One way around this problem is to bind @code{text-quoting-style} to
276@code{nil} around calls to @code{message}; this causes the 276the symbol @code{grave} around calls to @code{message}; this causes
277@acronym{ASCII} quote characters to be output unchanged. 277@acronym{ASCII} quote characters to be output unchanged.
278 278
279In batch mode, the message is printed to the standard error stream, 279In batch mode, the message is printed to the standard error stream,
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi
index e1e98124e08..74dc6dac9cb 100644
--- a/doc/lispref/help.texi
+++ b/doc/lispref/help.texi
@@ -359,11 +359,11 @@ should use for single quotes in the wording of help and messages. If
359the variable's value is @code{curve}, the style is @t{‘like this’} 359the variable's value is @code{curve}, the style is @t{‘like this’}
360with curved single quotes. If the value is @code{straight}, the style 360with curved single quotes. If the value is @code{straight}, the style
361is @t{'like this'} with straight apostrophes. If the value is 361is @t{'like this'} with straight apostrophes. If the value is
362@code{nil} or @code{grave}, quotes are not translated and the style is 362@code{grave}, quotes are not translated and the style is @t{`like
363@t{`like this'} with grave accent and apostrophe, the standard style 363this'} with grave accent and apostrophe, the standard style before
364before Emacs version 25. The default value @code{t} acts like 364Emacs version 25. The default value @code{nil} acts like @code{curve}
365@code{curve} if curved single quotes seem to be displayable, and like 365if curved single quotes seem to be displayable, and like @code{grave}
366@code{nil} otherwise. 366otherwise.
367 367
368This option is useful on platforms that have problems with curved 368This option is useful on platforms that have problems with curved
369quotes. You can customize it freely according to your personal 369quotes. You can customize it freely according to your personal
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index 117a373a190..10385e05501 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -836,10 +836,10 @@ this'} typically generates curved quotes @t{‘like this’}. In
836contrast, a format that quotes with only apostrophes @t{'like this'} 836contrast, a format that quotes with only apostrophes @t{'like this'}
837typically generates two closing curved quotes @t{’like this’}, an 837typically generates two closing curved quotes @t{’like this’}, an
838unusual style in English. One way around such problems is to bind 838unusual style in English. One way around such problems is to bind
839@code{text-quoting-style} to @code{nil} around calls to 839@code{text-quoting-style} to the symbol @code{grave} around calls to
840@code{format-message}; this causes the @acronym{ASCII} quoting 840@code{format-message}; this causes @acronym{ASCII} quoting characters
841characters to be output unchanged. @xref{Keys in Documentation}, for 841to be output unchanged. @xref{Keys in Documentation}, for how the
842how the @code{text-quoting-style} variable affects generated quotes. 842@code{text-quoting-style} variable affects generated quotes.
843@end defun 843@end defun
844 844
845@cindex @samp{%} in format 845@cindex @samp{%} in format