all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Richard Stallman <rms@gnu.org>
Cc: emacs-devel@gnu.org
Subject: Re: insert-file-contents and fifos
Date: Mon, 6 May 2002 22:58:41 -0600 (MDT)	[thread overview]
Message-ID: <200205070458.g474wfT02446@aztec.santafe.edu> (raw)
In-Reply-To: <Pine.LNX.4.33.0205061613110.10872-100000@salmon.pepperfish.net> (message from Vivek on Mon, 6 May 2002 16:26:35 +0100 (BST))

    `read_non_regular' _always_ calls

      Fsignal (Qquit, Qnil);

    just after `emacs_read' (which succeeds, afaict)

How strange--the 21.2 code really has that absurd call to Fsignal.
The latest development version does not have it; I think it was
inserted by mistake.

Eli, could you delete that Fsignal call?


read_non_regular ()
{
  int nbytes;
  
  immediate_quit = 1;
  QUIT;
  nbytes = emacs_read (non_regular_fd,
		       BEG_ADDR + PT_BYTE - 1 + non_regular_inserted,
		       non_regular_nbytes);
  Fsignal (Qquit, Qnil);
  immediate_quit = 0;
  return make_number (nbytes);
}

  reply	other threads:[~2002-05-07  4:58 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-05-01 14:15 insert-file-contents and fifos Vivek Dasmohapatra
2002-05-05  5:34 ` Richard Stallman
2002-05-05 12:14   ` Vivek
2002-05-06  6:24     ` Richard Stallman
2002-05-06 15:26       ` Vivek
2002-05-07  4:58         ` Richard Stallman [this message]
2002-05-07 16:51           ` 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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200205070458.g474wfT02446@aztec.santafe.edu \
    --to=rms@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 external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.