diff options
| author | Stefan Monnier | 2002-07-09 23:00:56 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-07-09 23:00:56 +0000 |
| commit | f61cd322b24ee1df6c08ae6c4ca66e5120348958 (patch) | |
| tree | e79e2a0b8a645a0c66aad3e5335346d11cd8659c /src | |
| parent | b373b41907150c91992d02976dfe32a7b4461800 (diff) | |
| download | emacs-f61cd322b24ee1df6c08ae6c4ca66e5120348958.tar.gz emacs-f61cd322b24ee1df6c08ae6c4ca66e5120348958.zip | |
(HASH_VALUE): Remove (it's in lisp.h now).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ccl.c | 2 |
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 @@ | |||
| 1 | 2002-07-09 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * ccl.c (HASH_VALUE): Remove (it's in lisp.h now). | ||
| 4 | |||
| 1 | 2002-07-09 Kenichi Handa <handa@etl.go.jp> | 5 | 2002-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. |
| @@ -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. |