Ignore =... files when checking for too-long Lisp file names.

This commit is contained in:
Richard M. Stallman 1996-06-29 07:09:25 +00:00
parent ba716acf76
commit 544174d9e7

View file

@ -127,7 +127,7 @@ fi
rm -f /tmp/el /tmp/elc
### Check for .el files that would overflow the 14-char limit if compiled.
long=`find lisp -name '???????????*.el' -print`
long=`find lisp -name '[a-zA-Z0-9]??????????*.el' -print`
if [ "$long" != "" ]; then
echo "The following .el file names are too long:"
echo "$long"