]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a compilation warning.
authorPhilipp Stephani <phst@google.com>
Fri, 1 Jan 2021 11:39:14 +0000 (12:39 +0100)
committerPhilipp Stephani <phst@google.com>
Fri, 1 Jan 2021 11:39:14 +0000 (12:39 +0100)
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

index 5635bf1cabe7111e547be4942810786c32faa313..9acd7b47876b197b7bca587d725cd3a16bff92e6 100644 (file)
@@ -32,7 +32,7 @@
 
 ;;; Code:
 
-(eval-when-compile (require 'cl-lib))
+(require 'cl-lib)
 
 (defgroup ruby nil
   "Major mode for editing Ruby code."