# HG changeset patch # User Dave Love # Date 1061397801 0 # Node ID 9f08d8959a2aec74f21ca6ccd11c0c4db79c877d # Parent 2cc85193bef4cf3e0f94d765ee28a9609580f339 (EMACS_LISP_H): New. (popup_activated_flag): Don't declare. diff -r 2cc85193bef4 -r 9f08d8959a2a src/lisp.h --- a/src/lisp.h Wed Aug 20 15:47:57 2003 +0000 +++ b/src/lisp.h Wed Aug 20 16:43:21 2003 +0000 @@ -19,6 +19,9 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef EMACS_LISP_H +#define EMACS_LISP_H + /* Declare the prototype for a general external function. */ #if defined (PROTOTYPES) || defined (WINDOWSNT) #define P_(proto) proto @@ -2976,7 +2979,6 @@ EXFUN (Fx_popup_menu, 2); EXFUN (Fx_popup_dialog, 2); extern void syms_of_xmenu P_ ((void)); -extern int popup_activated_flag; /* defined in sysdep.c */ extern void stuff_char P_ ((char c)); @@ -3160,3 +3162,5 @@ (FIXNUM_OVERFLOW_P (val) \ ? make_float (val) \ : make_number ((EMACS_INT)(val))) + +#endif /* EMACS_LISP_H */