ulm 15/01/13 17:21:42 Added: d-mode-2.0.6-emacs-24.4.patch Log: Fix build failure with Emacs 24.4, bug 536490. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Revision Changes Path 1.1 app-emacs/d-mode/files/d-mode-2.0.6-emacs-24.4.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/d-mode/files/d-mode-2.0.6-emacs-24.4.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emacs/d-mode/files/d-mode-2.0.6-emacs-24.4.patch?rev=1.1&content-type=text/plain Index: d-mode-2.0.6-emacs-24.4.patch =================================================================== https://bugs.gentoo.org/536490 --- Emacs-D-Mode-2.0.6-orig/d-mode.el +++ Emacs-D-Mode-2.0.6/d-mode.el @@ -66,6 +66,10 @@ ;; necessary to get them compiled.) ;; Coment out 'when-compile part for debugging (eval-when-compile + (and (= emacs-major-version 24) + (= emacs-minor-version 4) + (null emacs-repository-version) + (require 'cl)) (require 'cc-langs) (require 'cc-fonts) )
