Date: Mon, 4 Aug 2003 07:10:33 -0700 (PDT) From: "Andrey A. Chernov" <ache@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libedit makelist Message-ID: <200308041410.h74EAXFP020067@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
ache 2003/08/04 07:10:33 PDT FreeBSD src repository Modified files: lib/libedit makelist Log: Fix double-wrong tr usage: tr '[a-z]' '[A-Z]' First of all, it should be written as: tr 'a-z' 'A-Z' ranges not encolosed in [] according to POSIX, so [] just included in the replacement. Second, it should be written: tr '[:lower:]' '[:upper:]' since a-z and A-Z may have different length in some locales. Revision Changes Path 1.6 +1 -1 src/lib/libedit/makelist
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200308041410.h74EAXFP020067>