comparison src/lisp.h @ 16178:58556dbdd03d

(struct Lisp_Symbol): New field `obarray'.
author Richard M. Stallman <rms@gnu.org>
date Fri, 13 Sep 1996 16:51:51 +0000
parents 36566aa94b49
children e886bf705de0
comparison
equal deleted inserted replaced
16177:da1a2b74d099 16178:58556dbdd03d
623 { 623 {
624 struct Lisp_String *name; 624 struct Lisp_String *name;
625 Lisp_Object value; 625 Lisp_Object value;
626 Lisp_Object function; 626 Lisp_Object function;
627 Lisp_Object plist; 627 Lisp_Object plist;
628 Lisp_Object obarray;
628 struct Lisp_Symbol *next; /* -> next symbol in this obarray bucket */ 629 struct Lisp_Symbol *next; /* -> next symbol in this obarray bucket */
629 }; 630 };
630 631
631 /* This structure describes a built-in function. 632 /* This structure describes a built-in function.
632 It is generated by the DEFUN macro only. 633 It is generated by the DEFUN macro only.