[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemacs-commit] qemacs archive.c
From: |
Charlie Gordon |
Subject: |
[Qemacs-commit] qemacs archive.c |
Date: |
Wed, 3 May 2017 04:04:08 -0400 (EDT) |
CVSROOT: /sources/qemacs
Module name: qemacs
Changes by: Charlie Gordon <chqrlie> 17/05/03 04:04:08
Modified files:
. : archive.c
Log message:
archive: select tar on .taz and man on .roff
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/archive.c?cvsroot=qemacs&r1=1.29&r2=1.30
Patches:
Index: archive.c
===================================================================
RCS file: /sources/qemacs/qemacs/archive.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- archive.c 25 Apr 2017 12:52:16 -0000 1.29
+++ archive.c 3 May 2017 08:04:08 -0000 1.30
@@ -37,8 +37,7 @@
static ArchiveType archive_type_array[] = {
{ "tar", NULL, 0, "tar|tar.Z|tgz|tar.gz|tbz|tbz2|tar.bz2|tar.bzip2|"
- "txz|tar.xz|tlz|tar.lzma",
- "tar tvf $1" },
+ "txz|tar.xz|tlz|tar.lzma|taz", "tar tvf $1" },
{ "zip", "PK\003\004", 4, "zip|ZIP|jar|apk|bbb", "unzip -l $1" },
{ "rar", NULL, 0, "rar|RAR", "unrar l $1" },
{ "arj", NULL, 0, "arj|ARJ", "unarj l $1" },
@@ -438,7 +437,7 @@
if (match_extension(p->real_filename,
"1|1m|1ssl|1tcl|2|3|3o|3ssl|4|5|5ssl|6|7|7ssl|8|9|"
- "n|ntcl|man")
+ "n|ntcl|man|roff")
// && !strchr(p->filename, '.')
&& (p->buf[0] == '.' ||
(p->buf[0] == '\n' && p->buf[1] == '.') ||
- [Qemacs-commit] qemacs archive.c,
Charlie Gordon <=