diff options
| author | Sam Steingold | 2001-10-15 16:17:51 +0000 |
|---|---|---|
| committer | Sam Steingold | 2001-10-15 16:17:51 +0000 |
| commit | b56ba8de88039c79fe9f4b45505bdd7ee6eb88fd (patch) | |
| tree | e44617614ed8ec6068a4f626736c6fcd9120074c /src | |
| parent | a1f17501163cde84405d0f3ceed4c206890d191a (diff) | |
| download | emacs-b56ba8de88039c79fe9f4b45505bdd7ee6eb88fd.tar.gz emacs-b56ba8de88039c79fe9f4b45505bdd7ee6eb88fd.zip | |
(Vafter_load_alist): Declare extern (w32 build problem).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 12 | ||||
| -rw-r--r-- | src/fns.c | 3 |
2 files changed, 10 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0bd77add332..36cfdc6b74e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-10-15 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * fns.c (Vafter_load_alist): Declare extern (w32 build problem). | ||
| 4 | |||
| 1 | 2001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 6 | ||
| 3 | * process.c (process-inherit-coding-system-flag, | 7 | * process.c (process-inherit-coding-system-flag, |
| @@ -14,7 +18,7 @@ | |||
| 14 | 18 | ||
| 15 | * window.c (window_loop): Don't check for Fother_buffer returning | 19 | * window.c (window_loop): Don't check for Fother_buffer returning |
| 16 | nil. | 20 | nil. |
| 17 | 21 | ||
| 18 | * window.c (select_window_1): Unfreeze window start. Remove a | 22 | * window.c (select_window_1): Unfreeze window start. Remove a |
| 19 | doubled test for WINDOW being live. | 23 | doubled test for WINDOW being live. |
| 20 | 24 | ||
| @@ -569,7 +573,7 @@ | |||
| 569 | 2001-10-04 Gerd Moellmann <gerd@gnu.org> | 573 | 2001-10-04 Gerd Moellmann <gerd@gnu.org> |
| 570 | 574 | ||
| 571 | * Branch for 21.1. | 575 | * Branch for 21.1. |
| 572 | 576 | ||
| 573 | 2001-10-03 Miles Bader <miles@gnu.org> | 577 | 2001-10-03 Miles Bader <miles@gnu.org> |
| 574 | 578 | ||
| 575 | * callproc.c (syms_of_callproc): Explicitly state in the | 579 | * callproc.c (syms_of_callproc): Explicitly state in the |
| @@ -792,7 +796,7 @@ | |||
| 792 | 2001-09-11 Gerd Moellmann <gerd@gnu.org> | 796 | 2001-09-11 Gerd Moellmann <gerd@gnu.org> |
| 793 | 797 | ||
| 794 | * minibuf.c (read_minibuf_unwind): Bind inhibit-modification-hooks. | 798 | * minibuf.c (read_minibuf_unwind): Bind inhibit-modification-hooks. |
| 795 | 799 | ||
| 796 | * minibuf.c (read_minibuf): Bind inhibit-modification-hooks to t, | 800 | * minibuf.c (read_minibuf): Bind inhibit-modification-hooks to t, |
| 797 | in addition to read-only. | 801 | in addition to read-only. |
| 798 | 802 | ||
| @@ -850,7 +854,7 @@ | |||
| 850 | 854 | ||
| 851 | * xdisp.c (string_buffer_position): Use *single_char_property* | 855 | * xdisp.c (string_buffer_position): Use *single_char_property* |
| 852 | functions instead of the *single_property* functions. | 856 | functions instead of the *single_property* functions. |
| 853 | 857 | ||
| 854 | 2001-09-04 Andrew Innes <andrewi@gnu.org> | 858 | 2001-09-04 Andrew Innes <andrewi@gnu.org> |
| 855 | 859 | ||
| 856 | * w32term.c (w32_read_socket): Add more information to debugging | 860 | * w32term.c (w32_read_socket): Add more information to debugging |
| @@ -3026,7 +3026,8 @@ shortened list, containing only those averages which are available. */ | |||
| 3026 | return ret; | 3026 | return ret; |
| 3027 | } | 3027 | } |
| 3028 | 3028 | ||
| 3029 | Lisp_Object Vfeatures, Qsubfeatures, Vafter_load_alist; | 3029 | Lisp_Object Vfeatures, Qsubfeatures; |
| 3030 | extern Lisp_Object Vafter_load_alist; | ||
| 3030 | 3031 | ||
| 3031 | DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, | 3032 | DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, |
| 3032 | /* Returns t if FEATURE is present in this Emacs. | 3033 | /* Returns t if FEATURE is present in this Emacs. |