branch: elpa/logview commit 136495368156c62eb8d00fe19efcd30a933f3191 Author: Paul Pogonyshev <pogonys...@gmail.com> Commit: Paul Pogonyshev <pogonys...@gmail.com>
Also test on Emacs 24. --- .travis.yml | 3 +++ test/logview.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dd59750c20..ddc314d6c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: emacs-lisp before_install: + # For Emacs 24 (deprecated PPA, but used only for Emacs 24). + - sudo add-apt-repository ppa:cassou/emacs -y # For Emacs 25. - sudo add-apt-repository ppa:kelleyk/emacs -y # For snapshot builds. @@ -9,6 +11,7 @@ before_install: - sudo apt-get install -q -y ${EMACS} env: + - EMACS=emacs24 - EMACS=emacs25 - EMACS=emacs-snapshot diff --git a/test/logview.el b/test/logview.el index 7b9079fdae..57c867a897 100644 --- a/test/logview.el +++ b/test/logview.el @@ -37,7 +37,7 @@ (let (erase-customizations) (dolist (customizable (custom-group-members 'logview nil)) (when (eq (cadr customizable) 'custom-variable) - (push (list (car customizable) (macroexp-quote (eval (car (get (car customizable) 'standard-value)) t))) erase-customizations))) + (push (list (car customizable) (list 'quote (eval (car (get (car customizable) 'standard-value)) t))) erase-customizations))) `(let (,@erase-customizations (inhibit-message t)) (advice-add 'display-warning :override #'logview--test-display-warning-advice)