[svn-commits] branch 1.2 r23580 - /branches/1.2/editline/makelist
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Sun Apr 30 04:19:05 MST 2006
Author: kpfleming
Date: Sun Apr 30 06:19:04 2006
New Revision: 23580
URL: http://svn.digium.com/view/asterisk?rev=23580&view=rev
Log:
ensure that the script output is correctly generated when the system's character set does not use the English lowercase/uppercase character groups
Modified:
branches/1.2/editline/makelist
Modified: branches/1.2/editline/makelist
URL: http://svn.digium.com/view/asterisk/branches/1.2/editline/makelist?rev=23580&r1=23579&r2=23580&view=diff
==============================================================================
--- branches/1.2/editline/makelist (original)
+++ branches/1.2/editline/makelist Sun Apr 30 06:19:04 2006
@@ -145,7 +145,7 @@
#
-fh)
cat $FILES | $AWK '/el_action_t/ { print $3 }' | \
- sort | tr '[a-z]' '[A-Z]' | $AWK '
+ sort | tr '[:lower:]' '[:upper:]' | $AWK '
BEGIN {
printf("/* Automatically generated file, do not edit */\n");
printf("#ifndef _h_fcns_c\n#define _h_fcns_c\n");
More information about the svn-commits
mailing list