diff options
| author | Jim Blandy | 1992-01-28 16:01:00 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-01-28 16:01:00 +0000 |
| commit | 760cbdd312c714899cf76f5ca39d8fd17a6a28e4 (patch) | |
| tree | 747630a806faeefe4dbabc6b63fe9e2ae524368f /src | |
| parent | 1f98fa48b925f63d6c64f3a0937fcc613b2a83cb (diff) | |
| download | emacs-760cbdd312c714899cf76f5ca39d8fd17a6a28e4.tar.gz emacs-760cbdd312c714899cf76f5ca39d8fd17a6a28e4.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 1 | ||||
| -rw-r--r-- | src/lisp.h | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/callint.c b/src/callint.c index a77a0180f5c..f78a82af022 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -22,6 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 22 | #include "lisp.h" | 22 | #include "lisp.h" |
| 23 | #include "buffer.h" | 23 | #include "buffer.h" |
| 24 | #include "commands.h" | 24 | #include "commands.h" |
| 25 | #include "keyboard.h" | ||
| 25 | #include "window.h" | 26 | #include "window.h" |
| 26 | #include "mocklisp.h" | 27 | #include "mocklisp.h" |
| 27 | 28 | ||
diff --git a/src/lisp.h b/src/lisp.h index 1cbdd6efc90..1e5d4bf9365 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -849,7 +849,7 @@ extern Lisp_Object Fsetcar (), Fsetcdr (); | |||
| 849 | extern Lisp_Object Fboundp (), Ffboundp (), Fmakunbound (), Ffmakunbound (); | 849 | extern Lisp_Object Fboundp (), Ffboundp (), Fmakunbound (), Ffmakunbound (); |
| 850 | extern Lisp_Object Fsymbol_function (), Fsymbol_plist (), Fsymbol_name (); | 850 | extern Lisp_Object Fsymbol_function (), Fsymbol_plist (), Fsymbol_name (); |
| 851 | extern Lisp_Object Ffset (), Fsetplist (); | 851 | extern Lisp_Object Ffset (), Fsetplist (); |
| 852 | extern Lisp_Object Fsymbol_value (), Fset (); | 852 | extern Lisp_Object Fsymbol_value (), find_symbol_value (), Fset (); |
| 853 | extern Lisp_Object Fdefault_value (), Fset_default (); | 853 | extern Lisp_Object Fdefault_value (), Fset_default (); |
| 854 | 854 | ||
| 855 | extern Lisp_Object Faref (), Faset (), Farray_length (); | 855 | extern Lisp_Object Faref (), Faset (), Farray_length (); |
| @@ -943,7 +943,8 @@ extern Lisp_Object Fgoto_char (); | |||
| 943 | extern Lisp_Object Fpoint_min_marker (), Fpoint_max_marker (); | 943 | extern Lisp_Object Fpoint_min_marker (), Fpoint_max_marker (); |
| 944 | extern Lisp_Object Fpoint_min (), Fpoint_max (); | 944 | extern Lisp_Object Fpoint_min (), Fpoint_max (); |
| 945 | extern Lisp_Object Fpoint (), Fpoint_marker (), Fmark_marker (); | 945 | extern Lisp_Object Fpoint (), Fpoint_marker (), Fmark_marker (); |
| 946 | extern Lisp_Object Ffollchar (), Fprevchar (), Fchar_after (), Finsert (); | 946 | extern Lisp_Object Ffollowing_char (), Fprevious_char (), Fchar_after (); |
| 947 | extern Lisp_Object Finsert (); | ||
| 947 | extern Lisp_Object Feolp (), Feobp (), Fbolp (), Fbobp (); | 948 | extern Lisp_Object Feolp (), Feobp (), Fbolp (), Fbobp (); |
| 948 | extern Lisp_Object Fformat (), format1 (); | 949 | extern Lisp_Object Fformat (), format1 (); |
| 949 | extern Lisp_Object Fbuffer_substring (), Fbuffer_string (); | 950 | extern Lisp_Object Fbuffer_substring (), Fbuffer_string (); |
| @@ -1005,12 +1006,9 @@ extern Lisp_Object Fdowncase (), Fupcase (), Fcapitalize (); | |||
| 1005 | /* defined in keyboard.c */ | 1006 | /* defined in keyboard.c */ |
| 1006 | 1007 | ||
| 1007 | extern Lisp_Object Qdisabled; | 1008 | extern Lisp_Object Qdisabled; |
| 1008 | extern Lisp_Object Qmode_line, Qvertical_split; | ||
| 1009 | extern Lisp_Object Vhelp_form, Vtop_level; | 1009 | extern Lisp_Object Vhelp_form, Vtop_level; |
| 1010 | extern Lisp_Object Fdiscard_input (), Frecursive_edit (); | 1010 | extern Lisp_Object Fdiscard_input (), Frecursive_edit (); |
| 1011 | extern Lisp_Object Fcommand_execute (), Finput_pending_p (); | 1011 | extern Lisp_Object Fcommand_execute (), Finput_pending_p (); |
| 1012 | extern int num_input_chars; | ||
| 1013 | extern int poll_suppress_count; | ||
| 1014 | 1012 | ||
| 1015 | /* defined in keymap.c */ | 1013 | /* defined in keymap.c */ |
| 1016 | 1014 | ||