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

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

[elpa] externals/org dbea900d60 4/4: test-ob/org-babel-read: Fix for Ema


From: ELPA Syncer
Subject: [elpa] externals/org dbea900d60 4/4: test-ob/org-babel-read: Fix for Emacs 27
Date: Fri, 3 May 2024 15:58:41 -0400 (EDT)

branch: externals/org
commit dbea900d60988bb492b6d61c8e66388329eb4b88
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    test-ob/org-babel-read: Fix for Emacs 27
    
    * testing/lisp/test-ob.el (test-ob/org-babel-read): Do not use `dlet'
    that is not yet available in Emacs 27.
---
 testing/lisp/test-ob.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/testing/lisp/test-ob.el b/testing/lisp/test-ob.el
index 054f080750..da11258f2d 100644
--- a/testing/lisp/test-ob.el
+++ b/testing/lisp/test-ob.el
@@ -2590,7 +2590,8 @@ abc
               [1 2 (foo)])
             (org-babel-read "[1 2 (foo)]" inhibit)))
     ;; Special case: *this* literal is evaluated
-    (dlet ((*this* 100))
+    (defvar *this* nil)
+    (let ((*this* 100))
       (should
        (equal
         (if inhibit "*this*" 100)



reply via email to

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