0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-26 20:02:53 +00:00

Skip encoding step when writing out the batch agenda

This commit is contained in:
Carsten Dominik 2009-10-12 14:52:47 +02:00
parent cc0a819186
commit 7d327d48c4

View file

@ -2058,10 +2058,13 @@ before running the agenda command."
(set-buffer org-agenda-buffer-name)
(princ (org-encode-for-stdout (buffer-string)))))
;(defun org-encode-for-stdout (string)
; (if (fboundp 'encode-coding-string)
; (encode-coding-string string buffer-file-coding-system)
; string))
(defun org-encode-for-stdout (string)
(if (fboundp 'encode-coding-string)
(encode-coding-string string buffer-file-coding-system)
string))
string)
(defvar org-agenda-info nil)