aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-10-23 17:26:53 +0000
committerRichard M. Stallman2005-10-23 17:26:53 +0000
commitf6a18aa2a406fedda37c34628c25d01b4e88834d (patch)
treeac085757eb7de3855342ad8385aa17e08c4c8f88 /src
parentb502a9a160600bbf6c118751fd6ff561c27a8119 (diff)
downloademacs-f6a18aa2a406fedda37c34628c25d01b4e88834d.tar.gz
emacs-f6a18aa2a406fedda37c34628c25d01b4e88834d.zip
(Fset_case_table): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/casetab.c5
2 files changed, 11 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 213e7762485..f81cd02a97a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12005-10-23 Richard M. Stallman <rms@gnu.org>
2
3 * casetab.c (Fset_case_table): Doc fix.
4
5 * lread.c (build_load_history): Replace STREAM arg with ENTIRE.
6 (readevalloop): Compute ENTIRE properly.
7 (syms_of_lread) <load-history>: Doc fix.
8
12005-10-21 Richard M. Stallman <rms@gnu.org> 92005-10-21 Richard M. Stallman <rms@gnu.org>
2 10
3 * lread.c (Fload): Simplify gcpro structure. 11 * lread.c (Fload): Simplify gcpro structure.
diff --git a/src/casetab.c b/src/casetab.c
index 874bb7599f0..a1e8b5a68fb 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -97,8 +97,9 @@ A case table is a char-table which maps characters
97to their lower-case equivalents. It also has three \"extra\" slots 97to their lower-case equivalents. It also has three \"extra\" slots
98which may be additional char-tables or nil. 98which may be additional char-tables or nil.
99These slots are called UPCASE, CANONICALIZE and EQUIVALENCES. 99These slots are called UPCASE, CANONICALIZE and EQUIVALENCES.
100UPCASE maps each character to its upper-case equivalent; 100UPCASE maps each non-upper-case character to its upper-case equivalent.
101 if lower and upper case characters are in 1-1 correspondence, 101 (The value in UPCASE for an upper-case character is never used.)
102 If lower and upper case characters are in 1-1 correspondence,
102 you may use nil and the upcase table will be deduced from DOWNCASE. 103 you may use nil and the upcase table will be deduced from DOWNCASE.
103CANONICALIZE maps each character to a canonical equivalent; 104CANONICALIZE maps each character to a canonical equivalent;
104 any two characters that are related by case-conversion have the same 105 any two characters that are related by case-conversion have the same