aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2017-10-20 13:07:30 -0400
committerGlenn Morris2017-10-20 13:07:30 -0400
commit11bd8aa24b347f75e674528dd1a94b0a4037105e (patch)
tree8aa1de1d58e822a0b6a9107dad04e5c3838310ea /test
parentb500e06f4d05dc094b79f8f2c063e070a5a3306e (diff)
downloademacs-11bd8aa24b347f75e674528dd1a94b0a4037105e.tar.gz
emacs-11bd8aa24b347f75e674528dd1a94b0a4037105e.zip
Fix flymake's loading of subr-x
* lisp/progmodes/flymake.el, test/lisp/progmodes/flymake-tests.el: No need to load subr-x at run-time.
Diffstat (limited to 'test')
-rw-r--r--test/lisp/progmodes/flymake-tests.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lisp/progmodes/flymake-tests.el b/test/lisp/progmodes/flymake-tests.el
index eddd964ad14..cfa810053ca 100644
--- a/test/lisp/progmodes/flymake-tests.el
+++ b/test/lisp/progmodes/flymake-tests.el
@@ -24,7 +24,7 @@
24;;; Code: 24;;; Code:
25(require 'ert) 25(require 'ert)
26(require 'flymake) 26(require 'flymake)
27(require 'subr-x) ; string-trim 27(eval-when-compile (require 'subr-x)) ; string-trim
28 28
29(defvar flymake-tests-data-directory 29(defvar flymake-tests-data-directory
30 (expand-file-name "lisp/progmodes/flymake-resources" 30 (expand-file-name "lisp/progmodes/flymake-resources"