branch: externals/org
commit e2e20b64eb60933580beea14014b7e41201cabd1
Author: Simon Cossar <[email protected]>
Commit: Ihor Radchenko <[email protected]>

    testing/lisp/test-ob-clojure.el: Simplify check for Clojure support
    
    * test-ob-clojure.el: Improve the conditional that's used to check
    for Clojure support.
---
 testing/lisp/test-ob-clojure.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testing/lisp/test-ob-clojure.el b/testing/lisp/test-ob-clojure.el
index e4e02f78325..78aa2f0e352 100644
--- a/testing/lisp/test-ob-clojure.el
+++ b/testing/lisp/test-ob-clojure.el
@@ -25,7 +25,7 @@
 ;;; Code:
 (require 'org-test "../testing/org-test")
 
-(unless (featurep 'ob-clojure)
+(unless (and (featurep 'ob-clojure) org-babel-clojure-backend)
   (signal 'missing-test-dependency '("Support for Clojure code blocks")))
 
 ;; tangle

Reply via email to