aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSam Steingold2001-10-15 16:17:51 +0000
committerSam Steingold2001-10-15 16:17:51 +0000
commitb56ba8de88039c79fe9f4b45505bdd7ee6eb88fd (patch)
treee44617614ed8ec6068a4f626736c6fcd9120074c /src
parenta1f17501163cde84405d0f3ceed4c206890d191a (diff)
downloademacs-b56ba8de88039c79fe9f4b45505bdd7ee6eb88fd.tar.gz
emacs-b56ba8de88039c79fe9f4b45505bdd7ee6eb88fd.zip
(Vafter_load_alist): Declare extern (w32 build problem).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog12
-rw-r--r--src/fns.c3
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 @@
12001-10-15 Sam Steingold <sds@gnu.org>
2
3 * fns.c (Vafter_load_alist): Declare extern (w32 build problem).
4
12001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 52001-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 @@
5692001-10-04 Gerd Moellmann <gerd@gnu.org> 5732001-10-04 Gerd Moellmann <gerd@gnu.org>
570 574
571 * Branch for 21.1. 575 * Branch for 21.1.
572 576
5732001-10-03 Miles Bader <miles@gnu.org> 5772001-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 @@
7922001-09-11 Gerd Moellmann <gerd@gnu.org> 7962001-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
8542001-09-04 Andrew Innes <andrewi@gnu.org> 8582001-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
diff --git a/src/fns.c b/src/fns.c
index af794f81184..7a43057ae72 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3026,7 +3026,8 @@ shortened list, containing only those averages which are available. */
3026 return ret; 3026 return ret;
3027} 3027}
3028 3028
3029Lisp_Object Vfeatures, Qsubfeatures, Vafter_load_alist; 3029Lisp_Object Vfeatures, Qsubfeatures;
3030extern Lisp_Object Vafter_load_alist;
3030 3031
3031DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, 3032DEFUN ("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.