summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2011-05-14 17:50:46 +0300
committerEli Zaretskii <eliz@gnu.org>2011-05-14 17:50:46 +0300
commitbc039a3b7dee37fa86932a54af083b2c7ac37fd3 (patch)
tree3220ce8871b6e328ce013e31809d32e477114086
parente3934a8a48bd8769619fc11355100e96cf5f74a5 (diff)
Fix minor errors in ELisp manual.
doc/lispref/nonascii.texi (Character Properties): Fix inconsistencies with implementation.
-rw-r--r--doc/lispref/ChangeLog3
-rw-r--r--doc/lispref/nonascii.texi6
2 files changed, 6 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 6a4fa03e74..593b54d088 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -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)
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi
index 6fcde61199..a3f25af471 100644
--- a/doc/lispref/nonascii.texi
+++ b/doc/lispref/nonascii.texi
@@ -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