aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorMiles Bader2007-07-15 02:05:20 +0000
committerMiles Bader2007-07-15 02:05:20 +0000
commit7eb1e4534e88a32fe5e549e630fdabf3e062be2b (patch)
tree34fc72789f1cfbfeb067cf507f8871c322df300a /src/lisp.h
parent76d11d2cf9623e9f4c38e8239c4444ffc1fae485 (diff)
parent6f8a87c027ebd6f9cfdac5c0df97d651227bec62 (diff)
downloademacs-7eb1e4534e88a32fe5e549e630fdabf3e062be2b.tar.gz
emacs-7eb1e4534e88a32fe5e549e630fdabf3e062be2b.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 803-813) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 51-58) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 233-236) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-25
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 7bf59d0f55a..b835c531e5e 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -56,7 +56,7 @@ Boston, MA 02110-1301, USA. */
56#ifdef GC_CHECK_CONS_LIST 56#ifdef GC_CHECK_CONS_LIST
57#define CHECK_CONS_LIST() check_cons_list() 57#define CHECK_CONS_LIST() check_cons_list()
58#else 58#else
59#define CHECK_CONS_LIST() 0 59#define CHECK_CONS_LIST() ((void)0)
60#endif 60#endif
61 61
62/* These are default choices for the types to use. */ 62/* These are default choices for the types to use. */
@@ -1041,16 +1041,16 @@ struct Lisp_Hash_Table
1041 hash table size to reduce collisions. */ 1041 hash table size to reduce collisions. */
1042 Lisp_Object index; 1042 Lisp_Object index;
1043 1043
1044 /* Next weak hash table if this is a weak hash table. The head
1045 of the list is in Vweak_hash_tables. */
1046 Lisp_Object next_weak;
1047
1048 /* User-supplied hash function, or nil. */ 1044 /* User-supplied hash function, or nil. */
1049 Lisp_Object user_hash_function; 1045 Lisp_Object user_hash_function;
1050 1046
1051 /* User-supplied key comparison function, or nil. */ 1047 /* User-supplied key comparison function, or nil. */
1052 Lisp_Object user_cmp_function; 1048 Lisp_Object user_cmp_function;
1053 1049
1050 /* Next weak hash table if this is a weak hash table. The head
1051 of the list is in weak_hash_tables. */
1052 struct Lisp_Hash_Table *next_weak;
1053
1054 /* C function to compare two keys. */ 1054 /* C function to compare two keys. */
1055 int (* cmpfn) P_ ((struct Lisp_Hash_Table *, Lisp_Object, 1055 int (* cmpfn) P_ ((struct Lisp_Hash_Table *, Lisp_Object,
1056 unsigned, Lisp_Object, unsigned)); 1056 unsigned, Lisp_Object, unsigned));
@@ -2428,7 +2428,7 @@ EXFUN (Fstring_lessp, 2);
2428extern int char_table_translate P_ ((Lisp_Object, int)); 2428extern int char_table_translate P_ ((Lisp_Object, int));
2429extern void map_char_table P_ ((void (*) (Lisp_Object, Lisp_Object, Lisp_Object), 2429extern void map_char_table P_ ((void (*) (Lisp_Object, Lisp_Object, Lisp_Object),
2430 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, int, 2430 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, int,
2431 Lisp_Object *)); 2431 int *));
2432extern Lisp_Object char_table_ref_and_index P_ ((Lisp_Object, int, int *)); 2432extern Lisp_Object char_table_ref_and_index P_ ((Lisp_Object, int, int *));
2433extern void syms_of_fns P_ ((void)); 2433extern void syms_of_fns P_ ((void));
2434 2434
@@ -3255,6 +3255,7 @@ EXFUN (Fx_file_dialog, 5);
3255#endif 3255#endif
3256 3256
3257/* Defined in xfaces.c */ 3257/* Defined in xfaces.c */
3258EXFUN (Fclear_face_cache, 1);
3258extern void syms_of_xfaces P_ ((void)); 3259extern void syms_of_xfaces P_ ((void));
3259 3260
3260#ifndef HAVE_GETLOADAVG 3261#ifndef HAVE_GETLOADAVG
@@ -3270,6 +3271,7 @@ extern void syms_of_xfns P_ ((void));
3270extern void syms_of_xsmfns P_ ((void)); 3271extern void syms_of_xsmfns P_ ((void));
3271 3272
3272/* Defined in xselect.c */ 3273/* Defined in xselect.c */
3274EXFUN (Fx_send_client_event, 6);
3273extern void syms_of_xselect P_ ((void)); 3275extern void syms_of_xselect P_ ((void));
3274 3276
3275/* Defined in xterm.c */ 3277/* Defined in xterm.c */