From 35641037b7f938eabf4036fbafd8ea6c0d9f76cc Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Mon, 27 Oct 2014 12:40:50 -0400 Subject: [PATCH] debian bug766994: adapt to emacs 24.3 deprecation of c-* macros by default Adding a (eval-when-compile (require 'cl-lib)) as per the Internet appears to not-hurt on older emacs and work fine on rawhide 24.3. --- emacs/systemtap-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs/systemtap-mode.el b/emacs/systemtap-mode.el index cdcd6558a..42f48d5dd 100644 --- a/emacs/systemtap-mode.el +++ b/emacs/systemtap-mode.el @@ -53,7 +53,8 @@ (require 'cc-awk) (eval-when-compile (require 'cc-langs) - (require 'cc-fonts)) + (require 'cc-fonts) + (require 'cl-lib)) (eval-and-compile (c-add-language 'systemtap-mode 'awk-mode)) -- 2.43.5