Fix compilation warnings

This commit is contained in:
Greg Sexton 2014-11-16 14:12:06 +00:00
parent 39b3129f37
commit 842b5c3a8d

View File

@ -47,7 +47,7 @@
(defun origami-get-positions (content regex)
(with-temp-buffer
(insert content)
(beginning-of-buffer)
(goto-char (point-min))
(let (acc)
(while (re-search-forward regex nil t)
(let ((match (match-string 0)))
@ -92,7 +92,7 @@
(lambda (content)
(with-temp-buffer
(insert content)
(beginning-of-buffer)
(goto-char (point-min))
(beginning-of-defun -1)
(let (beg end offset acc)
(while (< (point) (point-max))