Hello! Maxim Cournoyer writes: [...] > The bug is triggered by this check in configure.ac: > > if test "$NO_CHECK_EMACS_PACKAGES" = "" ; then > AC_MSG_NOTICE("Checking prerequiste packages") > $EMACS -batch -q --no-site-file -eval \ > '(dolist (package > (quote (cl-lib loc-changes load-relative test-simple))) > (require package)) > )' > fi > if test $? -ne 0 ; then > AC_MSG_ERROR([Can't continue until above error is corrected.]) > fi > > > More specifically, running this with emacs: > > emacs -batch -q --no-site-file -eval '(dolist (package >> (quote (cl-lib loc-changes load-relative test-simple))) >> (require package)) >> )' > Trailing garbage following expression: > ) > > Reproduces it. I believe the attached patch fixes it. Feedback welcome! Maxim