emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 35e5d31 03/11: Bug fix for missing 'cl requirement for des


From: Phil
Subject: [elpa] master 35e5d31 03/11: Bug fix for missing 'cl requirement for destructuring-bind macro
Date: Wed, 13 Jul 2016 13:25:58 +0000 (UTC)

branch: master
commit 35e5d3137f55d972344565c8dfb1bf1c3fdd9d7d
Author: Phil Sainty <address@hidden>
Commit: Phil Sainty <address@hidden>

    Bug fix for missing 'cl requirement for destructuring-bind macro
---
 delight.el |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/delight.el b/delight.el
index 989bb8c..840d03e 100644
--- a/delight.el
+++ b/delight.el
@@ -2,7 +2,7 @@
 ;;
 ;; Author: Phil S.
 ;; URL: http://www.emacswiki.org/emacs/DelightedModes
-;; Version: 1.01
+;; Version: 1.02
 
 ;; Commentary:
 ;;
@@ -52,11 +52,15 @@
 
 ;;; Changelog:
 ;;
+;; 1.02 - Bug fix for missing 'cl requirement for destructuring-bind macro.
 ;; 1.01 - Added support for using the keyword :major as the FILE argument
 ;;        for major modes, to avoid also processing them as minor modes.
 
 ;;; Code:
 
+(eval-when-compile
+  (require 'cl))
+
 (defvar delighted-modes ()
   "List of specs for modifying the display of mode names in the mode line.
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]