From: Matthew Leach <matthew@mattleach.net>
To: Daniel Colascione <dancol@dancol.org>
Cc: xah@xahlee.org, 1702@debbugs.gnu.org, cyd@stupidchicken.com
Subject: bug#1702: [PATCH]: feature request: correctly display single file zip archive
Date: Tue, 18 Nov 2014 20:12:25 +0000 [thread overview]
Message-ID: <87y4r8i7yu.fsf@loki.home> (raw)
In-Reply-To: <546B43F6.8040207@dancol.org> (Daniel Colascione's message of "Tue, 18 Nov 2014 05:04:54 -0800")
[-- Attachment #1: Type: text/plain, Size: 523 bytes --]
Daniel Colascione <dancol@dancol.org> writes:
> On 11/14/2014 03:31 AM, Matthew Leach wrote:
>> Matthew Leach <matthew@mattleach.net> writes:
>>
>
> I don't think the new behavior should be the default.
It seems as though that is the consensus. Revised patch included that
turns off the feature by default.
Thanks,
Matt
lisp/ChangeLog:
2014-11-13 Matthew Leach <matthew@mattleach.net>
* arc-mode.el (archive-visit-single-files): New.
(archive-mode): Visit file if archive contains a single file.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: arc-single-file-mode.patch --]
[-- Type: text/x-diff, Size: 1258 bytes --]
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el
index ef155ee..9833c90 100644
--- a/lisp/arc-mode.el
+++ b/lisp/arc-mode.el
@@ -147,6 +147,15 @@ A local copy of the archive will be used when updating."
"Hook run when an archive member has been extracted."
:type 'hook
:group 'archive)
+
+(defcustom archive-visit-single-files nil
+ "If non-nil, opening an archive with a single file visits that file.
+
+ If this option's value is nil, visiting such archives will
+ display the archive summary."
+ :type '(choice (const :tag "Visit the single file" t)
+ (const :tag "Show the archive summary" nil))
+ :group 'archive)
;; ------------------------------
;; Arc archive configuration
@@ -742,7 +751,12 @@ archive.
(if (default-value 'enable-multibyte-characters)
(set-buffer-multibyte 'to))
(archive-summarize nil)
- (setq buffer-read-only t))))
+ (setq buffer-read-only t)
+ (when (and archive-visit-single-files
+ auto-compression-mode
+ (= (length archive-files) 1))
+ (rename-buffer (concat " " (buffer-name)))
+ (archive-extract)))))
;; Archive mode is suitable only for specially formatted data.
(put 'archive-mode 'mode-class 'special)
next prev parent reply other threads:[~2014-11-18 20:12 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-28 2:47 bug#1702: feature request: correctly display single file zip archive Chong Yidong
2009-01-16 20:09 ` xah lee
2014-11-13 18:39 ` bug#1702: [PATCH]: " Matthew Leach
2014-11-13 18:50 ` Eli Zaretskii
2014-11-13 19:26 ` Matthew Leach
2014-11-13 19:39 ` Eli Zaretskii
2014-11-13 20:03 ` Matthew Leach
2014-11-13 20:25 ` Eli Zaretskii
2014-11-13 20:50 ` Matthew Leach
2014-11-14 5:27 ` Eli Zaretskii
2014-11-14 11:06 ` Matthew Leach
2014-11-14 11:31 ` Matthew Leach
2014-11-18 13:04 ` Daniel Colascione
2014-11-18 20:12 ` Matthew Leach [this message]
2014-11-21 10:10 ` Eli Zaretskii
2014-11-13 19:51 ` Lars Magne Ingebrigtsen
2008-12-25 18:30 ` bug#1702: " xah lee
2014-11-18 13:22 ` bug#1702: [PATCH]: " Rasmus
2014-11-13 19:58 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87y4r8i7yu.fsf@loki.home \
--to=matthew@mattleach.net \
--cc=1702@debbugs.gnu.org \
--cc=cyd@stupidchicken.com \
--cc=dancol@dancol.org \
--cc=xah@xahlee.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).