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:
parent
9e34efb29a
commit
67276f3403
1 changed files with 1 additions and 1 deletions
|
@ -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))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue