Your message dated Wed, 21 Sep 2005 05:17:07 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#328982: fixed in man-db 2.4.3-3
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 18 Sep 2005 14:51:56 +0000
>From [EMAIL PROTECTED] Sun Sep 18 07:51:56 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp4-g19.free.fr [212.27.42.30]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1EH0WJ-0005Ps-00; Sun, 18 Sep 2005 07:51:56 -0700
Received: from groumpf (str90-1-82-238-123-182.fbx.proxad.net [82.238.123.182])
by smtp4-g19.free.fr (Postfix) with ESMTP id EE202282FE
for <[EMAIL PROTECTED]>; Sun, 18 Sep 2005 16:51:53 +0200 (CEST)
Received: from jekyll ([192.168.1.1])
by groumpf with esmtp (Exim 4.50)
id 1EH0WH-0004It-DK
for [EMAIL PROTECTED]; Sun, 18 Sep 2005 16:51:53 +0200
Received: from arnaud by jekyll with local (Exim 4.50)
id 1EH0WH-0000Oa-8P
for [EMAIL PROTECTED]; Sun, 18 Sep 2005 16:51:53 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: man-db: man: ctrl-c kills less
X-Debbugs-CC: Arnaud Giersch <[EMAIL PROTECTED]>
From: Arnaud Giersch <[EMAIL PROTECTED]>
Date: Sun, 18 Sep 2005 16:51:53 +0200
Message-ID: <[EMAIL PROTECTED]>
User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.4 (Jumbo Shrimp, linux)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-11.0 required=4.0 tests=BAYES_00,HAS_PACKAGE,
X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2005_01_02
Package: man-db
Version: 2.4.3-2
Severity: normal
Hello,
The man command uses less as default pager. Within less, Ctrl-C can
normally be used to interrupt current action (such as command line
editing). With the latest version of man-db (2.4.3-2), typing Ctrl-C
kills less, which is a bit annoying. It works correctly with Sarge's
man-db (2.4.2-21).
The difference comes from the fact that in previous versions, the
function do_system() (from file src/util.c) used the standard function
system(3), which makes the calling process ignore signals SIGINT and
SIGQUIT. Now, do_system() does not use system(3) anymore, and thus
does not ignore SIGINT.
So I suggest to ignore SIGINT (and maybe SIGQUIT too?), either in
do_system() (from file src/util.c), or in pipeline_wait() (from file
lib/pipeline.c).
Regards,
Arnaud
---------------------------------------
Received: (at 328982-close) by bugs.debian.org; 21 Sep 2005 12:18:21 +0000
>From [EMAIL PROTECTED] Wed Sep 21 05:18:21 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1EI3X9-0007vM-00; Wed, 21 Sep 2005 05:17:07 -0700
From: Colin Watson <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#328982: fixed in man-db 2.4.3-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 21 Sep 2005 05:17:07 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2
Source: man-db
Source-Version: 2.4.3-3
We believe that the bug you reported is fixed in the latest version of
man-db, which is due to be installed in the Debian FTP archive:
man-db_2.4.3-3.diff.gz
to pool/main/m/man-db/man-db_2.4.3-3.diff.gz
man-db_2.4.3-3.dsc
to pool/main/m/man-db/man-db_2.4.3-3.dsc
man-db_2.4.3-3_powerpc.deb
to pool/main/m/man-db/man-db_2.4.3-3_powerpc.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Colin Watson <[EMAIL PROTECTED]> (supplier of updated man-db package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Wed, 21 Sep 2005 13:03:47 +0100
Source: man-db
Binary: man-db
Architecture: source powerpc
Version: 2.4.3-3
Distribution: unstable
Urgency: low
Maintainer: Colin Watson <[EMAIL PROTECTED]>
Changed-By: Colin Watson <[EMAIL PROTECTED]>
Description:
man-db - The on-line manual pager
Closes: 326488 328982
Changes:
man-db (2.4.3-3) unstable; urgency=low
.
* Ignore SIGINT and SIGQUIT in the parent while running subprocesses
(closes: #328982).
* Improve SIGCHLD handling in pipeline library (closes: #326488):
- Queue SIGCHLD for the whole time we're collecting child process
statuses; we need to keep a careful count of processes.
- Forget any previous errno before calling reap_children.
* Explicitly tell po2debconf to use the 'popular' output encoding, so that
the woody-compatibility hack works even with po-debconf 0.9.0.
Files:
3fb92c7b8cd6ef767633ec9cd4c63e30 594 doc important man-db_2.4.3-3.dsc
650d6dabef735dd6e96c1304de70d494 74008 doc important man-db_2.4.3-3.diff.gz
827897852218df9830594154731f79e2 691382 doc important
man-db_2.4.3-3_powerpc.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDMU1F9t0zAhD6TNERAkmjAJ4jPmH7RT5uzPQazkw6rDpRlCGGRQCggt55
2p1nmu5SbI6F7c1GylHjm4o=
=37PH
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]