#567723 Under Debian::Lenny, icedax systematically replaces accented characters by an underscore

Package:
icedax
Source:
cdrkit
Description:
Creates WAV files from audio CDs
Submitter:
BULIN Claude
Date:
2010-01-30 22:21:05 UTC
Severity:
normal
#567723#5
Date:
2010-01-30 22:15:43 UTC
From:
To:
Under Debian::Lenny, icedax systematically replaces accented characters by an underscore

? Is it possible to have such an option to avoid the underscore:

static void filter_nonprintable(char *c, size_t l)
{
	size_t i;
	for(i = 0; i < l; ++i) {
		if(!isprint(c[i]) && !isspace(c[i])) {
			// TODO: c[i] = '_';
		}
	}
}

Best regards