Your message dated Mon, 10 Nov 1997 00:16:26 +0100 (GMT+0100)
with message-id <[EMAIL PROTECTED]>
and subject line dialog_0.9a-10.2_i386 Uploaded...
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'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Ian Jackson
(maintainer, Debian bug tracking system)

Received: (at submit) by bugs.debian.org; 18 May 1997 12:20:56 +0000
Received: (qmail 18148 invoked from network); 18 May 1997 12:20:55 -0000
Received: from gimli.Informatik.Uni-Oldenburg.DE (134.106.1.10)
  by master.debian.org with SMTP; 18 May 1997 12:20:54 -0000
Received: by gimli.Informatik.Uni-Oldenburg.DE (Smail3.1.29.1)
        id <m0wT4xc-0003MvC>; Sun, 18 May 97 14:21 CST
Received: at Infodrom Oldenburg (/\##/\ Smail3.1.29.1 #29.12 Joey)
        by finlandia.Infodrom.North.DE
        id <m0wT4xy-000VKSC>; Sun, 18 May 97 14:21 MET DST
Message-Id: <[EMAIL PROTECTED]>
Date: Sun, 18 May 97 14:21 MET DST
From: [EMAIL PROTECTED] (Martin Schulze)
To: [EMAIL PROTECTED]
Subject: dialog doesn't support ^U [with patch]

Package: dialog
Version: 0.9a-8

Dialog doesn't handle '^U' to erase the input line.

Here's support for it.  I'd be glad if this could be included in the
source tree and mailed to the upstream maintainer.

In inputbox.c at line ~160, please add the following case statement:

            case KEY_BACKSPACE:
            case 127:
[..]
            case 21:  /* ^U   support by Martin Schulze <[EMAIL PROTECTED]> */
                input_x = 0;
                scroll = 0;
                wmove (dialog, box_y, box_x);
                for (i = 0; i < box_width - 1; i++)
                  waddch (dialog, ' ');
                instr[0] = '\0';
                wmove (dialog, box_y, input_x + box_x);
                wrefresh_lock (dialog);
                continue;
            default:
[..]

Regards,

        Joey


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .

Reply via email to