]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fontsets): Fix texinfo usage.
authorKenichi Handa <handa@m17n.org>
Sun, 26 Oct 2003 23:28:04 +0000 (23:28 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 26 Oct 2003 23:28:04 +0000 (23:28 +0000)
lispref/ChangeLog
lispref/display.texi

index 7818775f669bb3beb0f2d4f4b2df352bbf3f3ce3..df4179e8666ec45d53501a3ed3f8c98f1d4553d8 100644 (file)
@@ -1,3 +1,7 @@
+2003-10-27  Kenichi Handa  <handa@m17n.org>
+
+       * display.texi (Fontsets): Fix texinfo usage.
+
 2003-10-25  Kenichi Handa  <handa@m17n.org>
 
        * display.texi (Fontsets): Add description of the function
index 48628f6b5b7be68f1f168ab0e1871aff294511ea..a478a1cb9068e5ab5632ece52acf417f326d22c9 100644 (file)
@@ -2463,26 +2463,25 @@ field.
 This function modifies the existing fontset @var{name} to
 use the font name @var{fontname} for the character @var{character}.
 
-If @var{name} is nil, this function modifies the default
-fontset of which short name is "fontset-default".
+If @var{name} is @code{nil}, this function modifies the default
+fontset of which short name is @samp{fontset-default}.
 
-@var{character} may be a cons; @samp{(@var{from}
-. @var{to})}, where @var{from} and @var{to} are non-generic
-characters.  In that case, use @var{fontname} for all
-characters in the range @var{from} and @var{to} (inclusive).
+@var{character} may be a cons; @code{(@var{from} . @var{to})}, where
+@var{from} and @var{to} are non-generic characters.  In that case, use
+@var{fontname} for all characters in the range @var{from} and @var{to}
+(inclusive).
 
 @var{character} may be a charset.  In that case, use
 @var{fontname} for all character in the charsets.
 
-@var{fontname} may be a cons; @samp{(@var{family}
-. @var{registry})}, where @var{family} is a family name of a
-font (possibly including a foundry name at the head),
-@var{registry} is a registry name of a font (possibly
-including an encoding name at the tail).
+@var{fontname} may be a cons; @code{(@var{family} . @var{registry})},
+where @var{family} is a family name of a font (possibly including a
+foundry name at the head), @var{registry} is a registry name of a font
+(possibly including an encoding name at the tail).
 
-For instance, this changes the default fontset to use a font
-of which registry name is "JISX0208.1983" for all characters
-belonging to the charset `japanese-jisx0208'.
+For instance, this changes the default fontset to use a font of which
+registry name is @samp{JISX0208.1983} for all characters belonging to
+the charset @code{japanese-jisx0208}.
 
 @example
 (set-fontset-font nil 'japanese-jisx0208 '(nil . "JISX0208.1983"))