mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* lib/edit.spell.rc: Try aspell before resorting to ispell.
This commit is contained in:
parent
419a1aa3dc
commit
6f248850ea
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user