diff options
author | Leo Liu <sdl.web@gmail.com> | 2019-01-08 05:15:24 +0800 |
---|---|---|
committer | Leo Liu <sdl.web@gmail.com> | 2019-01-08 05:16:03 +0800 |
commit | 9845044fb659735251269213e6e4e6debdd08eee (patch) | |
tree | 6e0660fec0678ad5b4d2740f2eb6d54258c4b848 /lisp/textmodes | |
parent | 13b586d7a7020ad3d28ccd980663586dfb8552b1 (diff) | |
download | emacs-9845044fb659735251269213e6e4e6debdd08eee.tar.gz emacs-9845044fb659735251269213e6e4e6debdd08eee.tar.bz2 emacs-9845044fb659735251269213e6e4e6debdd08eee.zip |
Speed up loading css-mode
lisp/textmodes/css-mode.el: Remove (require 'eww) which is redundant
and slow. (Bug#33939)
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/css-mode.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 016f0e8fc8c..67a0c9f7a57 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -32,7 +32,6 @@ ;;; Code: -(require 'eww) (require 'cl-lib) (require 'color) (require 'seq) |