]> git.eshelyaron.com Git - sweep.git/commitdiff
ENHANCED: Display message if unable to find predicate location
authorJames N. V. Cash <james.cash@occasionallycogent.com>
Sun, 11 Sep 2022 12:50:58 +0000 (15:50 +0300)
committerEshel Yaron <me@eshelyaron.com>
Sun, 11 Sep 2022 12:50:58 +0000 (15:50 +0300)
sweep.el

index c10870f5411e0cf2180f73fcbbc1e0e85b590d59..9dcc1166db4bd74ae57129d4536137946351d35d 100644 (file)
--- a/sweep.el
+++ b/sweep.el
@@ -385,12 +385,13 @@ FLAG and VALUE are specified as strings and read as Prolog terms."
 MFN must be a string of the form \"M:F/N\" where M is a Prolog
 module name, F is a functor name and N is its arity."
   (interactive (list (sweep-read-predicate)))
-  (let* ((loc (sweep-predicate-location mfn))
-         (path (car loc))
-         (line (or (cdr loc) 1)))
-    (find-file path)
-    (goto-char (point-min))
-    (forward-line (1- line))))
+  (if-let ((loc (sweep-predicate-location mfn)))
+      (let ((path (car loc))
+            (line (or (cdr loc) 1)))
+        (find-file path)
+        (goto-char (point-min))
+        (forward-line (1- line)))
+    (user-error "Unable to locate predicate %s" mfn)))
 
 (defun sweep-modules-collection ()
   (sweep-open-query "user" "sweep" "sweep_modules_collection" nil)