unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Stefan Monnier <monnier@IRO.UMontreal.CA>
To: John Shahid <jvshahid@gmail.com>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: call-process and incremental display of output
Date: Wed, 27 Feb 2019 09:11:24 -0500	[thread overview]
Message-ID: <jwvk1hlnxah.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <87d0nd9yl9.fsf@gmail.com> (John Shahid's message of "Wed, 27 Feb 2019 07:59:14 -0500")

> Ping.  Not sure if my previous email was lost in the ether.  FWIW, I am
> still using that patch and didn't run into any issues.  It works as I
> expected, i.e. when point is at eob, new text is inserted before the
> point.

This should go to emacs-devel.

FWIW, I noticed at least the following incompatibility with this patch:

    emacs -Q
    M-x ielm
    M-x electric-pair-mode
    (

This should leave you with "()" and point between the two parens, but
instead point is left after the closing paren.

This is because the behavior of the electric-pair thingy is equivalent to

    (insert "(")
    (save-excursion
      (insert ")"))

which is indeed affected by this patch.


        Stefan


> John Shahid <jvshahid@gmail.com> writes:
>
>> FYI, I have been using this patch without any noticeable issues.  Not
>> sure if we should merge it.
>>
>> Stefan Monnier <monnier@IRO.UMontreal.CA> writes:
>>
>>>> Sounds good.  I'll make the change locally and test it for a month or
>>>> two and report back.
>>>
>>> FWIW, I'm running with the following change now:
>>>
>>>     diff --git a/src/editfns.c b/src/editfns.c
>>>     index e995b38a44..db95a8a20a 100644
>>>     --- a/src/editfns.c
>>>     +++ b/src/editfns.c
>>>     @@ -782,6 +782,12 @@ save_excursion_save (union specbinding *pdl)
>>>      {
>>>        eassert (pdl->unwind_excursion.kind == SPECPDL_UNWIND_EXCURSION);
>>>        pdl->unwind_excursion.marker = Fpoint_marker ();
>>>     +  /* Suggested by John Shahid <jvshahid@gmail.com> in the "call-process and
>>>     +   * incremental display of output" thread of help-gnu-emacs.
>>>     +   * This matches the manually-created behavior of compile.el's process filter
>>>     +   * and probably others like comint as well.  */
>>>     +  XMARKER (pdl->unwind_excursion.marker)->insertion_type
>>>     +    = !NILP (Vwindow_point_insertion_type);
>>>        /* Selected window if current buffer is shown in it, nil otherwise.  */
>>>        pdl->unwind_excursion.window
>>>          = (EQ (XWINDOW (selected_window)->contents, Fcurrent_buffer ())
>>>
>>> I haven't double checked that it does what I think it does, to be
>>> honest, but at least after a mere 48h of normal use I haven't noticed
>>> anything weird yet.
>>>
>>>
>>>         Stefan



      reply	other threads:[~2019-02-27 14:11 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-16 13:25 call-process and incremental display of output Florian Weimer
2018-10-16 14:21 ` Michael Albinus
2018-10-16 14:26   ` Florian Weimer
2018-10-16 14:32     ` Michael Albinus
2018-10-16 14:36 ` Stefan Monnier
2018-10-17  8:32   ` Florian Weimer
2018-10-17  9:21     ` tomas
2018-10-17  9:34       ` Florian Weimer
2018-10-17  9:40         ` tomas
2018-10-17 14:59     ` Stefan Monnier
2018-10-19 21:40       ` John Shahid
2018-10-19 22:05         ` Stefan Monnier
2018-10-19 23:52           ` John Shahid
2018-10-20  2:06             ` Stefan Monnier
2018-10-21 17:05               ` John Shahid
     [not found]                 ` <jwv36szqj1d.fsf-monnier+emacs@gnu.org>
2018-12-26 17:47                   ` John Shahid
2019-02-27 12:59                     ` John Shahid
2019-02-27 14:11                       ` Stefan Monnier [this message]

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=jwvk1hlnxah.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=help-gnu-emacs@gnu.org \
    --cc=jvshahid@gmail.com \
    /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.
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).