Mercurial > hg > xemacs-beta
comparison src/casetab.c @ 4890:276e07b3cc93
minor comment fix
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-01-27 Ben Wing <ben@xemacs.org>
* casetab.c: Typo in comment.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 27 Jan 2010 05:58:38 -0600 |
parents | a98ca4640147 |
children | 6ef8256a020a |
comparison
equal
deleted
inserted
replaced
4889:1fbf8bffa545 | 4890:276e07b3cc93 |
---|---|
51 (4) `eqv' lists the "equivalence classes" defined by `canon'. Imagine | 51 (4) `eqv' lists the "equivalence classes" defined by `canon'. Imagine |
52 that all characters are divided into groups having the same `canon' | 52 that all characters are divided into groups having the same `canon' |
53 entry; these groups are called "equivalence classes" and `eqv' lists them | 53 entry; these groups are called "equivalence classes" and `eqv' lists them |
54 by linking the characters in each equivalence class together in a | 54 by linking the characters in each equivalence class together in a |
55 circular list. That is, to find out all all the members of a given char's | 55 circular list. That is, to find out all all the members of a given char's |
56 equivalence classe, you need something like the following code: | 56 equivalence class, you need something like the following code: |
57 | 57 |
58 (let* ((char ?i) | 58 (let* ((char ?i) |
59 (original-char char) | 59 (original-char char) |
60 (standard-case-eqv (case-table-eqv (standard-case-table)))) | 60 (standard-case-eqv (case-table-eqv (standard-case-table)))) |
61 (loop | 61 (loop |