diff options
author | Joerg Bornemann <joerg.bornemann@qt.io> | 2020-12-16 07:28:31 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@qt.io> | 2020-12-16 07:28:31 (GMT) |
commit | 591d4bbdafea42292f6ef7acaf033c22361f8c26 (patch) | |
tree | 0622057330d8a008f0226bdade0b31d47f3a2342 /Auxiliary/cmake-mode.el | |
parent | 901386f646ea9949b44c5cc3b41e62bb285ffcc4 (diff) | |
download | CMake-591d4bbdafea42292f6ef7acaf033c22361f8c26.zip CMake-591d4bbdafea42292f6ef7acaf033c22361f8c26.tar.gz CMake-591d4bbdafea42292f6ef7acaf033c22361f8c26.tar.bz2 |
cmake-mode.el: Require the rx package
We're using rx in cmake-mode.el. Technically, we don't have to load the
package, because it's already loaded at startup. But it's good style to
explicitly require the packages we use, if only to give a quick overview
of the package dependencies.
Diffstat (limited to 'Auxiliary/cmake-mode.el')
-rw-r--r-- | Auxiliary/cmake-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Auxiliary/cmake-mode.el b/Auxiliary/cmake-mode.el index 190fdf5..52f2d41 100644 --- a/Auxiliary/cmake-mode.el +++ b/Auxiliary/cmake-mode.el @@ -28,6 +28,7 @@ ;; (require 'rst) +(require 'rx) (defcustom cmake-mode-cmake-executable "cmake" "*The name of the cmake executable. |