aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2011-05-14 17:50:46 +0300
committerEli Zaretskii2011-05-14 17:50:46 +0300
commitbc039a3b7dee37fa86932a54af083b2c7ac37fd3 (patch)
tree3220ce8871b6e328ce013e31809d32e477114086
parente3934a8a48bd8769619fc11355100e96cf5f74a5 (diff)
downloademacs-bc039a3b7dee37fa86932a54af083b2c7ac37fd3.tar.gz
emacs-bc039a3b7dee37fa86932a54af083b2c7ac37fd3.zip
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 6a4fa03e741..593b54d088b 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,8 @@
12011-05-14 Eli Zaretskii <eliz@gnu.org> 12011-05-14 Eli Zaretskii <eliz@gnu.org>
2 2
3 * nonascii.texi (Character Properties): Fix inconsistencies with
4 implementation.
5
3 * text.texi (Special Properties): Move @defvar's out of the 6 * text.texi (Special Properties): Move @defvar's out of the
4 @table. (Bug#8652) 7 @table. (Bug#8652)
5 8
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
410characters whose @code{Numeric_Type} is @samp{Digit}. The value is an 410characters whose @code{Numeric_Type} is @samp{Digit}. The value is an
411integer number. 411integer number.
412 412
413@item digit 413@item digit-value
414Corresponds to the Unicode @code{Numeric_Value} property for 414Corresponds to the Unicode @code{Numeric_Value} property for
415characters whose @code{Numeric_Type} is @samp{Decimal}. The value is 415characters whose @code{Numeric_Type} is @samp{Decimal}. The value is
416an integer number. Examples of such characters include compatibility 416an integer number. Examples of such characters include compatibility
@@ -471,11 +471,11 @@ This function returns the value of @var{char}'s @var{propname} property.
471@end group 471@end group
472@group 472@group
473(get-char-code-property ?\u2155 'numeric-value) ; one fifth 473(get-char-code-property ?\u2155 'numeric-value) ; one fifth
474 @result{} 1/5 474 @result{} 0.2
475@end group 475@end group
476@group 476@group
477(get-char-code-property ?\u2163 'numeric-value) ; Roman IV 477(get-char-code-property ?\u2163 'numeric-value) ; Roman IV
478 @result{} \4 478 @result{} 4
479@end group 479@end group
480@end example 480@end example
481@end defun 481@end defun