aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2001-10-12 02:12:28 +0000
committerStefan Monnier <[email protected]>2001-10-12 02:12:28 +0000
commit1093ec47963f0fe92d9ceb10c15f63f52abefe3a (patch)
treecbfca3ac7459f49cff8f49a3537799fc912c2441
parentf9a6326d6e0535e6be1f0c98329c0b76992ca29f (diff)
(empty_string): Declare.
-rw-r--r--src/lisp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 5daac90571..28d93e45e5 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -555,7 +555,7 @@ struct interval
unsigned int position; /* Cache of interval's character position. */
/* This field is usually updated
simultaneously with an interval
- traversal, there is no guaranty
+ traversal, there is no guarantee
that it is valid for a random
interval. */
struct interval *left; /* Intervals which precede me. */
@@ -2732,6 +2732,7 @@ EXFUN (Fnext_window, 3);
EXFUN (Fdelete_window, 1);
EXFUN (Fselect_window, 1);
EXFUN (Fset_window_buffer, 2);
+EXFUN (Fwindow_buffer, 1);
EXFUN (Fget_buffer_window, 2);
EXFUN (Fsave_window_excursion, UNEVALLED);
EXFUN (Fsplit_window, 3);
@@ -2797,7 +2798,7 @@ extern void keys_of_frame P_ ((void));
/* defined in emacs.c */
extern Lisp_Object decode_env_path P_ ((char *, char *));
extern Lisp_Object Vinvocation_name, Vinvocation_directory;
-extern Lisp_Object Vinstallation_directory;
+extern Lisp_Object Vinstallation_directory, empty_string;
EXFUN (Fkill_emacs, 1);
#if HAVE_SETLOCALE
void fixup_locale P_ ((void));