What is the correct way to parse a buffer in order to store its content and reuse it?
Say I got this buffer:
always|five|words|by|line
not|always|the|same|words
sometimes|no|lines|at|all
but|only|five|no|more/less
What would be the best approach to construct a list from the symbols found in the lines (and error nicely if none are found)?
The buffer is there, I can visit it, get its content like so
(message "Buffer content : %s" (buffer-substring (point-min) (point-max)))
after I killed it cleanly, but somehow I fail at constructing the object (a list "lines" of lists "words") that would allow me to do this :
(list-length lines)
==> 4
(car (nthcdr 3 lines))
==> sometimes
Can a kindred soul point me toward the light? Thank you for your patience, Lisp elders.