[PATCH] Buglets fix in the new two scripts
[git.git] / git-commit-script
index f8d568c..42ee399 100755 (executable)
@@ -5,9 +5,7 @@ then
        cat .editmsg
        exit 1
 fi
-ED=${VISUAL:$EDITOR}
-ED=${ED:vi}
-$ED .editmsg
+${VISUAL:-${EDITOR:-vi}} .editmsg
 grep -v '^#' < .editmsg | git-stripspace > .cmitmsg
 [ -s .cmitmsg ] || exit 1
 tree=$(git-write-tree) || exit 1