Mercurial > hg > xemacs-beta
comparison man/cl.texi @ 185:3d6bfa290dbd r20-3b19
Import from CVS: tag r20-3b19
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:55:28 +0200 |
parents | e121b013d1f0 |
children | 65c19d2020f7 |
comparison
equal
deleted
inserted
replaced
184:bcd2674570bf | 185:3d6bfa290dbd |
---|---|
816 @item | 816 @item |
817 The type symbols @code{character} and @code{string-char} match | 817 The type symbols @code{character} and @code{string-char} match |
818 characters. In Emacs-19 and XEmacs-19, characters are the same thing as | 818 characters. In Emacs-19 and XEmacs-19, characters are the same thing as |
819 integers in the range 0-255. In XEmacs-20, where characters are a | 819 integers in the range 0-255. In XEmacs-20, where characters are a |
820 first-class data type, this checks for actual characters, and | 820 first-class data type, this checks for actual characters, and |
821 +@code{(typep 8bit-integer 'character)} will return @code{nil}. | 821 @code{(typep @var{8bit-integer} 'character)} will return @code{nil}. |
822 | 822 |
823 @item | 823 @item |
824 The type symbol @code{float} uses the @code{floatp-safe} predicate | 824 The type symbol @code{float} uses the @code{floatp-safe} predicate |
825 defined by this package rather than @code{floatp}, so it will work | 825 defined by this package rather than @code{floatp}, so it will work |
826 correctly even in Emacs versions without floating-point support. | 826 correctly even in Emacs versions without floating-point support. |