Browse Source

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.
Joerg Bornemann 4 years ago
parent
commit
591d4bbdaf
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Auxiliary/cmake-mode.el

+ 1 - 0
Auxiliary/cmake-mode.el

@@ -28,6 +28,7 @@
 ;;
 
 (require 'rst)
+(require 'rx)
 
 (defcustom cmake-mode-cmake-executable "cmake"
   "*The name of the cmake executable.