From 0273cb61a4bb8a7ddd2dccf0d67d5da8c3da6a42 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Fri, 1 Jan 2021 12:39:14 +0100 Subject: [PATCH] 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. --- lisp/progmodes/ruby-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ ;;; Code: -(eval-when-compile (require 'cl-lib)) +(require 'cl-lib) (defgroup ruby nil "Major mode for editing Ruby code." -- 2.39.5