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

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

[nongnu] elpa/d-mode b4cbdfc 094/346: Workaround issue #50.


From: ELPA Syncer
Subject: [nongnu] elpa/d-mode b4cbdfc 094/346: Workaround issue #50.
Date: Sun, 29 Aug 2021 11:00:10 -0400 (EDT)

branch: elpa/d-mode
commit b4cbdfc9bdae0ee1a7c401f616377d7031bbdf27
Author: Dmitri Makarov <dmakarov@alumni.stanford.edu>
Commit: Dmitri Makarov <dmakarov@alumni.stanford.edu>

    Workaround issue #50.
    
    The macros advice-add and add-function were added in Emacs 24.4.
    There's no reason to use old style defadvice with add-function.  This
    change disables special wrappers that handle indenting of 'static if',
    'version' and 'debug' constructs in d-mode for versions of Emacs prior
    to version 24.4 because the macros that install the wrappers were not
    available until the version 24.4.
---
 d-mode.el | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/d-mode.el b/d-mode.el
index 6b36223..798c6ec 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -488,16 +488,8 @@ operators."
         (remove-function (symbol-function 'looking-at)
                          #'d-special-case-looking-at)))))
 
-(if (> emacs-major-version 24)
-    (advice-add 'c-add-stmt-syntax :around #'d-around--c-add-stmt-syntax)
-  (defadvice c-add-stmt-syntax (around d-around--c-add-stmt-syntax activate)
-    (if (not (string= major-mode "d-mode"))
-        ad-do-it
-      (progn
-        (add-function :around (symbol-function 'looking-at) 
#'d-special-case-looking-at)
-        (unwind-protect
-            ad-do-it
-          (remove-function (symbol-function 'looking-at) 
#'d-special-case-looking-at))))))
+(when (version<= "24.4" emacs-version)
+  (advice-add 'c-add-stmt-syntax :around #'d-around--c-add-stmt-syntax))
 
 ;;----------------------------------------------------------------------------
 ;;;###autoload (add-to-list 'auto-mode-alist '("\\.d[i]?\\'" . d-mode))



reply via email to

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