aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2001-10-12 02:12:28 +0000
committerStefan Monnier2001-10-12 02:12:28 +0000
commit1093ec47963f0fe92d9ceb10c15f63f52abefe3a (patch)
treecbfca3ac7459f49cff8f49a3537799fc912c2441 /src
parentf9a6326d6e0535e6be1f0c98329c0b76992ca29f (diff)
downloademacs-1093ec47963f0fe92d9ceb10c15f63f52abefe3a.tar.gz
emacs-1093ec47963f0fe92d9ceb10c15f63f52abefe3a.zip
(empty_string): Declare.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 5daac90571a..28d93e45e58 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -555,7 +555,7 @@ struct interval
555 unsigned int position; /* Cache of interval's character position. */ 555 unsigned int position; /* Cache of interval's character position. */
556 /* This field is usually updated 556 /* This field is usually updated
557 simultaneously with an interval 557 simultaneously with an interval
558 traversal, there is no guaranty 558 traversal, there is no guarantee
559 that it is valid for a random 559 that it is valid for a random
560 interval. */ 560 interval. */
561 struct interval *left; /* Intervals which precede me. */ 561 struct interval *left; /* Intervals which precede me. */
@@ -2732,6 +2732,7 @@ EXFUN (Fnext_window, 3);
2732EXFUN (Fdelete_window, 1); 2732EXFUN (Fdelete_window, 1);
2733EXFUN (Fselect_window, 1); 2733EXFUN (Fselect_window, 1);
2734EXFUN (Fset_window_buffer, 2); 2734EXFUN (Fset_window_buffer, 2);
2735EXFUN (Fwindow_buffer, 1);
2735EXFUN (Fget_buffer_window, 2); 2736EXFUN (Fget_buffer_window, 2);
2736EXFUN (Fsave_window_excursion, UNEVALLED); 2737EXFUN (Fsave_window_excursion, UNEVALLED);
2737EXFUN (Fsplit_window, 3); 2738EXFUN (Fsplit_window, 3);
@@ -2797,7 +2798,7 @@ extern void keys_of_frame P_ ((void));
2797/* defined in emacs.c */ 2798/* defined in emacs.c */
2798extern Lisp_Object decode_env_path P_ ((char *, char *)); 2799extern Lisp_Object decode_env_path P_ ((char *, char *));
2799extern Lisp_Object Vinvocation_name, Vinvocation_directory; 2800extern Lisp_Object Vinvocation_name, Vinvocation_directory;
2800extern Lisp_Object Vinstallation_directory; 2801extern Lisp_Object Vinstallation_directory, empty_string;
2801EXFUN (Fkill_emacs, 1); 2802EXFUN (Fkill_emacs, 1);
2802#if HAVE_SETLOCALE 2803#if HAVE_SETLOCALE
2803void fixup_locale P_ ((void)); 2804void fixup_locale P_ ((void));