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

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

[elpa] externals/osm 3b52eb181d 1/3: Don't use json-available-p (Fix #12


From: ELPA Syncer
Subject: [elpa] externals/osm 3b52eb181d 1/3: Don't use json-available-p (Fix #12)
Date: Fri, 18 Mar 2022 04:57:47 -0400 (EDT)

branch: externals/osm
commit 3b52eb181dad53a5bf2293aeb185aa126a550acb
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Don't use json-available-p (Fix #12)
---
 osm.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/osm.el b/osm.el
index f97bc4de0c..20cff1bc08 100644
--- a/osm.el
+++ b/osm.el
@@ -686,8 +686,9 @@ Should be at least 7 days according to the server usage 
policies."
       (warn "osm: Support for %s images is missing" type)))
   (unless (libxml-available-p)
     (warn "osm: libxml is not available"))
-  (unless (json-available-p)
-    (warn "osm: libjansson is not available"))
+  ;; json-available-p is not available on Emacs 27
+  ;; (unless (json-available-p)
+  ;;   (warn "osm: libjansson is not available"))
   (setq-local osm-server osm-server
               line-spacing nil
               cursor-type nil



reply via email to

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