aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-06-06 01:52:32 +0000
committerKarl Heuer1995-06-06 01:52:32 +0000
commit40131ef56fbddca314976bf8b81275126a6401e8 (patch)
tree75526042c20fa94af54e1cabc080b745cff0722b /src
parent2b2eead989d821b4c1456a28f2a103deb09bd25d (diff)
downloademacs-40131ef56fbddca314976bf8b81275126a6401e8.tar.gz
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')
-rw-r--r--src/lisp.h10
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 ();
1366extern Lisp_Object concat2 (), nconc2 (); 1366extern Lisp_Object concat2 (), nconc2 ();
1367extern Lisp_Object assq_no_quit (); 1367extern Lisp_Object assq_no_quit ();
1368extern Lisp_Object Fcopy_alist (); 1368extern Lisp_Object Fcopy_alist ();
1369extern Lisp_Object Fplist_get ();
1369 1370
1370/* Defined in insdel.c */ 1371/* Defined in insdel.c */
1371extern void move_gap (); 1372extern void move_gap ();
@@ -1560,6 +1561,7 @@ extern void finalize_prefix_arg ();
1560/* defined in casefiddle.c */ 1561/* defined in casefiddle.c */
1561 1562
1562extern Lisp_Object Fdowncase (), Fupcase (), Fcapitalize (); 1563extern Lisp_Object Fdowncase (), Fupcase (), Fcapitalize ();
1564extern Lisp_Object Fupcase_initials (), Fupcase_initials_region ();
1563 1565
1564/* defined in keyboard.c */ 1566/* defined in keyboard.c */
1565 1567
@@ -1607,6 +1609,7 @@ extern Lisp_Object Funfocus_frame ();
1607extern Lisp_Object Fselected_frame (); 1609extern Lisp_Object Fselected_frame ();
1608extern Lisp_Object Fwindow_frame (); 1610extern Lisp_Object Fwindow_frame ();
1609extern Lisp_Object Fframe_root_window (); 1611extern Lisp_Object Fframe_root_window ();
1612extern Lisp_Object Fframe_first_window ();
1610extern Lisp_Object Fframe_selected_window (); 1613extern Lisp_Object Fframe_selected_window ();
1611extern Lisp_Object Fframe_list (); 1614extern Lisp_Object Fframe_list ();
1612extern Lisp_Object Fnext_frame (); 1615extern Lisp_Object Fnext_frame ();
@@ -1648,6 +1651,7 @@ extern int running_asynch_code;
1648extern Lisp_Object Fget_process (), Fget_buffer_process (), Fprocessp (); 1651extern Lisp_Object Fget_process (), Fget_buffer_process (), Fprocessp ();
1649extern Lisp_Object Fprocess_status (), Fkill_process (); 1652extern Lisp_Object Fprocess_status (), Fkill_process ();
1650extern Lisp_Object Fprocess_send_eof (); 1653extern Lisp_Object Fprocess_send_eof ();
1654extern Lisp_Object Fwaiting_for_user_input_p ();
1651extern Lisp_Object Qprocessp; 1655extern Lisp_Object Qprocessp;
1652 1656
1653/* defined in callproc.c */ 1657/* defined in callproc.c */
@@ -1680,6 +1684,12 @@ extern Lisp_Object Fnext_property_change ();
1680extern Lisp_Object Fnext_single_property_change (); 1684extern Lisp_Object Fnext_single_property_change ();
1681extern Lisp_Object Fprevious_single_property_change (); 1685extern Lisp_Object Fprevious_single_property_change ();
1682 1686
1687/* defined in intervals.c */
1688extern Lisp_Object get_local_map ();
1689
1690/* defined in xmenu.c */
1691extern Lisp_Object Fx_popup_menu (), Fx_popup_dialog ();
1692
1683/* Nonzero means Emacs has already been initialized. 1693/* Nonzero means Emacs has already been initialized.
1684 Used during startup to detect startup of dumped Emacs. */ 1694 Used during startup to detect startup of dumped Emacs. */
1685extern int initialized; 1695extern int initialized;