fix(emacs/lean-info): lean-info-list-parse

close #302
This commit is contained in:
Soonho Kong 2015-03-27 11:37:47 -04:00
parent 5c1d7458b5
commit 7c9b364957

View file

@ -396,7 +396,10 @@ Take out \"BEGININFO\" and \"ENDINFO\" and Use \"ACK\" as a delim."
start-column)
(cond
;; Proof State Case
((and column-number (or (looking-at ",") (looking-back (rx "," (* white)))))
((and column-number (or (looking-at ",")
(and
(looking-at (rx white))
(looking-back (rx "," (* white))))))
;; Find a position of "," and filter the info-list to extract proofstate info
(lean-info-list-filter info-list
(save-excursion