Re: add mlterm and rxvt-unicode to dircolors.hin

2006-08-10 Thread Jim Meyering
Mike Frysinger [EMAIL PROTECTED] wrote: any chance of getting the other terms i posted a while back added as well ? i posted a patch which sorted TERM alphabetically (minor thing) and added: TERM ansi TERM color-xterm TERM gnome TERM konsole TERM kterm TERM rxvt-cygwin TERM

Re: Makefile.maint change for new translation repository format

2006-08-10 Thread Jim Meyering
Paul Eggert [EMAIL PROTECTED] wrote: The Translation Project has changed their repository format, and the coreutils procedure for getting translations no longer works. I'll temporarily work around this problem by getting them by hand. The first step is to remove the old code so that people

Re: add mlterm and rxvt-unicode to dircolors.hin

2006-08-10 Thread Mike Frysinger
On Thursday 10 August 2006 04:51, Jim Meyering wrote: Mike Frysinger [EMAIL PROTECTED] wrote: any chance of getting the other terms i posted a while back added as well ? i posted a patch which sorted TERM alphabetically (minor thing) and added: TERM ansi TERM color-xterm TERM gnome

Re: sync from gnulib to coreutils

2006-08-10 Thread Paul Eggert
Eric Blake [EMAIL PROTECTED] writes: Now that getaddrinfo has more module dependencies upstream, we need to pull in new files. OK, I grabbed some more files and installed the following change into coreutils along with these files. This led me to look at the snprintf module for the first time.

fix for csplit core dump on Solaris 10, Sun Studio 10, 64-bit sparc

2006-08-10 Thread Paul Eggert
I installed this: 2006-08-10 Paul Eggert [EMAIL PROTECTED] * src/csplit.c (struct control): Remove fastmap member. (extract_regexp): Allocate fastmap separately, since otherwise it might move due to a realloc. This fixes a bug that led to a core dump on 64-bit

Re: uniq i18n implementation

2006-08-10 Thread Pádraig Brady
Paul Eggert wrote: Using strcoll is inefficient anyway Don't we know it! If we can avoid it, we'd like to. Well, the mbstowcs+wcscoll solution I presented should be equivalent to strcoll on any platform, and it's much faster in my tests. That's good to know, though I'm puzzled as to why

Re: uniq i18n implementation

2006-08-10 Thread Paul Eggert
Pádraig Brady [EMAIL PROTECTED] writes: I was also using the string length comparison shortcut on the wide string. I'm unsure whether this is valid (on all platforms). Me too, which is why the current code is cautious about this sort of thing. Sorry, I'm not familiar with the ICU code. Is