aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorAndreas Schwab2003-02-19 13:07:17 +0000
committerAndreas Schwab2003-02-19 13:07:17 +0000
commit35e360926d00af99ee75f29ae8e4cd63d5a4f2f5 (patch)
tree0f0d9f94487f1055501c56133cea01434268589c /src/lisp.h
parentf9a45bb340f4e9d4c9718a4f328752f032beeaa2 (diff)
downloademacs-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.h4
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
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -2265,6 +2265,7 @@ EXFUN (Fstring_make_multibyte, 1);
2265EXFUN (Fstring_make_unibyte, 1); 2265EXFUN (Fstring_make_unibyte, 1);
2266EXFUN (Fstring_as_multibyte, 1); 2266EXFUN (Fstring_as_multibyte, 1);
2267EXFUN (Fstring_as_unibyte, 1); 2267EXFUN (Fstring_as_unibyte, 1);
2268EXFUN (Fstring_to_multibyte, 1);
2268EXFUN (Fsubstring, 3); 2269EXFUN (Fsubstring, 3);
2269extern Lisp_Object substring_both P_ ((Lisp_Object, int, int, int, int)); 2270extern Lisp_Object substring_both P_ ((Lisp_Object, int, int, int, int));
2270EXFUN (Fnth, 2); 2271EXFUN (Fnth, 2);
@@ -3020,6 +3021,7 @@ extern void unmark_byte_stack P_ ((void));
3020/* defined in macros.c */ 3021/* defined in macros.c */
3021extern Lisp_Object Qexecute_kbd_macro; 3022extern Lisp_Object Qexecute_kbd_macro;
3022EXFUN (Fexecute_kbd_macro, 3); 3023EXFUN (Fexecute_kbd_macro, 3);
3024EXFUN (Fcancel_kbd_macro_events, 0);
3023extern void init_macros P_ ((void)); 3025extern void init_macros P_ ((void));
3024extern void syms_of_macros P_ ((void)); 3026extern void syms_of_macros P_ ((void));
3025 3027