From: Eli Zaretskii Date: Sat, 14 May 2011 14:50:46 +0000 (+0300) Subject: Fix minor errors in ELisp manual. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~277 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc039a3b7dee37fa86932a54af083b2c7ac37fd3;p=emacs.git Fix minor errors in ELisp manual. doc/lispref/nonascii.texi (Character Properties): Fix inconsistencies with implementation. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 6a4fa03e741..593b54d088b 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,5 +1,8 @@ 2011-05-14 Eli Zaretskii + * 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 6fcde611998..a3f25af4719 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