diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/etags.c | 3 |
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 @@ | |||
| 1 | 2010-09-25 Ulrich Mueller <ulm@gentoo.org> | ||
| 2 | |||
| 3 | * etags.c (compressors, print_language_names): Support xz compression. | ||
| 4 | |||
| 1 | 2010-08-11 Jan Djärv <jan.h.d@swipnet.se> | 5 | 2010-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\ | |||
| 874 | Fortran is tried first; if no tags are found, C is tried next.\n\ | 875 | Fortran is tried first; if no tags are found, C is tried next.\n\ |
| 875 | When parsing any C file, a \"class\" or \"template\" keyword\n\ | 876 | When parsing any C file, a \"class\" or \"template\" keyword\n\ |
| 876 | switches to C++."); | 877 | switches 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\ |
| 879 | For detailed help on a given language use, for example,\n\ | 880 | For detailed help on a given language use, for example,\n\ |
| 880 | etags --help --lang=ada."); | 881 | etags --help --lang=ada."); |