[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/composite.c
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] Changes to emacs/src/composite.c |
Date: |
Tue, 09 Jul 2002 19:02:27 -0400 |
Index: emacs/src/composite.c
diff -c emacs/src/composite.c:1.18 emacs/src/composite.c:1.19
*** emacs/src/composite.c:1.18 Fri Jun 14 12:28:58 2002
--- emacs/src/composite.c Tue Jul 9 19:02:26 2002
***************
*** 158,169 ****
#define CHAR_WIDTH(c) \
(SINGLE_BYTE_CHAR_P (c) ? 1 : CHARSET_WIDTH (CHAR_CHARSET (c)))
- /* The following macros for hash table are copied from fns.c. */
- /* Value is the key part of entry IDX in hash table H. */
- #define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))
- /* Value is the value part of entry IDX in hash table H. */
- #define HASH_VALUE(H, IDX) AREF ((H)->key_and_value, 2 * (IDX) + 1)
-
/* Return COMPOSITION-ID of a composition at buffer position
CHARPOS/BYTEPOS and length NCHARS. The `composition' property of
the sequence is PROP. STRING, if non-nil, is a string that
--- 158,163 ----
- [Emacs-diffs] Changes to emacs/src/composite.c,
Stefan Monnier <=