concept-characters.tex 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. % -*- Mode: TeX -*-
  2. \beginsubSection{Introduction to Characters}
  3. \DefineSection{IntroToChars}
  4. A \newterm{character} is an \term{object} that represents a unitary token
  5. (\eg a letter, a special symbol, or a ``control character'')
  6. in an aggregate quantity of text
  7. (\eg a \term{string} or a text \term{stream}).
  8. \issue{CHARACTER-PROPOSAL:2-6-1}
  9. \clisp\ allows an implementation to provide support
  10. for international language \term{characters} as well
  11. as \term{characters} used in specialized arenas (\eg mathematics).
  12. \endissue{CHARACTER-PROPOSAL:2-6-1}
  13. The following figures contain lists of \term{defined names} applicable to
  14. \term{characters}.
  15. \Thenextfigure\ lists some \term{defined names} relating to
  16. \term{character} \term{attributes} and \term{character} \term{predicates}.
  17. \displaythree{Character defined names -- 1}{
  18. alpha-char-p&char-not-equal&char>\cr
  19. alphanumericp&char-not-greaterp&char>=\cr
  20. both-case-p&char-not-lessp&digit-char-p\cr
  21. char-code-limit&char/=&graphic-char-p\cr
  22. char-equal&char<&lower-case-p\cr
  23. char-greaterp&char<=&standard-char-p\cr
  24. char-lessp&char=&upper-case-p\cr
  25. }
  26. \Thenextfigure\ lists some \term{character} construction and conversion \term{defined names}.
  27. \displaythree{Character defined names -- 2}{
  28. char-code&char-name&code-char\cr
  29. char-downcase&char-upcase&digit-char\cr
  30. char-int&character&name-char\cr
  31. }
  32. \endsubSection%{Introduction to Characters}
  33. \beginsubSection{Introduction to Scripts and Repertoires}
  34. \beginsubsubsection{Character Scripts}
  35. \DefineSection{CharScripts}
  36. A \term{script} is one of possibly several sets that form an \term{exhaustive partition}
  37. of the type \typeref{character}.
  38. The number of such sets and boundaries between them is \term{implementation-defined}.
  39. \clisp\ does not require these sets to be \term{types}, but an \term{implementation}
  40. is permitted to define such \term{types} as an extension. Since no \term{character}
  41. from one \term{script} can ever be a member of another \term{script}, it is generally
  42. more useful to speak about \term{character} \term{repertoires}.
  43. \issue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  44. % For some examples of \term{repertoires}, see the coded character standards
  45. % ISO 8859/1, ISO 8859/2, and ISO 6937/2.
  46. % Note, however, that although
  47. Although
  48. the term ``\term{script}'' is chosen for
  49. %naming
  50. definitional
  51. compatibility with ISO terminology, no \term{conforming implementation}
  52. is required to use any particular \term{scripts} standardized by ISO
  53. or by any other standards organization.
  54. \endissue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  55. \issue{CHARACTER-PROPOSAL:2-4-1}
  56. Whether and how the \term{script} or \term{scripts} used by any given
  57. \term{implementation} are named is \term{implementation-dependent}.
  58. \endissue{CHARACTER-PROPOSAL:2-4-1}
  59. \endsubsubsection%{Character Scripts}
  60. \beginsubsubsection{Character Repertoires}
  61. \DefineSection{CharRepertoires}
  62. \issue{CHARACTER-PROPOSAL:2-4-3}
  63. A \newterm{repertoire} is a \term{type specifier} for a \subtypeof{character}.
  64. \endissue{CHARACTER-PROPOSAL:2-4-3}
  65. This term is generally used when describing a collection of \term{characters}
  66. independent of their coding.
  67. \term{Characters} in \term{repertoires} are only identified
  68. by name,
  69. by \term{glyph}, or
  70. by character description.
  71. A \term{repertoire} can contain \term{characters} from several
  72. \term{scripts}, and a \term{character} can appear in more than
  73. one \term{repertoire}.
  74. \issue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  75. For some examples of \term{repertoires}, see the coded character standards
  76. ISO 8859/1, ISO 8859/2, and ISO 6937/2.
  77. Note, however, that although
  78. %Although
  79. the term ``\term{repertoire}'' is chosen for
  80. %naming
  81. definitional
  82. compatibility with ISO terminology, no \term{conforming implementation}
  83. is required to use \term{repertoires} standardized by ISO or any other
  84. standards organization.
  85. \endissue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  86. \endsubsubsection%{Character Repertoires}
  87. \endsubSection%{Introduction to Repertoires and Scripts}
  88. \beginsubSection{Character Attributes}
  89. \DefineSection{CharacterAttributes}
  90. %% 13.1.0 1
  91. \issue{CHARACTER-PROPOSAL:2-1-1}
  92. \term{Characters} have only one \term{standardized} \term{attribute}:
  93. a \term{code}. A \term{character}'s \term{code} is a non-negative \term{integer}.
  94. This \term{code} is composed from a character \term{script} and a character label
  95. in an \term{implementation-dependent} way. \Seefuns{char-code} and \funref{code-char}.
  96. \endissue{CHARACTER-PROPOSAL:2-1-1}
  97. \issue{CHARACTER-PROPOSAL:2-1-1}
  98. % %% 13.5.0 1
  99. % Remarks about the bits and font \term{attributes} removed. -kmp
  100. \endissue{CHARACTER-PROPOSAL:2-1-1}
  101. Additional, \term{implementation-defined} \term{attributes} of \term{characters}
  102. are also permitted
  103. so that, for example,
  104. two \term{characters} with the same \term{code} may differ
  105. in some other, \term{implementation-defined} way.
  106. For any \term{implementation-defined} \term{attribute}
  107. there is a distinguished value
  108. called the \newterm{null} value for that \term{attribute}.
  109. A \term{character} for which each \term{implementation-defined} \term{attribute}
  110. has the null value for that \term{attribute} is called a \term{simple} \term{character}.
  111. If the \term{implementation} has no \term{implementation-defined} \term{attributes},
  112. then all \term{characters} are \term{simple} \term{characters}.
  113. \endSubsection%{Character Attributes}
  114. \beginSubsection{Character Categories}
  115. There are several (overlapping) categories of \term{characters} that have no formally
  116. associated \term{type} but that are nevertheless useful to name.
  117. They include
  118. \term{graphic} \term{characters},
  119. \term{alphabetic}\meaning{1} \term{characters},
  120. \term{characters} with \term{case}
  121. (\term{uppercase} and \term{lowercase} \term{characters}),
  122. \term{numeric} \term{characters},
  123. \term{alphanumeric} \term{characters},
  124. and \term{digits} (in a given \term{radix}).
  125. For each \term{implementation-defined} \term{attribute} of a \term{character},
  126. the documentation for that \term{implementation} must specify whether
  127. \term{characters} that differ only in that \term{attribute} are permitted to differ
  128. in whether are not they are members of one of the aforementioned categories.
  129. Note that these terms are defined independently of any special syntax
  130. which might have been enabled in the \term{current readtable}.
  131. \beginsubsubsection{Graphic Characters}
  132. \DefineSection{GraphicChars}
  133. \issue{CHARACTER-PROPOSAL:2-1-1}
  134. \term{Characters} that are classified as \newterm{graphic}, or displayable, are each
  135. associated with a glyph, a visual representation of the \term{character}.
  136. \endissue{CHARACTER-PROPOSAL:2-1-1}
  137. %% 13.2.0 7
  138. A \term{graphic} \term{character} is one that has a standard textual
  139. representation as a single \term{glyph}, such as \f{A} or \f{*} or \f{=}.
  140. \term{Space}, which effectively has a blank \term{glyph}, is defined
  141. to be a \term{graphic}.
  142. Of the \term{standard characters},
  143. \term{newline} is \term{non-graphic}
  144. and all others are \term{graphic}; \seesection\StandardChars.
  145. \issue{CHARACTER-PROPOSAL:2-1-1}
  146. \term{Characters} that are not \term{graphic} are called \newterm{non-graphic}.
  147. \endissue{CHARACTER-PROPOSAL:2-1-1}
  148. \term{Non-graphic} \term{characters} are sometimes informally called
  149. ``formatting characters''
  150. or ``control characters.''
  151. \f{\#\\Backspace},
  152. \f{\#\\Tab},
  153. \f{\#\\Rubout},
  154. \f{\#\\Linefeed},
  155. \f{\#\\Return}, and
  156. \f{\#\\Page},
  157. if they are supported by the \term{implementation},
  158. are \term{non-graphic}.
  159. %!!! I'm not completely sure it was proper for whoever removed this to have done so.
  160. % -kmp 16-Oct-91
  161. %% 13.2.0 6
  162. %\term{Graphic characters} of font 0 are all of the same width when printed.
  163. %Every implementation of \clisp\ must provide some mode of operation
  164. %in which font 0 is a fixed-pitch font.
  165. %% 13.2.0 7
  166. %Any character with a non-zero bits \term{attribute} is \term{non-graphic}.
  167. \endsubsubsection%{Graphic Characters}
  168. \beginsubsubsection{Alphabetic Characters}
  169. %% 13.2.0 10
  170. The \term{alphabetic}\meaning{1} \term{characters} are
  171. a subset of the \term{graphic} \term{characters}.
  172. Of the \term{standard characters}, only these are the \term{alphabetic}\meaning{1} \term{characters}:
  173. \f{A B C D E F G H I J K L M N O P Q R S T U V W X Y Z}
  174. \f{a b c d e f g h i j k l m n o p q r s t u v w x y z}
  175. %% 13.2.0 16
  176. Any \term{implementation-defined} \term{character} that has \term{case}
  177. must be \term{alphabetic}\meaning{1}.
  178. For each \term{implementation-defined} \term{graphic} \term{character}
  179. that has no \term{case},
  180. it is \term{implementation-defined} whether
  181. that \term{character} is \term{alphabetic}\meaning{1}.
  182. \endsubsubsection%{Alphabetic Characters}
  183. \beginsubsubsection{Characters With Case}
  184. \DefineSection{CharactersWithCase}
  185. The \term{characters} with \term{case} are
  186. a subset of the \term{alphabetic}\meaning{1} \term{characters}.
  187. A \term{character} with \term{case} has the property of being either
  188. \term{uppercase} or \term{lowercase}.
  189. Every \term{character} with \term{case} is in one-to-one correspondence
  190. with some other \term{character} with the opposite \term{case}.
  191. %% 13.2.0 17
  192. \beginsubsubsubsection{Uppercase Characters}
  193. An uppercase \term{character} is one that has a corresponding
  194. \term{lowercase} \term{character} that is \term{different}
  195. (and can be obtained using \funref{char-downcase}).
  196. Of the \term{standard characters}, only these are \term{uppercase} \term{characters}:
  197. \f{A B C D E F G H I J K L M N O P Q R S T U V W X Y Z}
  198. \endsubsubsubsection%{Uppercase Characters}
  199. \beginsubsubsubsection{Lowercase Characters}
  200. A lowercase \term{character} is one that has a corresponding
  201. \term{uppercase} \term{character} that is \term{different}
  202. (and can be obtained using \funref{char-upcase}).
  203. Of the \term{standard characters}, only these are \term{lowercase} \term{characters}:
  204. \f{a b c d e f g h i j k l m n o p q r s t u v w x y z}
  205. \endsubsubsubsection%{Lowercase Characters}
  206. \beginsubsubsubsection{Corresponding Characters in the Other Case}
  207. The \term{uppercase} \term{standard characters} \f{A} through \f{Z} mentioned above
  208. respectively correspond to
  209. the \term{lowercase} \term{standard characters} \f{a} through \f{z} mentioned above.
  210. For example, the \term{uppercase} \term{character} \f{E}
  211. corresponds to the \term{lowercase} \term{character} \f{e}, and vice versa.
  212. \endsubsubsubsection%{Corresponding Characters in the Other Case}
  213. \beginsubsubsubsection{Case of Implementation-Defined Characters}
  214. An \term{implementation} may define that other \term{implementation-defined}
  215. \term{graphic} \term{characters} have \term{case}. Such definitions must always
  216. be done in pairs---one \term{uppercase} \term{character} in one-to-one
  217. \term{correspondence} with one \term{lowercase} \term{character}.
  218. \endsubsubsubsection%{Case of Implementation-Defined Characters}
  219. \endsubsubsection%{Characters With Case}
  220. \beginsubsubsection{Numeric Characters}
  221. The \term{numeric} \term{characters} are
  222. a subset of the \term{graphic} \term{characters}.
  223. Of the \term{standard characters}, only these are \term{numeric} \term{characters}:
  224. \f{0 1 2 3 4 5 6 7 8 9}
  225. For each \term{implementation-defined} \term{graphic} \term{character}
  226. that has no \term{case}, the \term{implementation} must define whether
  227. or not it is a \term{numeric} \term{character}.
  228. \endsubsubsection%{Numeric Characters}
  229. \beginsubsubsection{Alphanumeric Characters}
  230. The set of \term{alphanumeric} \term{characters} is the union of
  231. the set of \term{alphabetic}\meaning{1} \term{characters}
  232. and the set of \term{numeric} \term{characters}.
  233. \endsubsubsection%{Alphanumeric Characters}
  234. \beginsubsubsection{Digits in a Radix}
  235. \DefineSection{Digits}
  236. What qualifies as a \term{digit} depends on the \term{radix}
  237. (an \term{integer} between \f{2} and \f{36}, inclusive).
  238. The potential \term{digits} are:
  239. \f{0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z}
  240. Their respective weights are \f{0}, \f{1}, \f{2}, $\ldots$ \f{35}.
  241. In any given radix $n$, only the first $n$ potential \term{digits}
  242. are considered to be \term{digits}.
  243. For example,
  244. the digits in radix \f{2} are \f{0} and \f{1},
  245. the digits in radix \f{10} are \f{0} through \f{9}, and
  246. the digits in radix \f{16} are \f{0} through \f{F}.
  247. \term{Case} is not significant in \term{digits};
  248. for example, in radix \f{16}, both \f{F} and \f{f}
  249. are \term{digits} with weight \f{15}.
  250. %!!! KMP: I couldn't figure out whether there can be
  251. % implementation-defined digits.
  252. % It doesn't seem like a good idea because the obvious choices
  253. % are things like ``\~n'' which comes in the middle of the Spanish
  254. % alphabet, not at the end, and hence might confuse people about
  255. % the weight of ``o''. The answer to this has impact on
  256. % \funref{digit-char-p} and \funref{digit-weight}.}
  257. \endsubsubsection%{Digits in a Radix}
  258. \endsubSection%{Character Categories}
  259. \beginsubSection{Identity of Characters}
  260. %% 13.0.0 3
  261. %% 13.0.0 4
  262. Two \term{characters} that are \funref{eql}, \funref{char=}, or \funref{char-equal}
  263. are not necessarily \funref{eq}.
  264. \endsubSection%{Identity of Characters}
  265. \beginsubSection{Ordering of Characters}
  266. The total ordering on \term{characters} is guaranteed to have
  267. the following properties:
  268. \beginlist
  269. \issue{CHARACTER-PROPOSAL:2-1-1}
  270. %% 13.2.0 27
  271. \itemitem{\bull}
  272. If two \term{characters} have the same \term{implementation-defined} \term{attributes},
  273. then their ordering by \funref{char<} is consistent with the numerical
  274. ordering by the predicate \funref{<} on their code \term{attributes}.
  275. %% 13.2.0 28
  276. \itemitem{\bull} If two \term{characters} differ in any \term{attribute}, then they
  277. %are different.
  278. are not \funref{char=}.
  279. \endissue{CHARACTER-PROPOSAL:2-1-1}
  280. \reviewer{Barmar: I wonder if we should say that the ordering may be dependent on the
  281. \term{implementation-defined} \term{attributes}.}
  282. %% 13.2.0 29
  283. \itemitem{\bull}
  284. The total ordering is not necessarily the same as the total ordering
  285. on the \term{integers} produced by applying \funref{char-int} to the
  286. \term{characters}.
  287. %% 13.2.0 30
  288. \issue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  289. \itemitem{\bull}
  290. While \term{alphabetic}\meaning{1} \term{standard characters} of a given \term{case}
  291. must
  292. % be properly ordered,
  293. obey a partial ordering,
  294. they need not be contiguous; it is permissible for
  295. \term{uppercase} and \term{lowercase} \term{characters} to be interleaved.
  296. Thus \f{(char<= \#\\a x \#\\z)}
  297. is not a valid way of determining whether or not \f{x} is a
  298. \term{lowercase} \term{character}.
  299. \endissue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  300. \issue{CHARACTER-PROPOSAL:2-1-1}
  301. % Discussion omitted about how the ordering might depend on font information.
  302. \endissue{CHARACTER-PROPOSAL:2-1-1}
  303. \endlist
  304. \issue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  305. %% 13.2.0 25
  306. %% 13.2.0 26
  307. %The standard \term{alphanumeric} \term{characters} obey the following partial ordering:
  308. Of the \term{standard characters},
  309. those which are \term{alphanumeric} obey the following partial ordering:
  310. \endissue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  311. \code
  312. A<B<C<D<E<F<G<H<I<J<K<L<M<N<O<P<Q<R<S<T<U<V<W<X<Y<Z
  313. a<b<c<d<e<f<g<h<i<j<k<l<m<n<o<p<q<r<s<t<u<v<w<x<y<z
  314. 0<1<2<3<4<5<6<7<8<9
  315. either 9<A or Z<0
  316. either 9<a or z<0
  317. \endcode
  318. \issue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  319. This implies that, for \term{standard characters}, \term{alphabetic}\meaning{1}
  320. ordering holds within each \term{case} (\term{uppercase} and \term{lowercase}),
  321. and that the \term{numeric} \term{characters} as a group are not interleaved
  322. with \term{alphabetic} \term{characters}.
  323. However, the ordering or possible interleaving of \term{uppercase} \term{characters}
  324. and \term{lowercase} \term{characters} is \term{implementation-defined}.
  325. \endissue{LINDEN-COMMENTS-ON-CHARACTERS:X3J13-APR-92}
  326. \endsubSection%{Ordering of Characters}
  327. \beginsubsection{Character Names}
  328. \DefineSection{CharacterNames}
  329. The following \term{character} \term{names} must be present in all
  330. \term{conforming implementations}:
  331. %% 22.1.4 9
  332. \beginlist
  333. \itemitem{\f{Newline}}
  334. %% 2.2.2 3
  335. The character that represents the division between lines.
  336. An implementation must translate between \f{\#\\Newline},
  337. a single-character representation, and whatever external representation(s)
  338. may be used.
  339. %% 22.1.4 10
  340. \itemitem{\f{Space}}
  341. The space or blank character.
  342. \endlist
  343. The following names are \term{semi-standard};
  344. if an \term{implementation} supports them,
  345. they should be used for the described \term{characters} and no others.
  346. \beginlist
  347. \itemitem{\f{Rubout}}
  348. The rubout or delete character.
  349. %% 22.1.4 11
  350. \itemitem{\f{Page}}
  351. The form-feed or page-separator character.
  352. %% 22.1.4 12
  353. \itemitem{\f{Tab}}
  354. The tabulate character.
  355. %% 22.1.4 13
  356. \itemitem{\f{Backspace}}
  357. The backspace character.
  358. %% 22.1.4 14
  359. \itemitem{\f{Return}}
  360. The carriage return character.
  361. %% 22.1.4 15
  362. \itemitem{\f{Linefeed}}
  363. The line-feed character.
  364. \endlist
  365. In some \term{implementations},
  366. one or more of these \term{character} \term{names}
  367. might denote a \term{standard character};
  368. for example,
  369. \f{\#\\Linefeed} and \f{\#\\Newline} might be the \term{same} \term{character}
  370. in some \term{implementations}.
  371. \endsubsection%{Character Names}
  372. \beginsubSection{Treatment of Newline during Input and Output}
  373. \DefineSection{TreatmentOfNewline}
  374. %% 2.2.2 6
  375. When the character \f{\#\\Newline} is written to an output file,
  376. the implementation must take the appropriate action
  377. to produce a line division. This might involve writing out a
  378. record or translating \f{\#\\Newline} to a CR/LF sequence.
  379. When reading, a corresponding reverse transformation must take place.
  380. \endsubSection%{Treatment of Newline during Input and Output}
  381. \beginsubSection{Character Encodings}
  382. \DefineSection{CharEncodings}
  383. \issue{CHARACTER-PROPOSAL:2-1-1}
  384. % \editornote{KMP: This next paragraph is somewhat tentative.
  385. % Maybe a glossary term for this would be good if I decide it should stay.
  386. % Do reviewers think this concept is worth naming, and is ``encoding'' ok as a name?}%!!!
  387. A \term{character} is sometimes represented merely by its \term{code}, and sometimes
  388. by another \term{integer} value which is composed from the \term{code} and all
  389. \term{implementation-defined} \term{attributes}
  390. (in an \term{implementation-defined} way
  391. that might vary between \term{Lisp images} even in the same \term{implementation}).
  392. This \term{integer}, returned by the function \funref{char-int}, is called the
  393. character's ``encoding.''
  394. There is no corresponding function
  395. from a character's encoding back to the \term{character},
  396. since its primary intended uses include things like hashing where an inverse operation
  397. is not really called for.
  398. \endissue{CHARACTER-PROPOSAL:2-1-1}
  399. \endsubSection%{Character Encodings}
  400. \issue{CHARACTER-PROPOSAL:2-1-1}
  401. %% 2.2.5 1
  402. %Discussion of STRING-CHAR deleted.
  403. \endissue{CHARACTER-PROPOSAL:2-1-1}
  404. \beginsubsection{Documentation of Implementation-Defined Scripts}
  405. \DefineSection{ImplementationDefinedScripts}
  406. \issue{CHARACTER-PROPOSAL:2-4-2}
  407. An \term{implementation} must document the \term{character} \term{scripts}
  408. it supports. For each \term{character} \term{script} supported,
  409. the documentation must describe at least the following:
  410. \beginlist
  411. \itemitem{\bull}
  412. Character labels, glyphs, and descriptions.
  413. Character labels must be uniquely named using only Latin capital letters A--Z,
  414. hyphen (-), and digits 0--9.
  415. \itemitem{\bull}
  416. Reader canonicalization.
  417. Any mechanisms by which \funref{read} treats
  418. \term{different} characters as equivalent must be documented.
  419. \itemitem{\bull}
  420. The impact on \funref{char-upcase},
  421. \funref{char-downcase},
  422. and the case-sensitive \term{format directives}.
  423. In particular, for each \term{character} with \term{case},
  424. whether it is \term{uppercase} or \term{lowercase},
  425. and which \term{character} is its equivalent in the opposite case.
  426. \itemitem{\bull}
  427. The behavior of the case-insensitive \term{functions}
  428. \funref{char-equal}, \funref{char-not-equal},
  429. \funref{char-lessp}, \funref{char-greaterp},
  430. \funref{char-not-greaterp}, and \funref{char-not-lessp}.
  431. \itemitem{\bull}
  432. The behavior of any \term{character} \term{predicates};
  433. in particular, the effects of
  434. \funref{alpha-char-p},
  435. \funref{lower-case-p},
  436. \funref{upper-case-p},
  437. \funref{both-case-p},
  438. \funref{graphic-char-p},
  439. and
  440. \funref{alphanumericp}.
  441. \itemitem{\bull}
  442. The interaction with file I/O, in particular,
  443. the supported coded character sets (for example, ISO8859/1-1987)
  444. and external encoding schemes supported are documented.
  445. \endlist
  446. \endissue{CHARACTER-PROPOSAL:2-4-2}
  447. \endsubsection%{Documentation of Implementation-Defined Scripts}