org-export: Fix byte-compilation

* contrib/lisp/org-export.el (org-export-with-current-buffer-copy):
  Fix byte-compilation.
This commit is contained in:
Nicolas Goaziou 2012-07-02 11:56:17 +02:00
parent 0b89d5bcc6
commit a69f4b88c1
1 changed files with 3 additions and 3 deletions

View File

@ -2496,9 +2496,9 @@ buffer.
Point is at buffer's beginning when BODY is applied."
(org-with-gensyms (original-buffer offset buffer-string overlays)
`(let ((,original-buffer ,(current-buffer))
(,offset ,(1- (point-min)))
(,buffer-string ,(buffer-string))
`(let ((,original-buffer (current-buffer))
(,offset (1- (point-min)))
(,buffer-string (buffer-string))
(,overlays (mapcar
'copy-overlay (overlays-in (point-min) (point-max)))))
(with-temp-buffer