# HG changeset patch # User Erik Naggum # Date 842982236 0 # Node ID e886bf705de07320ddc04f0b197a74139d5f7589 # Parent c7913b6ba8da86829b4d543af25dca88804edf5d Declare make_symbol (). diff -r c7913b6ba8da -r e886bf705de0 src/lisp.h --- a/src/lisp.h Tue Sep 17 16:26:44 1996 +0000 +++ b/src/lisp.h Tue Sep 17 17:43:56 1996 +0000 @@ -657,7 +657,7 @@ union Lisp_Misc *chain; }; -/* In a marker, the markbit of the chain field is used as the gc mark bit */ +/* In a marker, the markbit of the chain field is used as the gc mark bit. */ struct Lisp_Marker { int type : 16; /* = Lisp_Misc_Marker */ @@ -1521,7 +1521,7 @@ extern Lisp_Object Fget_file_char (), Fread_char (); extern Lisp_Object read_filtered_event (); extern Lisp_Object Feval_current_buffer (), Feval_region (); -extern Lisp_Object intern (), oblookup (); +extern Lisp_Object intern (), make_symbol (), oblookup (); #define LOADHIST_ATTACH(x) \ if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list) extern Lisp_Object Vcurrent_load_list;