diff options
| author | Glenn Morris | 2017-10-20 13:07:30 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-10-20 13:07:30 -0400 |
| commit | 11bd8aa24b347f75e674528dd1a94b0a4037105e (patch) | |
| tree | 8aa1de1d58e822a0b6a9107dad04e5c3838310ea /lisp | |
| parent | b500e06f4d05dc094b79f8f2c063e070a5a3306e (diff) | |
| download | emacs-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 'lisp')
| -rw-r--r-- | lisp/progmodes/flymake.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 9c546fd9667..3c588f02fa6 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el | |||
| @@ -48,7 +48,8 @@ | |||
| 48 | (require 'thingatpt) ; end-of-thing | 48 | (require 'thingatpt) ; end-of-thing |
| 49 | (require 'warnings) ; warning-numeric-level, display-warning | 49 | (require 'warnings) ; warning-numeric-level, display-warning |
| 50 | (require 'compile) ; for some faces | 50 | (require 'compile) ; for some faces |
| 51 | (require 'subr-x) ; when-let*, if-let*, hash-table-keys, hash-table-values | 51 | ;; when-let*, if-let*, hash-table-keys, hash-table-values: |
| 52 | (eval-when-compile (require 'subr-x)) | ||
| 52 | 53 | ||
| 53 | (defgroup flymake nil | 54 | (defgroup flymake nil |
| 54 | "Universal on-the-fly syntax checker." | 55 | "Universal on-the-fly syntax checker." |