aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/ccl.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d3f98fa1139..2577037532b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12002-07-09 Stefan Monnier <monnier@cs.yale.edu>
2
3 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
4
12002-07-09 Kenichi Handa <handa@etl.go.jp> 52002-07-09 Kenichi Handa <handa@etl.go.jp>
2 6
3 * callproc.c (Fcall_process): Fix previous change. 7 * callproc.c (Fcall_process): Fix previous change.
diff --git a/src/ccl.c b/src/ccl.c
index 839aedfcde2..18fcad40328 100644
--- a/src/ccl.c
+++ b/src/ccl.c
@@ -71,8 +71,6 @@ Lisp_Object Vtranslation_hash_table_vector;
71/* Return a hash table of id number ID. */ 71/* Return a hash table of id number ID. */
72#define GET_HASH_TABLE(id) \ 72#define GET_HASH_TABLE(id) \
73 (XHASH_TABLE (XCDR(XVECTOR(Vtranslation_hash_table_vector)->contents[(id)]))) 73 (XHASH_TABLE (XCDR(XVECTOR(Vtranslation_hash_table_vector)->contents[(id)])))
74/* Copied from fns.c. */
75#define HASH_VALUE(H, IDX) AREF ((H)->key_and_value, 2 * (IDX) + 1)
76 74
77/* CCL (Code Conversion Language) is a simple language which has 75/* CCL (Code Conversion Language) is a simple language which has
78 operations on one input buffer, one output buffer, and 7 registers. 76 operations on one input buffer, one output buffer, and 7 registers.