diff options
| author | Kenichi Handa | 1999-12-15 00:16:30 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-12-15 00:16:30 +0000 |
| commit | 19481752625b2bfbc6442c701eb58750c03d1f4e (patch) | |
| tree | c91381b6ff96399713900fce6a20631e35fcdd64 /src | |
| parent | 0a16479ffe53ff94f987f658018330fedc6ab07c (diff) | |
| download | emacs-19481752625b2bfbc6442c701eb58750c03d1f4e.tar.gz emacs-19481752625b2bfbc6442c701eb58750c03d1f4e.zip | |
(QCtest, QCweakness, Qequal): Extern them.
(hash_put): Adjusted for the change of the definition.
(signal_after_change): Likewise.
(check_point_in_composition): Extern it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h index 31c8c364aa9..f4ee67f9530 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1889,14 +1889,15 @@ extern void syms_of_syntax P_ ((void)); | |||
| 1889 | extern void sweep_weak_hash_tables P_ ((void)); | 1889 | extern void sweep_weak_hash_tables P_ ((void)); |
| 1890 | extern Lisp_Object Qstring_lessp; | 1890 | extern Lisp_Object Qstring_lessp; |
| 1891 | extern Lisp_Object Vfeatures; | 1891 | extern Lisp_Object Vfeatures; |
| 1892 | extern Lisp_Object QCtest, QCweakness, Qequal; | ||
| 1892 | unsigned sxhash P_ ((Lisp_Object, int)); | 1893 | unsigned sxhash P_ ((Lisp_Object, int)); |
| 1893 | Lisp_Object make_hash_table P_ ((Lisp_Object, Lisp_Object, Lisp_Object, | 1894 | Lisp_Object make_hash_table P_ ((Lisp_Object, Lisp_Object, Lisp_Object, |
| 1894 | Lisp_Object, Lisp_Object, Lisp_Object, | 1895 | Lisp_Object, Lisp_Object, Lisp_Object, |
| 1895 | Lisp_Object)); | 1896 | Lisp_Object)); |
| 1896 | Lisp_Object copy_hash_table P_ ((struct Lisp_Hash_Table *)); | 1897 | Lisp_Object copy_hash_table P_ ((struct Lisp_Hash_Table *)); |
| 1897 | int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *)); | 1898 | int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *)); |
| 1898 | void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, | 1899 | int hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, |
| 1899 | unsigned)); | 1900 | unsigned)); |
| 1900 | void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object)); | 1901 | void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object)); |
| 1901 | void hash_clear P_ ((struct Lisp_Hash_Table *)); | 1902 | void hash_clear P_ ((struct Lisp_Hash_Table *)); |
| 1902 | void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); | 1903 | void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); |
| @@ -2062,6 +2063,8 @@ extern void message_log_maybe_newline P_ ((void)); | |||
| 2062 | extern void update_echo_area P_ ((void)); | 2063 | extern void update_echo_area P_ ((void)); |
| 2063 | extern void truncate_echo_area P_ ((int)); | 2064 | extern void truncate_echo_area P_ ((int)); |
| 2064 | extern void redisplay P_ ((void)); | 2065 | extern void redisplay P_ ((void)); |
| 2066 | extern int check_point_in_composition | ||
| 2067 | P_ ((struct buffer *, int, struct buffer *, int)); | ||
| 2065 | extern void redisplay_preserve_echo_area P_ ((void)); | 2068 | extern void redisplay_preserve_echo_area P_ ((void)); |
| 2066 | extern void mark_window_display_accurate P_ ((Lisp_Object, int)); | 2069 | extern void mark_window_display_accurate P_ ((Lisp_Object, int)); |
| 2067 | extern int invisible_p P_ ((Lisp_Object, Lisp_Object)); | 2070 | extern int invisible_p P_ ((Lisp_Object, Lisp_Object)); |