bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#10243: 8.14: ls --color is uninterruptible with ctrl+c (and no netwo


From: Pádraig Brady
Subject: bug#10243: 8.14: ls --color is uninterruptible with ctrl+c (and no network fs in use)
Date: Wed, 07 Dec 2011 20:11:58 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20110816 Thunderbird/6.0

On 12/07/2011 05:56 PM, Jim Meyering wrote:
> Arkadiusz Miśkiewicz wrote:
>> When doing "ls --color=tty" or "ls --color=auto" on directory then ls ignores
>> (?) ctrl+c or ctrl+z signals. Basically I'm unable to interrupt ls in such
>> case. Easily reproducible with bigger directories.

> Thanks for the report.
> I reproduced it starting in an empty directory like this:
> 
>     seq 100000|xargs touch
>     env ls --color -1
> 
> and tried to interrupt that.
> Failed to interrupt every time.
> 
> Here's one way to fix it:
> 
> diff --git a/src/ls.c b/src/ls.c
> index 8be9b6a..58bb196 100644
> --- a/src/ls.c
> +++ b/src/ls.c
> @@ -4060,9 +4060,9 @@ print_name_with_quoting (const struct fileinfo *f,
>    if (stack)
>      PUSH_CURRENT_DIRED_POS (stack);
> 
> +  process_signals ();
>    if (used_color_this_time)
>      {
> -      process_signals ();
>        prep_non_filename_text ();
>        if (start_col / line_length != (start_col + width - 1) / line_length)
>          put_indicator (&color_indicator[C_CLR_TO_EOL]);

Looks like a good fix.
It works here and had negligible impact on performance.

cheers,
Pádraig.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]