changeset 66409:5a25cc5e524a

(org-start-icalendar-file): Fixed format form.
author Carsten Dominik <dominik@science.uva.nl>
date Mon, 24 Oct 2005 19:37:30 +0000
parents 1df142d9f7e5
children 779be9915a30
files lisp/textmodes/org.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/org.el	Mon Oct 24 19:36:17 2005 +0000
+++ b/lisp/textmodes/org.el	Mon Oct 24 19:37:30 2005 +0000
@@ -9574,13 +9574,13 @@
   (let ((user user-full-name)
 	(calname "something")
 	(name (or name "unknown"))
-	(timezone "FIXME"))
+	(timezone "Europe/Amsterdam")) ;; FIXME:  How to get the real timezone?
     (princ
      (format "BEGIN:VCALENDAR
 VERSION:2.0
 X-WR-CALNAME:%s
 PRODID:-//%s//Emacs with Org-mode//EN
-X-WR-TIMEZONE:Europe/Amsterdam
+X-WR-TIMEZONE:Europe/%s
 CALSCALE:GREGORIAN\n" name user timezone))))
 
 (defun org-finish-icalendar-file ()