Mark Triggs <[EMAIL PROTECTED]> writes: > (let ((subtrees (split-string > (with-current-buffer > output (buffer-string)) "\n" t)))
What's the 3rd argument of split-string in your Emacs ? ,----[ C-h f split-string RET ] | split-string is a compiled Lisp function in `subr'. | (split-string STRING &optional SEPARATORS) | | [ ... ] `---- I'm afraid this is a CVS-only feature :-( I think (split-string ... "\n*") is a more portable solution. BTW, I don't have this bug. For me, the tla inventory command returns "\n", and (split-string "\n" "\n") is nil, so, that's the expected behavior. You probably have another problem on you side (I don't say "don't fix the bug it's your fault", but "investigate, there is probably something else too"). -- Matthieu