Your message dated Fri, 14 Oct 2005 14:47:10 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#333091: fixed in less 392-1
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; 10 Oct 2005 10:21:07 +0000
>From [EMAIL PROTECTED] Mon Oct 10 03:21:07 2005
Return-path: <[EMAIL PROTECTED]>
Received: from dixsept.loria.fr [152.81.9.195] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EOumI-0005w7-00; Mon, 10 Oct 2005 03:21:07 -0700
Received: from vlefevre by dixsept.loria.fr with local (Exim 4.54)
        id 1EOumG-00036v-PG; Mon, 10 Oct 2005 12:21:04 +0200
Date: Mon, 10 Oct 2005 12:21:04 +0200
From: Vincent Lefevre <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: less -c displays garbage at the end of lines longer than terminal 
width when searching
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="fUYQa+Pmc3FrFX/N"
Content-Disposition: inline
X-Reportbug-Version: 3.17
X-Mailer-Info: http://www.vinc17.org/mutt/
User-Agent: Mutt/1.5.11-vl-20051010
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.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
        UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2005_01_02


--fUYQa+Pmc3FrFX/N
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: less
Version: 391-1
Severity: normal

On the attached file, when I do "LESS= less -c mpfr-impl.h", then
"/MPFR_GMP" (i.e. search for MPFR_GMP) in a 80-column xterm, I get:

#if 
defined(__GNU_MP_VERSION)&&defined(__GNU_MP_VERSION_MINOR)&&defined(__GNU_M_VERSION_PATCHLEVEL)************************************/
# define __MPFR_GMP(a, b, c) \
(MPFR_VERSION_NUM(__GNU_MP_VERSION,__GNU_MP_VERSION_MINOR,__GNU_MP_VERSION_PATCLEVEL)
 >= MPFR_VERSION_NUM(a,b,c)), but GMP's one! */
#else
# define __MPFR_GMP(a, b, c) 0
#endif

at the end, instead of:

#if 
defined(__GNU_MP_VERSION)&&defined(__GNU_MP_VERSION_MINOR)&&defined(__GNU_M_VERSION_PATCHLEVEL)
# define __MPFR_GMP(a, b, c) \
(MPFR_VERSION_NUM(__GNU_MP_VERSION,__GNU_MP_VERSION_MINOR,__GNU_MP_VERSION_PATCLEVEL)
 >= MPFR_VERSION_NUM(a,b,c))
#else
# define __MPFR_GMP(a, b, c) 0
#endif

No problem without the -c switch (or when I look at the end of the file
without the search).

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11.10-20050517
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)

Versions of packages less depends on:
ii  debianutils                   2.14.3     Miscellaneous utilities specific t
ii  libc6                         2.3.5-6    GNU C Library: Shared libraries an
ii  libncurses5                   5.4-9      Shared libraries for terminal hand

less recommends no packages.

-- no debconf information

--fUYQa+Pmc3FrFX/N
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="mpfr-impl.h"

/* Utilities for MPFR developers, not exported.

Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005
  Free Software Foundation, Inc.

This file is part of the MPFR Library.

The MPFR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The MPFR Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the MPFR Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 51 Franklin Place, Fifth Floor, Boston,
MA 02110-1301, USA. */

#ifndef __MPFR_IMPL_H__
#define __MPFR_IMPL_H__

/* Include stdio.h iff we are debugging or we want to check */
#if defined(DEBUG) || defined(WANT_ASSERT)
# include <stdio.h>
#endif

/* Check if we are inside a build of MPFR or inside the test suite.
   This is needed in mpfr.h to export or import the functions.
   It matters only for Windows DLL */
#ifndef __MPFR_TEST_H__
# define __MPFR_WITHIN_MPFR 1
#endif

/******************************************************
 ****************** Include files *********************
 ******************************************************/

/* Include 'config.h' before using ANY configure macros if needed
   NOTE: It isn't MPFR 'config.h', but GMP's one! */
#if defined(HAVE_CONFIG_H)
#if HAVE_CONFIG_H
#include "config.h"
#endif
#endif

#ifdef  MPFR_HAVE_GMP_IMPL /* Build with gmp internals*/

# ifndef __GMP_H__
#  include "gmp.h"
# endif
# ifndef __GMP_IMPL_H__
#  include "gmp-impl.h"
# endif
# ifdef MPFR_NEED_LONGLONG_H
#  include "longlong.h"
# endif
# ifndef __MPFR_H
#  include "mpfr.h"
# endif

#else /* Build without gmp internals */

