|
|
@ -78,17 +78,24 @@ then |
|
|
|
if ! $is_abspath |
|
|
|
if ! $is_abspath |
|
|
|
then |
|
|
|
then |
|
|
|
# First, try to resolve the absolute path using $editors. |
|
|
|
# First, try to resolve the absolute path using $editors. |
|
|
|
for e in $editors |
|
|
|
while true |
|
|
|
do |
|
|
|
do |
|
|
|
if test "$(basename "${e}")" = "${editor}" |
|
|
|
for e in $editors |
|
|
|
then |
|
|
|
do |
|
|
|
editor="${e}" |
|
|
|
if test "$(basename "${e}")" = "${editor}" |
|
|
|
break |
|
|
|
then |
|
|
|
fi |
|
|
|
editor="${e}" |
|
|
|
|
|
|
|
break 2 # break out of both loops |
|
|
|
|
|
|
|
fi |
|
|
|
|
|
|
|
done |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Iterating through alternatives did not yield a result |
|
|
|
|
|
|
|
editor_no_alternative "${editor}" |
|
|
|
|
|
|
|
break |
|
|
|
done |
|
|
|
done |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
# Check if path is present |
|
|
|
# Check if editor is present |
|
|
|
test -f "${editor}" || editor_missing "${editor}" |
|
|
|
test -f "${editor}" || editor_missing "${editor}" |
|
|
|
|
|
|
|
|
|
|
|
for e in $editors |
|
|
|
for e in $editors |
|
|
|