mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-20 19:52:48 +00:00
rust-mode.el uses the 'cl macros, so it should actually require them
Without this change, rust-mode doesn't work if 'cl hasn't been required by something else, apparently. I'm not entirely sure what changed such that I started seeing this problem instead of not, but maybe the emacs world has been making progress towards not loading 'cl at runtime if it's only needed at compile time.
This commit is contained in:
parent
ac3dc66ec1
commit
8453f3110c
@ -7,6 +7,7 @@
|
||||
|
||||
(require 'cm-mode)
|
||||
(require 'cc-mode)
|
||||
(eval-when-compile (require 'cl))
|
||||
|
||||
(defun rust-electric-brace (arg)
|
||||
(interactive "*P")
|
||||
|
Loading…
Reference in New Issue
Block a user