From: David Edmondson <dme@dme.org>
To: Aaron Ecay <aaronecay@gmail.com>
Cc: notmuch <notmuch@notmuchmail.org>
Subject: Re: [PATCH] emacs: Improved printing support.
Date: Tue, 17 Jan 2012 09:14:07 +0000 [thread overview]
Message-ID: <cunk44qr8rk.fsf@hotblack-desiato.hh.sledj.net> (raw)
In-Reply-To: <m2vcobbaol.fsf@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2377 bytes --]
On Mon, 16 Jan 2012 16:27:06 -0500, Aaron Ecay <aaronecay@gmail.com> wrote:
> > +;;
>
> The above is just a stray comment line, right?
I tend to use them as spacers, but, sure.
> > +(defun notmuch-show-with-message-as-text (fn)
> > + "Apply function `fn' to a text representation of the current
> > +message."
>
> I think the docstring should say what agrs get passed to ‘fn’. Also,
> function arguments should be referred to with capital letters, and the
> first line should be a complete sentence. I’d recommend “Apply FN to
> (...the rest unchanged)” for brevity in the first line.
>
> (For anyone who is curious, these and other conventions are documented
> in section D.6 of the Elisp manual.)
Will fix.
> > + (concat "Tags: "
> > + (mapconcat '(lambda (tag) tag) tags ", ") "\n")
>
> #'identity instead of the lambda
/me slaps head. What was I thinking?
> > + (all (buffer-substring (notmuch-show-message-top)
> > + (notmuch-show-message-bottom)))
> > +
> > + (file (make-temp-file "notmuch")))
> > + (with-temp-file file
> > + (insert all)
> > + (indent-rigidly (point-min) (point-max) (- depth))
> > + ;; Remove the original header.
> > + (goto-char (point-min))
> > + (re-search-forward "^$" (point-max) nil)
> > + (delete-region (point-min) (point))
> > + (insert header))
> > + (funcall fn file (notmuch-show-get-message-properties))
> > + (delete-file file)))
>
> Why does this function write to a file? It seems that, of the print
> methods, two (ps-print and lpr) don’t use the file at all. One
> (ps-print/evince) creates yet another file, without depending on the
> first. The other muttprint functions do use the file. So:
> - This function would be more general if it didn’t handle file-writing
> itself, but rather let each consumer of text-ified messages handle
> that if needed.
> - It would be cleaner if print backends that don’t crucially depend on
> the existence of a file didn’t create one at all. If muttprint can
> accept a message on stdin (it looks from the source like it can; it
> gives me some error message about Iconv Perl modules when I try to run
> it, so I can’t be sure), maybe writing to a file isn’t necessary at
> all.
I'll rework it, thanks for the review!
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
next prev parent reply other threads:[~2012-01-17 9:14 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-30 10:28 [PATCH] emacs: Improved printing support David Edmondson
2011-12-31 19:15 ` David Bremner
2012-01-03 11:37 ` David Edmondson
2012-01-03 14:12 ` David Edmondson
2012-01-16 11:30 ` David Edmondson
2012-01-16 21:27 ` Aaron Ecay
2012-01-17 9:14 ` David Edmondson [this message]
2012-01-18 8:00 ` David Edmondson
2012-01-18 8:49 ` Aaron Ecay
2012-01-21 13:14 ` David Bremner
-- strict thread matches above, loose matches on Subject: below --
2010-11-11 12:57 Printing mail David Edmondson
2010-11-12 12:53 ` [PATCH] emacs: Improved printing support David Edmondson
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://notmuchmail.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cunk44qr8rk.fsf@hotblack-desiato.hh.sledj.net \
--to=dme@dme.org \
--cc=aaronecay@gmail.com \
--cc=notmuch@notmuchmail.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://yhetil.org/notmuch.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).