* lib/edit.spell.rc: Try aspell before resorting to ispell.

This commit is contained in:
Pavel Roskin 2001-09-20 01:13:29 +00:00
parent 419a1aa3dc
commit 6f248850ea
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2001-09-19 Pavel Roskin <proski@gnu.org>
* lib/edit.spell.rc: Try aspell before resorting to ispell.
* syntax/php.syntax: Replace with a better implementation by
Max Schedriviy <max@tavrida.net>

View File

@ -5,4 +5,8 @@
# $2 - highlight block file name
# $3 - error file name
ispell "$2" 2>"$3"
if aspell </dev/null >/dev/null 2>&1; then
aspell -c "$2" 2>"$3"
else
ispell "$2" 2>"$3"
fi