Make debugging ert--erts-specifications easier

* lisp/emacs-lisp/ert.el (ert--erts-specifications): Strip text
properties from specs to make debugging easier.
This commit is contained in:
Lars Ingebrigtsen 2021-11-07 23:45:14 +01:00
parent 9e34efb29a
commit 67276f3403

View file

@ -2759,7 +2759,7 @@ TRANSFORM will be called to get from before to after."
(while (looking-at "[ \t]+\\(.*\\)")
(setq value (concat value (match-string 1)))
(forward-line 1))
(push (cons name value) specs))
(push (cons name (substring-no-properties value)) specs))
(forward-line 1)))
(nreverse specs))))