diff options
| author | Karl Heuer | 1995-06-06 01:52:32 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-06-06 01:52:32 +0000 |
| commit | 40131ef56fbddca314976bf8b81275126a6401e8 (patch) | |
| tree | 75526042c20fa94af54e1cabc080b745cff0722b /src | |
| parent | 2b2eead989d821b4c1456a28f2a103deb09bd25d (diff) | |
| download | emacs-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.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 (); | |||
| 1366 | extern Lisp_Object concat2 (), nconc2 (); | 1366 | extern Lisp_Object concat2 (), nconc2 (); |
| 1367 | extern Lisp_Object assq_no_quit (); | 1367 | extern Lisp_Object assq_no_quit (); |
| 1368 | extern Lisp_Object Fcopy_alist (); | 1368 | extern Lisp_Object Fcopy_alist (); |
| 1369 | extern Lisp_Object Fplist_get (); | ||
| 1369 | 1370 | ||
| 1370 | /* Defined in insdel.c */ | 1371 | /* Defined in insdel.c */ |
| 1371 | extern void move_gap (); | 1372 | extern void move_gap (); |
| @@ -1560,6 +1561,7 @@ extern void finalize_prefix_arg (); | |||
| 1560 | /* defined in casefiddle.c */ | 1561 | /* defined in casefiddle.c */ |
| 1561 | 1562 | ||
| 1562 | extern Lisp_Object Fdowncase (), Fupcase (), Fcapitalize (); | 1563 | extern Lisp_Object Fdowncase (), Fupcase (), Fcapitalize (); |
| 1564 | extern 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 (); | |||
| 1607 | extern Lisp_Object Fselected_frame (); | 1609 | extern Lisp_Object Fselected_frame (); |
| 1608 | extern Lisp_Object Fwindow_frame (); | 1610 | extern Lisp_Object Fwindow_frame (); |
| 1609 | extern Lisp_Object Fframe_root_window (); | 1611 | extern Lisp_Object Fframe_root_window (); |
| 1612 | extern Lisp_Object Fframe_first_window (); | ||
| 1610 | extern Lisp_Object Fframe_selected_window (); | 1613 | extern Lisp_Object Fframe_selected_window (); |
| 1611 | extern Lisp_Object Fframe_list (); | 1614 | extern Lisp_Object Fframe_list (); |
| 1612 | extern Lisp_Object Fnext_frame (); | 1615 | extern Lisp_Object Fnext_frame (); |
| @@ -1648,6 +1651,7 @@ extern int running_asynch_code; | |||
| 1648 | extern Lisp_Object Fget_process (), Fget_buffer_process (), Fprocessp (); | 1651 | extern Lisp_Object Fget_process (), Fget_buffer_process (), Fprocessp (); |
| 1649 | extern Lisp_Object Fprocess_status (), Fkill_process (); | 1652 | extern Lisp_Object Fprocess_status (), Fkill_process (); |
| 1650 | extern Lisp_Object Fprocess_send_eof (); | 1653 | extern Lisp_Object Fprocess_send_eof (); |
| 1654 | extern Lisp_Object Fwaiting_for_user_input_p (); | ||
| 1651 | extern Lisp_Object Qprocessp; | 1655 | extern 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 (); | |||
| 1680 | extern Lisp_Object Fnext_single_property_change (); | 1684 | extern Lisp_Object Fnext_single_property_change (); |
| 1681 | extern Lisp_Object Fprevious_single_property_change (); | 1685 | extern Lisp_Object Fprevious_single_property_change (); |
| 1682 | 1686 | ||
| 1687 | /* defined in intervals.c */ | ||
| 1688 | extern Lisp_Object get_local_map (); | ||
| 1689 | |||
| 1690 | /* defined in xmenu.c */ | ||
| 1691 | extern 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. */ |
| 1685 | extern int initialized; | 1695 | extern int initialized; |