(dolist (elt value)
(let ((start (point)))
(insert " ")
- ;; Print and try to read the element we just printed.
+ ;; Try to print and then to read an element.
(condition-case nil
(progn
(prin1 elt (current-buffer))
(goto-char start)
(read (current-buffer))))
(error
- ;; If reading it gets an error, comment it out.
+ ;; If writing or reading gave an error, comment it out.
(goto-char start)
(insert "\n")
(while (not (eobp))