diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-15 08:46:48 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-09-15 08:48:44 -0700 |
commit | ef7dbdf5873bf0a1f3f0e64e5d019e74d5b15b9e (patch) | |
tree | 5b1d35e609ce4481816662709ac677db1468495b /doc/emacs/mule.texi | |
parent | c051487fcf379febf4ce5b38de7017609c84a106 (diff) | |
download | emacs-ef7dbdf5873bf0a1f3f0e64e5d019e74d5b15b9e.tar.gz |
Quote less in manuals
The manuals often used quotes ``...'' when it is better to use @dfn or
@code or capitalized words or no quoting at all. For example, there is
no need for the `` and '' in “if a variable has one effect for
@code{nil} values and another effect for ``non-@code{nil}'' values”.
Reword the Emacs, Lisp intro, and Lisp reference manuals to eliminate
unnecessary quoting like this, and to use @dfn etc. instead when called
for (Bug#21472).
Diffstat (limited to 'doc/emacs/mule.texi')
-rw-r--r-- | doc/emacs/mule.texi | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/emacs/mule.texi b/doc/emacs/mule.texi index 477f24e56c0..88bbccd5b11 100644 --- a/doc/emacs/mule.texi +++ b/doc/emacs/mule.texi @@ -172,9 +172,9 @@ system encodes the character safely and with a single byte one byte, Emacs shows @samp{file ...}. As a special case, if the character lies in the range 128 (0200 -octal) through 159 (0237 octal), it stands for a ``raw'' byte that +octal) through 159 (0237 octal), it stands for a raw byte that does not correspond to any specific displayable character. Such a -``character'' lies within the @code{eight-bit-control} character set, +character lies within the @code{eight-bit-control} character set, and is displayed as an escaped octal character code. In this case, @kbd{C-x =} shows @samp{part of display ...} instead of @samp{file}. @@ -642,7 +642,7 @@ automatically. For example: @end lisp @noindent -This automatically activates the input method ``german-prefix'' in +This automatically activates the input method @code{german-prefix} in Text mode. @findex quail-set-keyboard-layout @@ -696,8 +696,8 @@ system; for example, to visit a file encoded in codepage 850, type In addition to converting various representations of non-@acronym{ASCII} characters, a coding system can perform end-of-line conversion. Emacs handles three different conventions for how to separate lines in a file: -newline (``unix''), carriage-return linefeed (``dos''), and just -carriage-return (``mac''). +newline (Unix), carriage-return linefeed (DOS), and just +carriage-return (Mac). @table @kbd @item C-h C @var{coding} @key{RET} @@ -1647,7 +1647,7 @@ so far. @cindex 8-bit display Normally non-ISO-8859 characters (decimal codes between 128 and 159 inclusive) are displayed as octal escapes. You can change this for -non-standard ``extended'' versions of ISO-8859 character sets by using the +non-standard extended versions of ISO-8859 character sets by using the function @code{standard-display-8bit} in the @code{disp-table} library. There are two ways to input single-byte non-@acronym{ASCII} @@ -1681,7 +1681,7 @@ characters present directly on the keyboard or using @key{Compose} or @cindex compose character @cindex dead character @item -You can use the key @kbd{C-x 8} as a ``compose character'' prefix for +You can use the key @kbd{C-x 8} as a compose-character prefix for entry of non-@acronym{ASCII} Latin-1 and a few other printing characters. @kbd{C-x 8} is good for insertion (in the minibuffer as well as other buffers), for searching, and in any other context where @@ -1691,7 +1691,7 @@ a key sequence is allowed. library is loaded, the @key{Alt} modifier key, if the keyboard has one, serves the same purpose as @kbd{C-x 8}: use @key{Alt} together with an accent character to modify the following letter. In addition, -if the keyboard has keys for the Latin-1 ``dead accent characters'', +if the keyboard has keys for the Latin-1 dead accent characters, they too are defined to compose with the following character, once @code{iso-transl} is loaded. @@ -1709,13 +1709,13 @@ addition to some charsets of its own (such as @code{emacs}, @code{unicode-bmp}, and @code{eight-bit}). All supported characters belong to one or more charsets. - Emacs normally ``does the right thing'' with respect to charsets, so + Emacs normally does the right thing with respect to charsets, so that you don't have to worry about them. However, it is sometimes helpful to know some of the underlying details about charsets. One example is font selection (@pxref{Fonts}). Each language -environment (@pxref{Language Environments}) defines a ``priority -list'' for the various charsets. When searching for a font, Emacs +environment (@pxref{Language Environments}) defines a priority +list for the various charsets. When searching for a font, Emacs initially attempts to find one that can display the highest-priority charsets. For instance, in the Japanese language environment, the charset @code{japanese-jisx0208} has the highest priority, so Emacs |