Menu

#10 albert source encodings

open
nobody
None
5
2012-04-24
2012-04-24
No

albert cannot be loaded in implementations using utf-8 external-format by default.

I used this script to convert albert sources in utf-8:

find . \( -name \*.lisp -o -name \*.asd \) -print \ | while read f ; do
cp "${f}" "${f}~" \ && iconv -f iso-8859-1 -t utf-8 < "${f}~" \ | sed -e '1s/ *-\*- *$/; coding:utf-8 -*-/' \ > "${f}"
done

Discussion


Log in to post a comment.