diff options
| author | Andreas Schwab | 2003-02-19 13:07:17 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-02-19 13:07:17 +0000 |
| commit | 35e360926d00af99ee75f29ae8e4cd63d5a4f2f5 (patch) | |
| tree | 0f0d9f94487f1055501c56133cea01434268589c /src/lisp.h | |
| parent | f9a45bb340f4e9d4c9718a4f328752f032beeaa2 (diff) | |
| download | emacs-35e360926d00af99ee75f29ae8e4cd63d5a4f2f5.tar.gz emacs-35e360926d00af99ee75f29ae8e4cd63d5a4f2f5.zip | |
(Fcancel_kbd_macro_events, Fstring_to_multibyte): Add
prototypes.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 3f7f57c29c8..6c3d9cfe6fd 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Fundamental definitions for GNU Emacs Lisp interpreter. | 1 | /* Fundamental definitions for GNU Emacs Lisp interpreter. |
| 2 | Copyright (C) 1985,86,87,93,94,95,97,98,1999,2000, 2001, 2002 | 2 | Copyright (C) 1985,86,87,93,94,95,97,98,1999,2000, 2001, 2002, 2003 |
| 3 | Free Software Foundation, Inc. | 3 | Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | This file is part of GNU Emacs. | 5 | This file is part of GNU Emacs. |
| @@ -2265,6 +2265,7 @@ EXFUN (Fstring_make_multibyte, 1); | |||
| 2265 | EXFUN (Fstring_make_unibyte, 1); | 2265 | EXFUN (Fstring_make_unibyte, 1); |
| 2266 | EXFUN (Fstring_as_multibyte, 1); | 2266 | EXFUN (Fstring_as_multibyte, 1); |
| 2267 | EXFUN (Fstring_as_unibyte, 1); | 2267 | EXFUN (Fstring_as_unibyte, 1); |
| 2268 | EXFUN (Fstring_to_multibyte, 1); | ||
| 2268 | EXFUN (Fsubstring, 3); | 2269 | EXFUN (Fsubstring, 3); |
| 2269 | extern Lisp_Object substring_both P_ ((Lisp_Object, int, int, int, int)); | 2270 | extern Lisp_Object substring_both P_ ((Lisp_Object, int, int, int, int)); |
| 2270 | EXFUN (Fnth, 2); | 2271 | EXFUN (Fnth, 2); |
| @@ -3020,6 +3021,7 @@ extern void unmark_byte_stack P_ ((void)); | |||
| 3020 | /* defined in macros.c */ | 3021 | /* defined in macros.c */ |
| 3021 | extern Lisp_Object Qexecute_kbd_macro; | 3022 | extern Lisp_Object Qexecute_kbd_macro; |
| 3022 | EXFUN (Fexecute_kbd_macro, 3); | 3023 | EXFUN (Fexecute_kbd_macro, 3); |
| 3024 | EXFUN (Fcancel_kbd_macro_events, 0); | ||
| 3023 | extern void init_macros P_ ((void)); | 3025 | extern void init_macros P_ ((void)); |
| 3024 | extern void syms_of_macros P_ ((void)); | 3026 | extern void syms_of_macros P_ ((void)); |
| 3025 | 3027 | ||