# ifndef __GMP_H__
#  include "gmp.h"
# endif
# ifndef __MPFR_H
#  include "mpfr.h"
# endif
# ifndef __GMPFR_GMP_H__
#  include "mpfr-gmp.h"
# endif
# ifdef MPFR_NEED_LONGLONG_H
#  include "mpfr-longlong.h"
# endif

#endif
#undef MPFR_NEED_LONGLONG_H


/******************************************************
 ***************** Detection macros *******************
 ******************************************************/

/* Macros to detect STDC, GCC, GLIBC, GMP and ICC version */
#if defined(__STDC_VERSION__)
# define __MPFR_STDC(version) (__STDC_VERSION__>=(version))
#elif defined(__STDC__)
# define __MPFR_STDC(version) (0 == (version))
#else
# define __MPFR_STDC(version) 0
#endif

#if defined(__GNUC__) && defined(__GNUC_MINOR__) && !defined(__ICC)
# define __MPFR_GNUC(a, i) \
 (MPFR_VERSION_NUM(__GNUC__,__GNUC_MINOR__,0)>=MPFR_VERSION_NUM(a,i,0))
#else
# define __MPFR_GNUC(a, i) 0
#endif

#if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
# define __MPFR_GLIBC(a, i) \
 (MPFR_VERSION_NUM(__GLIBC__,__GLIBC_MINOR__,0)>=MPFR_VERSION_NUM(a,i,0))
#else
# define __MPFR_GLIBC(a, i) 0
#endif

#if 
defined(__GNU_MP_VERSION)&&defined(__GNU_MP_VERSION_MINOR)&&defined(__GNU_MP_VERSION_PATCHLEVEL)
# define __MPFR_GMP(a, b, c) \
(MPFR_VERSION_NUM(__GNU_MP_VERSION,__GNU_MP_VERSION_MINOR,__GNU_MP_VERSION_PATCHLEVEL)
 >= MPFR_VERSION_NUM(a,b,c))
#else
# define __MPFR_GMP(a, b, c) 0
#endif

--fUYQa+Pmc3FrFX/N--

---------------------------------------
Received: (at 333091-close) by bugs.debian.org; 14 Oct 2005 21:49:40 +0000
>From [EMAIL PROTECTED] Fri Oct 14 14:49:40 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EQXOQ-0001CZ-00; Fri, 14 Oct 2005 14:47:10 -0700
From: Thomas Schoepf <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#333091: fixed in less 392-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 14 Oct 2005 14:47:10 -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: less
Source-Version: 392-1

We believe that the bug you reported is fixed in the latest version of
less, which is due to be installed in the Debian FTP archive:

less_392-1.diff.gz
  to pool/main/l/less/less_392-1.diff.gz
less_392-1.dsc
  to pool/main/l/less/less_392-1.dsc
less_392-1_i386.deb
  to pool/main/l/less/less_392-1_i386.deb
less_392.orig.tar.gz
  to pool/main/l/less/less_392.orig.tar.gz



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.
Thomas Schoepf <[EMAIL PROTECTED]> (supplier of updated less 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: Fri, 14 Oct 2005 23:05:23 +0200
Source: less
Binary: less
Architecture: source i386
Version: 392-1
Distribution: unstable
Urgency: low
Maintainer: Thomas Schoepf <[EMAIL PROTECTED]>
Changed-By: Thomas Schoepf <[EMAIL PROTECTED]>
Description: 
 less       - Pager program similar to more
Closes: 332671 333091 333140 333783 333920
Changes: 
 less (392-1) unstable; urgency=low
 .
   * New upstream version
   * Closes: #332671: early parts of overlong lines are missing when
     single-stepping through file
   * Closes: #333091: less -c displays garbage at the end of lines longer
     than terminal width when searching
   * Closes: #333140: line wrapping is buggy with less -c
   * Closes: #333783: less: Does not work properly line length > 80
   * Closes: #333920: less: very weird output
   * debian/control: Standards-Version: 3.6.2. No changes required.
   * debian/control: Build-Depends: debhelper (>= 4.0.0)
   * debian/rules: s/DH_COMPAT=2/DH_COMPAT=4/
Files: 
 88f5f7ad523ad4fb2926ad08ab1a5af9 570 text standard less_392-1.dsc
 462f6b0be88f25673a0ed4ddfdab803a 280508 text standard less_392.orig.tar.gz
 6f21a0b702c664fa9b3ddd9eb905614b 14998 text standard less_392-1.diff.gz
 0ac65acc8d0abfa5836559d0476d00a4 110188 text standard less_392-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iEYEARECAAYFAkNQIzkACgkQBL31vrD6T0mk/gCZAZD0UqMRJb7CVOH9aAzvItHI
4pMAoKxumuU5hpASz/8oHZQFWD5piIFa
=aIWp
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to