aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Stephani2021-01-01 12:39:14 +0100
committerPhilipp Stephani2021-01-01 12:39:14 +0100
commit0273cb61a4bb8a7ddd2dccf0d67d5da8c3da6a42 (patch)
treee0497b85496e97b4e3bc4a7fb8693abe03847d7d
parent30a1d5da7a43d51a97cbe8d91add9a26dd99df90 (diff)
downloademacs-0273cb61a4bb8a7ddd2dccf0d67d5da8c3da6a42.tar.gz
emacs-0273cb61a4bb8a7ddd2dccf0d67d5da8c3da6a42.zip
Fix a compilation warning.
ruby-mode uses 'cl-evenp' at runtime, so cl-lib must be available at runtime as well. * lisp/progmodes/ruby-mode.el (cl-lib): Require at runtime as well.
-rw-r--r--lisp/progmodes/ruby-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el
index 5635bf1cabe..9acd7b47876 100644
--- a/lisp/progmodes/ruby-mode.el
+++ b/lisp/progmodes/ruby-mode.el
@@ -32,7 +32,7 @@
32 32
33;;; Code: 33;;; Code:
34 34
35(eval-when-compile (require 'cl-lib)) 35(require 'cl-lib)
36 36
37(defgroup ruby nil 37(defgroup ruby nil
38 "Major mode for editing Ruby code." 38 "Major mode for editing Ruby code."