From c166f075a3791bc0d2bbc71b6ad9d0bf6477c7a5 Mon Sep 17 00:00:00 2001 From: James Conroy-Finn Date: Sun, 10 Feb 2019 21:57:47 +0000 Subject: [PATCH] Add missing variable name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This enables compilation of the Ruby module where previously the following error would cause a breaking error. ../../../lang/ruby/autoload.el:48:45:Error: &rest without variable name ✕ Failed to compile modules/lang/ruby/autoload.el --- modules/lang/ruby/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/ruby/autoload.el b/modules/lang/ruby/autoload.el index 879e3ca4b..cc2b21323 100644 --- a/modules/lang/ruby/autoload.el +++ b/modules/lang/ruby/autoload.el @@ -45,7 +45,7 @@ started it." (+ruby-version)))) ;;;###autoload -(defun +ruby|update-version-in-all-buffers (&rest ) +(defun +ruby|update-version-in-all-buffers (&rest _) "Update `+ruby--version' in all `enh-ruby-mode' buffers." (dolist (buffer (doom-buffers-in-mode 'enh-ruby-mode)) (setq +ruby-version-cache (clrhash +ruby-version-cache))