unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: phillip.lord@russet.org.uk (Phillip Lord)
To: Eli Zaretskii <eliz@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: Adding streams for standard out and standard err
Date: Thu, 21 Jul 2016 21:13:26 +0100	[thread overview]
Message-ID: <87bn1q3g2h.fsf@russet.org.uk> (raw)
In-Reply-To: <83invyyffg.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 21 Jul 2016 22:11:31 +0300")

Eli Zaretskii <eliz@gnu.org> writes:

>> From: phillip.lord@russet.org.uk (Phillip Lord)
>> Cc: emacs-devel@gnu.org
>> Date: Thu, 21 Jul 2016 19:52:58 +0100
>> 
>> (append-to-file (print buffer-undo-list) nil "/dev/stderr")
>> 
>> seems clunky compared to:
>> 
>> (print buffer-undo-list 'stdout)
>
> Nothing a simple function won't heal, right?
>
> Maybe that's all we need: a small wrapper around append-to-file.

Actually, adding a new stream was your idea...

http://lists.gnu.org/archive/html/help-gnu-emacs/2016-06/msg00207.html

I'd never heard of streams in emacs before. I thought it seemed like a
nice idea, so I thought I would give it a go.

Yes, you are probably correct, that append-to-file could be used,
without resorting to new C primitives. However, all the functionality
that we need is already in the C layer. Also append-to-file (or rather
write-region) would need updating to not send messages.

It would also allow fixing this:

(defun append-to-file (start end filename)
  (interactive "r\nFAppend to file: ")
  (prog1 (write-region start end filename t)
    (when save-silently (message nil))))

Append-to-file does not actually save-silently AFAICT, it just hides the
message quickly.

Phil



  reply	other threads:[~2016-07-21 20:13 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-20 22:48 Adding streams for standard out and standard err Phillip Lord
2016-07-21  7:12 ` Andreas Schwab
2016-07-21 18:42   ` Phillip Lord
2016-07-25  7:35     ` Andreas Schwab
2016-07-21 14:21 ` Eli Zaretskii
2016-07-21 14:40   ` Paul Eggert
2016-07-21 15:02     ` Eli Zaretskii
2016-07-21 19:01       ` Phillip Lord
2016-07-21 18:52   ` Phillip Lord
2016-07-21 19:11     ` Eli Zaretskii
2016-07-21 20:13       ` Phillip Lord [this message]
2016-07-22  6:50         ` Eli Zaretskii
2016-07-22 15:43           ` Phillip Lord
2016-07-21 22:15     ` Davis Herring
2016-08-02 23:35   ` John Wiegley
2016-07-22 14:48 ` Phil Sainty
2016-07-22 15:42   ` Phillip Lord

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=87bn1q3g2h.fsf@russet.org.uk \
    --to=phillip.lord@russet.org.uk \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.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).