From: Erik Naggum Date: Tue, 17 Sep 1996 17:43:56 +0000 (+0000) Subject: Declare make_symbol (). X-Git-Tag: emacs-20.1~3714 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=609c36fe5f838b83ef8d99a0007068f1c155e3a4;p=emacs.git Declare make_symbol (). --- diff --git a/src/lisp.h b/src/lisp.h index a524d86db4b..bcf500509f7 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -657,7 +657,7 @@ struct Lisp_Free 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 Fintern (), Fintern_soft (), Fload (); 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;