aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2015-06-26 13:03:02 +0300
committerEli Zaretskii2015-06-26 13:03:02 +0300
commitbde61680abe71059b60a37868a804adf3d819678 (patch)
tree9de48d342388b5528e15dc72907a521787703d78
parentf14275633851b047e5aecfa6d12f160ee4c2f149 (diff)
downloademacs-bde61680abe71059b60a37868a804adf3d819678.tar.gz
emacs-bde61680abe71059b60a37868a804adf3d819678.zip
Minor corrections in ELisp manual
* doc/lispref/nonascii.texi (Character Properties): Correct inaccuracies in description of values of the Unicode properties.
-rw-r--r--doc/lispref/nonascii.texi35
1 files changed, 20 insertions, 15 deletions
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi
index 362c3a4dcbb..8781cd6d696 100644
--- a/doc/lispref/nonascii.texi
+++ b/doc/lispref/nonascii.texi
@@ -474,32 +474,36 @@ inside @samp{<..>} brackets, but the tag names in Emacs do not include
474the brackets; e.g., Unicode specifies @samp{<small>} where Emacs uses 474the brackets; e.g., Unicode specifies @samp{<small>} where Emacs uses
475@samp{small}. }; the other elements are characters that give the 475@samp{small}. }; the other elements are characters that give the
476compatibility decomposition sequence of this character. For 476compatibility decomposition sequence of this character. For
477unassigned codepoints, the value is the character itself. 477characters that don't have decomposition sequences, and for unassigned
478codepoints, the value is a list with a single member, the character
479itself.
478 480
479@item decimal-digit-value 481@item decimal-digit-value
480Corresponds to the Unicode @code{Numeric_Value} property for 482Corresponds to the Unicode @code{Numeric_Value} property for
481characters whose @code{Numeric_Type} is @samp{Decimal}. The value is 483characters whose @code{Numeric_Type} is @samp{Decimal}. The value is
482an integer. For unassigned codepoints, the value is 484an integer, or @code{nil} if the character has no decimal digit value.
483@code{nil}, which means @acronym{NaN}, or ``not-a-number''. 485For unassigned codepoints, the value is @code{nil}, which means
486@acronym{NaN}, or ``not-a-number''.
484 487
485@item digit-value 488@item digit-value
486Corresponds to the Unicode @code{Numeric_Value} property for 489Corresponds to the Unicode @code{Numeric_Value} property for
487characters whose @code{Numeric_Type} is @samp{Digit}. The value is an 490characters whose @code{Numeric_Type} is @samp{Digit}. The value is an
488integer. Examples of such characters include compatibility 491integer. Examples of such characters include compatibility subscript
489subscript and superscript digits, for which the value is the 492and superscript digits, for which the value is the corresponding
490corresponding number. For unassigned codepoints, the value is 493number. For characters that don't have any numeric value, and for
491@code{nil}, which means @acronym{NaN}. 494unassigned codepoints, the value is @code{nil}, which means
495@acronym{NaN}.
492 496
493@item numeric-value 497@item numeric-value
494Corresponds to the Unicode @code{Numeric_Value} property for 498Corresponds to the Unicode @code{Numeric_Value} property for
495characters whose @code{Numeric_Type} is @samp{Numeric}. The value of 499characters whose @code{Numeric_Type} is @samp{Numeric}. The value of
496this property is a number. Examples of 500this property is a number. Examples of characters that have this
497characters that have this property include fractions, subscripts, 501property include fractions, subscripts, superscripts, Roman numerals,
498superscripts, Roman numerals, currency numerators, and encircled 502currency numerators, and encircled numbers. For example, the value of
499numbers. For example, the value of this property for the character 503this property for the character @code{U+2155} (@sc{vulgar fraction one
500@code{U+2155} (@sc{vulgar fraction one fifth}) is @code{0.2}. For 504fifth}) is @code{0.2}. For characters that don't have any numeric
501unassigned codepoints, the value is @code{nil}, which means 505value, and for unassigned codepoints, the value is @code{nil}, which
502@acronym{NaN}. 506means @acronym{NaN}.
503 507
504@cindex mirroring of characters 508@cindex mirroring of characters
505@item mirrored 509@item mirrored
@@ -545,7 +549,8 @@ value for this property, the value is @code{nil}.
545 549
546@item iso-10646-comment 550@item iso-10646-comment
547Corresponds to the Unicode @code{ISO_Comment} property. The value is 551Corresponds to the Unicode @code{ISO_Comment} property. The value is
548a string. For unassigned codepoints, the value is an empty string. 552either a string or @code{nil}. For unassigned codepoints, the value
553is @code{nil}.
549 554
550@item uppercase 555@item uppercase
551Corresponds to the Unicode @code{Simple_Uppercase_Mapping} property. 556Corresponds to the Unicode @code{Simple_Uppercase_Mapping} property.