diff options
| author | Paul Eggert | 2019-07-06 07:48:15 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-07-06 07:49:54 -0700 |
| commit | 3a1fa9ed3f549ea9ac1eb07653d631372379c522 (patch) | |
| tree | 5981dc79807aa2cf6e7d483a8c377b98223d9dbd /admin | |
| parent | 372efa6a4143561b093dcc49d5f1b7eb0c443131 (diff) | |
| download | emacs-3a1fa9ed3f549ea9ac1eb07653d631372379c522.tar.gz emacs-3a1fa9ed3f549ea9ac1eb07653d631372379c522.zip | |
Fix [[:xdigit:]] glitch on Solaris
* admin/charsets/mapconv: Revert this [[:xdigit:]] change.
Solaris 10 ‘sed’ does not support [[:xdigit:]].
Diffstat (limited to 'admin')
| -rwxr-xr-x | admin/charsets/mapconv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/charsets/mapconv b/admin/charsets/mapconv index 2696b13a52e..8e19972f3df 100755 --- a/admin/charsets/mapconv +++ b/admin/charsets/mapconv | |||
| @@ -118,7 +118,7 @@ elif [ "$3" = "IANA" ] ; then | |||
| 118 | # Source format is: | 118 | # Source format is: |
| 119 | # 0xXX 0xYYYY | 119 | # 0xXX 0xYYYY |
| 120 | sed -n -e "${2}p" < $1 \ | 120 | sed -n -e "${2}p" < $1 \ |
| 121 | | sed -e 's/\(0x[[:xdigit:]]*\)[^0]*\(0x[[:xdigit:]]*\).*/\1 \2/' \ | 121 | | sed -e 's/\(0x[0-9A-Fa-f]*\)[^0]*\(0x[0-9A-Fa-f]*\).*/\1 \2/' \ |
| 122 | | sort | ${AWKPROG} | 122 | | sort | ${AWKPROG} |
| 123 | elif [ "$3" = "UNICODE" ] ; then | 123 | elif [ "$3" = "UNICODE" ] ; then |
| 124 | # Source format is: | 124 | # Source format is: |