aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1999-12-15 00:16:30 +0000
committerKenichi Handa1999-12-15 00:16:30 +0000
commit19481752625b2bfbc6442c701eb58750c03d1f4e (patch)
treec91381b6ff96399713900fce6a20631e35fcdd64 /src
parent0a16479ffe53ff94f987f658018330fedc6ab07c (diff)
downloademacs-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.h7
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));
1889extern void sweep_weak_hash_tables P_ ((void)); 1889extern void sweep_weak_hash_tables P_ ((void));
1890extern Lisp_Object Qstring_lessp; 1890extern Lisp_Object Qstring_lessp;
1891extern Lisp_Object Vfeatures; 1891extern Lisp_Object Vfeatures;
1892extern Lisp_Object QCtest, QCweakness, Qequal;
1892unsigned sxhash P_ ((Lisp_Object, int)); 1893unsigned sxhash P_ ((Lisp_Object, int));
1893Lisp_Object make_hash_table P_ ((Lisp_Object, Lisp_Object, Lisp_Object, 1894Lisp_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));
1896Lisp_Object copy_hash_table P_ ((struct Lisp_Hash_Table *)); 1897Lisp_Object copy_hash_table P_ ((struct Lisp_Hash_Table *));
1897int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *)); 1898int hash_lookup P_ ((struct Lisp_Hash_Table *, Lisp_Object, unsigned *));
1898void hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object, 1899int hash_put P_ ((struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object,
1899 unsigned)); 1900 unsigned));
1900void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object)); 1901void hash_remove P_ ((struct Lisp_Hash_Table *, Lisp_Object));
1901void hash_clear P_ ((struct Lisp_Hash_Table *)); 1902void hash_clear P_ ((struct Lisp_Hash_Table *));
1902void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int)); 1903void remove_hash_entry P_ ((struct Lisp_Hash_Table *, int));
@@ -2062,6 +2063,8 @@ extern void message_log_maybe_newline P_ ((void));
2062extern void update_echo_area P_ ((void)); 2063extern void update_echo_area P_ ((void));
2063extern void truncate_echo_area P_ ((int)); 2064extern void truncate_echo_area P_ ((int));
2064extern void redisplay P_ ((void)); 2065extern void redisplay P_ ((void));
2066extern int check_point_in_composition
2067 P_ ((struct buffer *, int, struct buffer *, int));
2065extern void redisplay_preserve_echo_area P_ ((void)); 2068extern void redisplay_preserve_echo_area P_ ((void));
2066extern void mark_window_display_accurate P_ ((Lisp_Object, int)); 2069extern void mark_window_display_accurate P_ ((Lisp_Object, int));
2067extern int invisible_p P_ ((Lisp_Object, Lisp_Object)); 2070extern int invisible_p P_ ((Lisp_Object, Lisp_Object));