diff options
| author | Dave Love | 2003-08-20 16:43:21 +0000 |
|---|---|---|
| committer | Dave Love | 2003-08-20 16:43:21 +0000 |
| commit | 3060873a53b519822faadce36274e86e35dc7410 (patch) | |
| tree | 27a6d9d8c8aca9fac662e7a56bb054a19dcfbc38 /src | |
| parent | ac06b30be555b80969e2b02dd78f5abde4ec498a (diff) | |
| download | emacs-3060873a53b519822faadce36274e86e35dc7410.tar.gz emacs-3060873a53b519822faadce36274e86e35dc7410.zip | |
(EMACS_LISP_H): New.
(popup_activated_flag): Don't declare.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 9a80cb774fc..4435090b4a8 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -19,6 +19,9 @@ along with GNU Emacs; see the file COPYING. If not, write to | |||
| 19 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 19 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 20 | Boston, MA 02111-1307, USA. */ | 20 | Boston, MA 02111-1307, USA. */ |
| 21 | 21 | ||
| 22 | #ifndef EMACS_LISP_H | ||
| 23 | #define EMACS_LISP_H | ||
| 24 | |||
| 22 | /* Declare the prototype for a general external function. */ | 25 | /* Declare the prototype for a general external function. */ |
| 23 | #if defined (PROTOTYPES) || defined (WINDOWSNT) | 26 | #if defined (PROTOTYPES) || defined (WINDOWSNT) |
| 24 | #define P_(proto) proto | 27 | #define P_(proto) proto |
| @@ -2976,7 +2979,6 @@ extern Lisp_Object next_single_char_property_change P_ ((Lisp_Object, | |||
| 2976 | EXFUN (Fx_popup_menu, 2); | 2979 | EXFUN (Fx_popup_menu, 2); |
| 2977 | EXFUN (Fx_popup_dialog, 2); | 2980 | EXFUN (Fx_popup_dialog, 2); |
| 2978 | extern void syms_of_xmenu P_ ((void)); | 2981 | extern void syms_of_xmenu P_ ((void)); |
| 2979 | extern int popup_activated_flag; | ||
| 2980 | 2982 | ||
| 2981 | /* defined in sysdep.c */ | 2983 | /* defined in sysdep.c */ |
| 2982 | extern void stuff_char P_ ((char c)); | 2984 | extern void stuff_char P_ ((char c)); |
| @@ -3160,3 +3162,5 @@ extern Lisp_Object Vdirectory_sep_char; | |||
| 3160 | (FIXNUM_OVERFLOW_P (val) \ | 3162 | (FIXNUM_OVERFLOW_P (val) \ |
| 3161 | ? make_float (val) \ | 3163 | ? make_float (val) \ |
| 3162 | : make_number ((EMACS_INT)(val))) | 3164 | : make_number ((EMACS_INT)(val))) |
| 3165 | |||
| 3166 | #endif /* EMACS_LISP_H */ | ||