1
1

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

Этот коммит содержится в:
Pavel Roskin 2001-09-20 01:13:29 +00:00
родитель 419a1aa3dc
Коммит 6f248850ea
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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>

Просмотреть файл

@ -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