aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorEli Zaretskii2010-01-30 08:50:39 -0500
committerEli Zaretskii2010-01-30 08:50:39 -0500
commit0a762a3a21b8d1053751968200331e1a87e2ad22 (patch)
tree3ce5de3b8b1607229ee5f52ffe89d40cf64ffb6c /lib-src
parent6e7d621c18f9645c886c0bb4fac69ec5c9c1fd12 (diff)
parent944c7a26953d6b4b107fe7a14a05cd1d3459bd17 (diff)
downloademacs-0a762a3a21b8d1053751968200331e1a87e2ad22.tar.gz
emacs-0a762a3a21b8d1053751968200331e1a87e2ad22.zip
Merge from mainline.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/etags.c4
-rw-r--r--lib-src/makefile.w32-in2
3 files changed, 10 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index a50ee76b96c..5a1b3ff7d5a 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
12010-01-29 Kester Habermann <kester@linuxtag.org> (tiny change)
2
3 * etags.c (Fortran_functions): Handle recursive keyword
4 (Bug#5484).
5
12010-01-11 Glenn Morris <rgm@gnu.org> 62010-01-11 Glenn Morris <rgm@gnu.org>
2 7
3 * ebrowse.c (version): 8 * ebrowse.c (version):
diff --git a/lib-src/etags.c b/lib-src/etags.c
index d49dcf930af..2715df8b5cc 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -4108,6 +4108,10 @@ Fortran_functions (inf)
4108 dbp = skip_spaces (dbp); 4108 dbp = skip_spaces (dbp);
4109 if (*dbp == '\0') 4109 if (*dbp == '\0')
4110 continue; 4110 continue;
4111
4112 if (LOOKING_AT_NOCASE (dbp, "recursive"))
4113 dbp = skip_spaces (dbp);
4114
4111 switch (lowcase (*dbp)) 4115 switch (lowcase (*dbp))
4112 { 4116 {
4113 case 'i': 4117 case 'i':
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index fdbc9e9756c..c38c5c7062e 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -22,7 +22,7 @@ ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacs
22 22
23.PHONY: $(ALL) 23.PHONY: $(ALL)
24 24
25VERSION = 23.1.91 25VERSION = 23.1.92
26 26
27LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ 27LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
28 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \ 28 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \