]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Edebug specification for inline functions (Bug#53068).
authorPhilipp Stephani <phst@google.com>
Thu, 13 Jan 2022 11:55:06 +0000 (12:55 +0100)
committerPhilipp Stephani <phst@google.com>
Thu, 13 Jan 2022 12:52:40 +0000 (13:52 +0100)
* lisp/emacs-lisp/inline.el (inline-quote): Fix Edebug specification.

* test/lisp/emacs-lisp/edebug-tests.el (edebug-tests-inline): New unit
test.

lisp/emacs-lisp/inline.el
test/lisp/emacs-lisp/edebug-tests.el

index 963e117ff34378324f35177339c638bea1d9ada2..de0112db631bace24c72c72c6da0c4e320fadf3d 100644 (file)
@@ -71,7 +71,7 @@
 
 (defmacro inline-quote (_exp)
   "Similar to backquote, but quotes code and only accepts , and not ,@."
-  (declare (debug backquote-form))
+  (declare (debug (backquote-form)))
   (error "inline-quote can only be used within define-inline"))
 
 (defmacro inline-const-p (_exp)
index 92f63ec7880c8c55281a3df96bfc72fbb5d9ef60..4aae2870a3ac3d02bbbc6892d51769c8ac66cc81 100644 (file)
@@ -1093,5 +1093,15 @@ This avoids potential duplicate definitions (Bug#41988)."
               (edebug-new-definition name))))
       (should-error (eval-buffer) :type 'invalid-read-syntax))))
 
+(ert-deftest edebug-tests-inline ()
+  "Check that Edebug can instrument inline functions (Bug#53068)."
+  (with-temp-buffer
+    (print '(define-inline edebug-tests-inline (arg)
+              (inline-quote ,arg))
+           (current-buffer))
+    (let ((edebug-all-defs t)
+          (edebug-initial-mode 'Go-nonstop))
+      (eval-buffer))))
+
 (provide 'edebug-tests)
 ;;; edebug-tests.el ends here