diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-06 01:52:32 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-06 01:52:32 +0000 |
commit | 40131ef56fbddca314976bf8b81275126a6401e8 (patch) | |
tree | 75526042c20fa94af54e1cabc080b745cff0722b /src/lisp.h | |
parent | 2b2eead989d821b4c1456a28f2a103deb09bd25d (diff) | |
download | emacs-40131ef56fbddca314976bf8b81275126a6401e8.tar.gz emacs-40131ef56fbddca314976bf8b81275126a6401e8.tar.bz2 emacs-40131ef56fbddca314976bf8b81275126a6401e8.zip |
(Fwaiting_for_user_input_p): Function declared.
(Fupcase_initials, Fupcase_initials_region): Likewise.
(Fplist_get, get_local_map, Fx_popup_menu, Fx_popup_dialog): Likewise.
(Fframe_first_window): Likewise.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index 869b0f3d73f..d43c4e68b3f 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1366,6 +1366,7 @@ extern Lisp_Object Ffeaturep (), Frequire () , Fprovide (); extern Lisp_Object concat2 (), nconc2 (); extern Lisp_Object assq_no_quit (); extern Lisp_Object Fcopy_alist (); +extern Lisp_Object Fplist_get (); /* Defined in insdel.c */ extern void move_gap (); @@ -1560,6 +1561,7 @@ extern void finalize_prefix_arg (); /* defined in casefiddle.c */ extern Lisp_Object Fdowncase (), Fupcase (), Fcapitalize (); +extern Lisp_Object Fupcase_initials (), Fupcase_initials_region (); /* defined in keyboard.c */ @@ -1607,6 +1609,7 @@ extern Lisp_Object Funfocus_frame (); extern Lisp_Object Fselected_frame (); extern Lisp_Object Fwindow_frame (); extern Lisp_Object Fframe_root_window (); +extern Lisp_Object Fframe_first_window (); extern Lisp_Object Fframe_selected_window (); extern Lisp_Object Fframe_list (); extern Lisp_Object Fnext_frame (); @@ -1648,6 +1651,7 @@ extern int running_asynch_code; extern Lisp_Object Fget_process (), Fget_buffer_process (), Fprocessp (); extern Lisp_Object Fprocess_status (), Fkill_process (); extern Lisp_Object Fprocess_send_eof (); +extern Lisp_Object Fwaiting_for_user_input_p (); extern Lisp_Object Qprocessp; /* defined in callproc.c */ @@ -1680,6 +1684,12 @@ extern Lisp_Object Fnext_property_change (); extern Lisp_Object Fnext_single_property_change (); extern Lisp_Object Fprevious_single_property_change (); +/* defined in intervals.c */ +extern Lisp_Object get_local_map (); + +/* defined in xmenu.c */ +extern Lisp_Object Fx_popup_menu (), Fx_popup_dialog (); + /* Nonzero means Emacs has already been initialized. Used during startup to detect startup of dumped Emacs. */ extern int initialized; |