Removed debugging print statement

This commit is contained in:
j4nk 2022-12-29 11:23:20 -05:00
parent 1d53f10c0a
commit a33b039d9f
1 changed files with 0 additions and 1 deletions

View File

@ -140,7 +140,6 @@
(while (with-current-buffer inbuf (< (point) (point-max))) (while (with-current-buffer inbuf (< (point) (point-max)))
(setq line (with-current-buffer inbuf (getline))) (setq line (with-current-buffer inbuf (getline)))
(setq state (md4tj-next-state line state)) (setq state (md4tj-next-state line state))
(print line)
;; Insert next line(s) into output file ;; Insert next line(s) into output file
(insert (concat (md4tj-process-block line state) "\n")) (insert (concat (md4tj-process-block line state) "\n"))
;; Advance input file by a line ;; Advance input file by a line