From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.5) Gecko/20041228 Firefox/1.0 Fedora/1.0-8 Description of problem: There is a shell script error in the latest vim in raw hide. There is a missing " in vimspell.sh at line 25. It is: [ -e $OUTFILE ] && { echo "Cannot use temporary file $OUTFILE, it already exists!; exit 1 ; } It should be: [ -e $OUTFILE ] && { echo "Cannot use temporary file $OUTFILE, it already exists!"; exit 1 ; } Version-Release number of selected component (if applicable): vim-common-6.3.058-2 How reproducible: Always Steps to Reproduce: 1. sh -n /usr/share/vim/vim63/tools/vimspell.sh Actual Results: sh -n /usr/share/vim/vim63/tools/vimspell.sh /usr/share/vim/vim63/tools/vimspell.sh: line 53: unexpected EOF while looking for matching `"' /usr/share/vim/vim63/tools/vimspell.sh: line 55: syntax error: unexpected end of file Expected Results: No problems reported. Additional info: