diff options
| author | Stefan Monnier | 2001-10-12 02:12:28 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-12 02:12:28 +0000 |
| commit | 1093ec47963f0fe92d9ceb10c15f63f52abefe3a (patch) | |
| tree | cbfca3ac7459f49cff8f49a3537799fc912c2441 /src | |
| parent | f9a6326d6e0535e6be1f0c98329c0b76992ca29f (diff) | |
| download | emacs-1093ec47963f0fe92d9ceb10c15f63f52abefe3a.tar.gz emacs-1093ec47963f0fe92d9ceb10c15f63f52abefe3a.zip | |
(empty_string): Declare.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 5 |
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); | |||
| 2732 | EXFUN (Fdelete_window, 1); | 2732 | EXFUN (Fdelete_window, 1); |
| 2733 | EXFUN (Fselect_window, 1); | 2733 | EXFUN (Fselect_window, 1); |
| 2734 | EXFUN (Fset_window_buffer, 2); | 2734 | EXFUN (Fset_window_buffer, 2); |
| 2735 | EXFUN (Fwindow_buffer, 1); | ||
| 2735 | EXFUN (Fget_buffer_window, 2); | 2736 | EXFUN (Fget_buffer_window, 2); |
| 2736 | EXFUN (Fsave_window_excursion, UNEVALLED); | 2737 | EXFUN (Fsave_window_excursion, UNEVALLED); |
| 2737 | EXFUN (Fsplit_window, 3); | 2738 | EXFUN (Fsplit_window, 3); |
| @@ -2797,7 +2798,7 @@ extern void keys_of_frame P_ ((void)); | |||
| 2797 | /* defined in emacs.c */ | 2798 | /* defined in emacs.c */ |
| 2798 | extern Lisp_Object decode_env_path P_ ((char *, char *)); | 2799 | extern Lisp_Object decode_env_path P_ ((char *, char *)); |
| 2799 | extern Lisp_Object Vinvocation_name, Vinvocation_directory; | 2800 | extern Lisp_Object Vinvocation_name, Vinvocation_directory; |
| 2800 | extern Lisp_Object Vinstallation_directory; | 2801 | extern Lisp_Object Vinstallation_directory, empty_string; |
| 2801 | EXFUN (Fkill_emacs, 1); | 2802 | EXFUN (Fkill_emacs, 1); |
| 2802 | #if HAVE_SETLOCALE | 2803 | #if HAVE_SETLOCALE |
| 2803 | void fixup_locale P_ ((void)); | 2804 | void fixup_locale P_ ((void)); |