aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorKenichi Handa2010-09-27 14:42:43 +0900
committerKenichi Handa2010-09-27 14:42:43 +0900
commitb3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c (patch)
tree4d55005558f96dfb44bfcd746098ed0882aff2d0 /lib-src
parent4be9765d4bad14d68cdfee2a2c6afe1001d9516a (diff)
parente5fa38990bca723fc3ef1d0ede792e8ff84b84f7 (diff)
downloademacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.tar.gz
emacs-b3253cd4b4bcbe1ab4ad1fdc98b30c33af70332c.zip
merge trunk
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/etags.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 4f3f386310a..5765bea74ae 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12010-09-25 Ulrich Mueller <ulm@gentoo.org>
2
3 * etags.c (compressors, print_language_names): Support xz compression.
4
12010-08-11 Jan Djärv <jan.h.d@swipnet.se> 52010-08-11 Jan Djärv <jan.h.d@swipnet.se>
2 6
3 * fakemail.c: Include stdlib.h for getenv. Remove declaration of 7 * fakemail.c: Include stdlib.h for getenv. Remove declaration of
diff --git a/lib-src/etags.c b/lib-src/etags.c
index 42e4017ab50..abc8b06dd8e 100644
--- a/lib-src/etags.c
+++ b/lib-src/etags.c
@@ -561,6 +561,7 @@ static compressor compressors[] =
561 { "gz", "gzip -d -c"}, 561 { "gz", "gzip -d -c"},
562 { "GZ", "gzip -d -c"}, 562 { "GZ", "gzip -d -c"},
563 { "bz2", "bzip2 -d -c" }, 563 { "bz2", "bzip2 -d -c" },
564 { "xz", "xz -d -c" },
564 { NULL } 565 { NULL }
565}; 566};
566 567
@@ -874,7 +875,7 @@ followed by the name of an interpreter. If no such sequence is found,\n\
874Fortran is tried first; if no tags are found, C is tried next.\n\ 875Fortran is tried first; if no tags are found, C is tried next.\n\
875When parsing any C file, a \"class\" or \"template\" keyword\n\ 876When parsing any C file, a \"class\" or \"template\" keyword\n\
876switches to C++."); 877switches to C++.");
877 puts ("Compressed files are supported using gzip and bzip2.\n\ 878 puts ("Compressed files are supported using gzip, bzip2, and xz.\n\
878\n\ 879\n\
879For detailed help on a given language use, for example,\n\ 880For detailed help on a given language use, for example,\n\
880etags --help --lang=ada."); 881etags --help --lang=ada.");