]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix minor errors in ELisp manual.
authorEli Zaretskii <eliz@gnu.org>
Sat, 14 May 2011 14:50:46 +0000 (17:50 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 14 May 2011 14:50:46 +0000 (17:50 +0300)
 doc/lispref/nonascii.texi (Character Properties): Fix inconsistencies with
 implementation.

doc/lispref/ChangeLog
doc/lispref/nonascii.texi

index 6a4fa03e74188935181ff567f0b5ea5ae7d81bbb..593b54d088ba4515679ef6d13adea73912a3f09e 100644 (file)
@@ -1,5 +1,8 @@
 2011-05-14  Eli Zaretskii  <eliz@gnu.org>
 
+       * nonascii.texi (Character Properties): Fix inconsistencies with
+       implementation.
+
        * text.texi (Special Properties): Move @defvar's out of the
        @table.  (Bug#8652)
 
index 6fcde61199867901987f19b60dc88dae0d2b8dc3..a3f25af47194688e296c2ff5f9dadba2b33d8680 100644 (file)
@@ -410,7 +410,7 @@ Corresponds to the Unicode @code{Numeric_Value} property for
 characters whose @code{Numeric_Type} is @samp{Digit}.  The value is an
 integer number.
 
-@item digit
+@item digit-value
 Corresponds to the Unicode @code{Numeric_Value} property for
 characters whose @code{Numeric_Type} is @samp{Decimal}.  The value is
 an integer number.  Examples of such characters include compatibility
@@ -471,11 +471,11 @@ This function returns the value of @var{char}'s @var{propname} property.
 @end group
 @group
 (get-char-code-property ?\u2155 'numeric-value) ; one fifth
-     @result{} 1/5
+     @result{} 0.2
 @end group
 @group
 (get-char-code-property ?\u2163 'numeric-value) ; Roman IV
-     @result{} \4
+     @result{} 4
 @end group
 @end example
 @end defun