From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fritz Kunze Subject: emacs 23.1 crash on small org file (org-version 6.36) Date: Thu, 20 May 2010 16:43:58 -0700 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0238760239==" Return-path: Received: from [140.186.70.92] (port=43826 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFFPH-0002cf-Rx for emacs-orgmode@gnu.org; Thu, 20 May 2010 19:44:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFFPE-0003tl-Hq for emacs-orgmode@gnu.org; Thu, 20 May 2010 19:44:03 -0400 Received: from mail-qy0-f191.google.com ([209.85.221.191]:42653) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFFPE-0003te-AX for emacs-orgmode@gnu.org; Thu, 20 May 2010 19:44:00 -0400 Received: by qyk29 with SMTP id 29so584340qyk.14 for ; Thu, 20 May 2010 16:43:58 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --===============0238760239== Content-Type: multipart/alternative; boundary=0016364d269bff906704870f25a6 --0016364d269bff906704870f25a6 Content-Type: text/plain; charset=ISO-8859-1 From: To: emacs-orgmode@gnu.org Subject: Bug: loading a small org file crashes emacs - no backtrace [6.36] --text follows this line-- I am a novice org-mode user. I am trying to learn how to use some of the features of org-mode to implement a GTD system. Emacs crashes when I load a file (named todobug.org) containing the text between the dashed lines (and not including the dashed lines). It took some time to get a small version of the file that reliably crashes (at least my) emacs. I could not get a backtrace, because emacs simply crashes. I am on a windows vista machine. ----------------------------------------------------------------- MY TASKS -*- mode: org; fill-column: 78; after-save-hook: (archive-done-tasks) -*- #+STARTUP: indent #+STARTUP: content * Tasks #+CATEGORY: Tasks ** TODO Buy dead companies! Michael Rabson of wsgr says that valuable patents can arise through this process. Especially since it takes so long for a patent to come through. The company may be gone, but the patent might be valuable. [2010-05-19 Wed] ----------------------------------------------------------------- Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ Emacs : GNU Emacs 23.1.1 (i386-mingw-nt6.0.6002) of 2009-07-29 on SOFT-MJASON Package: Org-mode version 6.36 current state: ============== (setq org-export-latex-after-initial-vars-hook '(org-beamer-after-initial-vars) org-todo-keyword-faces '(("TODO" :foreground "medium blue" :weight bold) ("APPT" :foreground "medium blue" :weight bold) ("NOTE" :foreground "brown" :weight bold) ("STARTED" :foreground "dark orange" :weight bold) ("WAITING" :foreground "red" :weight bold) ("DELEGATED" :foreground "dark violet" :weight bold) ("DEFERRED" :foreground "dark blue" :weight bold) ("SOMEDAY" :foreground "dark blue" :weight bold)) org-special-ctrl-a/e t org-agenda-custom-commands '(("d" todo "DELEGATED" nil) ("c" todo "DONE|DEFERRED|CANCELLED" nil) ("w" todo "WAITING" nil) ("W" agenda "" ((org-agenda-ndays 21))) ("A" agenda "" ((org-agenda-skip-function (lambda nil (org-agenda-skip-entry-if (quote notregexp) "\\=.*\\[#A\\]") ) ) (org-agenda-ndays 1) (org-agenda-overriding-header "Today's Priority #A tasks: ") ) ) ("u" alltodo "" ((org-agenda-skip-function (lambda nil (org-agenda-skip-entry-if (quote scheduled) (quote deadline) (quote regexp) "<[^>\n]+>") ) ) (org-agenda-overriding-header "Unscheduled TODO entries: ") ) ) ) org-agenda-files '("~/mydrop~1/todo.org") org-completion-use-ido t org-after-todo-state-change-hook '(org-clock-out-if-current) org-export-latex-format-toc-function 'org-export-latex-format-toc-default org-agenda-skip-scheduled-if-done t org-support-shift-select t org-export-preprocess-hook '(org-export-blocks-preprocess) org-tab-first-hook '(org-hide-block-toggle-maybe) org-src-mode-hook '(org-src-mode-configure-edit-buffer) org-confirm-shell-link-function 'yes-or-no-p org-export-first-hook '(org-beamer-initialize-open-trackers) org-clock-persist 'history org-todo-keywords '((sequence "TODO" "APPT" "|" "DONE" "NOTE")) org-agenda-before-write-hook '(org-agenda-add-entry-text) org-default-notes-file "~/mydrop~1/notes.org" org-directory "~/OrgProjects" org-insert-heading-hook '(bh/insert-inactive-timestamp) org-blank-before-new-entry '((heading) (plain-list-item)) org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers org-cycle-show-empty-lines org-optimize-window-after-visibility-change) org-publish-project-alist '(("org-notes" :base-directory "~/org-init/" :base-extension "org" :publishing-directory "~/public_html/" :recursive t :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("org-static" :base-directory "~/org-init/" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/" :recursive t :publishing-function org-publish-attachment) ("org" :components ("org-notes" "org-static")) ("publish-tutorial-notes" :base-directory "~/OrgProjects/" :base-extension "org" :publishing-directory "~/public_html/" :recursive t :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("publish-tutorial-static" :base-directory "~/OrgProjects/" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/" :recursive t :publishing-function org-publish-attachment) ("publish-tutorial" :components ("publish-tutorial-notes" "publish-tutorial-static") ) ("B-inherit" :base-directory "~/OrgProjects/org-init" :recursive t :base-extension "css\\|js" :publishing-directory "~/public_html/B/" :publishing-function org-publish-attachment) ("B-notes" :base-directory "~/OrgProjects/B/" :auto-index t :index-filename "sitemap.org" :index-title "Sitemap" :recursive t :base-extension "org" :publishing-directory "~/public_html/B/" :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("B-static" :base-directory "~/OrgProjects/B/" :recursive t :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/B/" :publishing-function org-publish-attachment) ("B" :components ("B-inherit" "B-notes" "B-static")) ("Personal-inherit" :base-directory "~/OrgProjects/org-init/" :recursive t :base-extension "css\\|js" :publishing-directory "~/public_html/Personal/" :publishing-function org-publish-attachment) ("Personal-notes" :base-directory "~/OrgProjects/Personal/" :auto-index t :index-filename "sitemap.org" :index-title "Sitemap" :recursive t :base-extension "org" :publishing-directory "~/public_html/Personal/" :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("Personal-static" :base-directory "~/OrgProjects/Personal/" :recursive t :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/Personal/" :publishing-function org-publish-attachment) ("Personal" :components ("Personal-inherit" "Personal-notes" "Personal-static") ) ("Epistle-inherit" :base-directory "~/OrgProjects/org-init/" :recursive t :base-extension "css\\|js" :publishing-directory "~/public_html/Epistle/" :publishing-function org-publish-attachment) ("Epistle-notes" :base-directory "~/OrgProjects/Epistle/" :auto-index t :index-filename "sitemap.org" :index-title "Sitemap" :recursive t :base-extension "org" :publishing-directory "~/public_html/Epistle/" :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("Epistle-static" :base-directory "~/OrgProjects/Epistle/" :recursive t :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/Epistle/" :publishing-function org-publish-attachment) ("Epistle" :components ("Epistle-inherit" "Epistle-notes" "Epistle-static") ) ("Pandorabots-inherit" :base-directory "~/OrgProjects/org-init/" :recursive t :base-extension "css\\|js" :publishing-directory "~/public_html/Pandorabots/" :publishing-function org-publish-attachment) ("Pandorabots-notes" :base-directory "~/OrgProjects/Pandorabots/" :auto-index t :index-filename "sitemap.org" :index-title "Sitemap" :recursive t :base-extension "org" :publishing-directory "~/public_html/Pandorabots/" :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("Pandorabots-static" :base-directory "~/OrgProjects/Pandorabots/" :recursive t :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/Pandorabots/" :publishing-function org-publish-attachment) ("Pandorabots" :components ("Pandorabots-inherit" "Pandorabots-notes" "Pandorabots-static") ) ("Symnosis-inherit" :base-directory "~/OrgProjects/org-init/" :recursive t :base-extension "css\\|js" :publishing-directory "~/public_html/Symnosis/" :publishing-function org-publish-attachment) ("Symnosis-notes" :base-directory "~/OrgProejcts/Symnosis/" :auto-index t :index-filename "sitemap.org" :index-title "Sitemap" :recursive t :base-extension "org" :publishing-directory "~/public_html/Symnosis/" :publishing-function org-publish-org-to-html :headline-levels 4 :auto-preamble t) ("Symnosis-static" :base-directory "~/OrgProjects/Symnosis/" :recursive t :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/Symnosis/" :publishing-function org-publish-attachment) ("Symnosis" :components ("Symnosis-inherit" "Symnosis-notes" "Symnosis-static") ) ) org-export-preprocess-before-normalizing-links-hook '(org-remove-file-link-modifiers) org-use-speed-commands t org-mode-hook '(turn-on-font-lock org-clock-load #[nil "\300\301\302\303\304$\207" [org-add-hook change-major-mode-hook org-show-block-all append local] 5] ) org-return-follows-link t org-confirm-elisp-link-function 'yes-or-no-p org-fast-tag-selection-single-key 'expert org-agenda-start-on-weekday nil org-agenda-skip-deadline-if-done t org-reverse-note-order t org-insert-heading-respect-content t org-occur-hook '(org-first-headline-recenter) org-from-is-user-regexp nil org-export-preprocess-before-selecting-backend-code-hook '(org-beamer-select-beamer-code) org-remember-templates '((116 "* TODO %?\n %u" "~/mydrop~1/todo.org" "Tasks") (110 "* %u %?" "~/mydrop~1/notes.org" "Notes")) org-icalendar-include-todo t org-export-latex-final-hook '(org-beamer-amend-header org-beamer-fix-toc org-beamer-auto-fragile-frames org-beamer-place-default-actions-for-lists) ) --0016364d269bff906704870f25a6 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
From: =A0<fkunze@gmail.com&= gt;
Subject: Bug: loading a small org file crashes emacs - = no backtrace [6.36]
--text follows this line--

I am a novice org-= mode user. =A0I am trying to learn how to use some of the features of org-m= ode to implement a GTD system.=A0

Emacs crashes wh= en I load a file (named todobug.org) con= taining the text between the dashed lines (and not including the dashed lin= es). =A0It took some time to get a small version of the file that reliably = crashes (at least my) emacs. I could not get a backtrace, because emacs sim= ply crashes. =A0I am on a windows vista machine.
-----------------------------------------------------------------
MY TASKS -*- mode: org; fill-column: 78; after-save-hook: (archive-do= ne-tasks) =A0 -*-

#+STARTUP: indent
#+ST= ARTUP: content

* Tasks
#+CATEGORY: Tasks
** TODO B= uy dead companies! Michael Rabson of wsgr says that valuable patents=A0
can arise through this process. =A0Especially since it takes so long= for a patent to come through. =A0The company may be gone, but the patent m= ight be valuable.=A0
=A0=A0[2010-05-19 Wed]
-------------------------------------= ----------------------------
Remember to cover the basics, that i= s, what you expected to happen and
what in fact did happen. =A0Yo= u don't know how to make a good report? =A0See

=

Your bug report will be posted to the Org-mode mailing = list.
----------------------------------------------------------------------= --



Emacs =A0: GNU Em= acs 23.1.1 (i386-mingw-nt6.0.6002)
=A0of 2009-07-29 on SOFT-MJASO= N
Package: Org-mode version 6.36

current state:=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
(setq
=
=A0org-export-latex-after-initial-vars-hook '(org-beamer-after-ini= tial-vars)
=A0org-todo-keyword-faces '(("TODO" :for= eground "medium blue" :weight bold)
= =A0("APPT" :foreground "medium blue" :weight bold)
= =A0("NOTE" :foreground "brown" :weight bold)
= =A0("STARTED" :foreground "dark orange" :weight bold)
=A0("WAITING" :foreground "red" :weight bold)
= =A0("DELEGATED" :foreground "dark violet" :weight bold)=
=A0("DEFERRED" :foreground "dark blue" :weight bold= )
= =A0("SOMEDAY" :foreground "dark blue" :weight bold))
=A0org-special-ctrl-a/e t
=A0org-agenda-custom-commands &= #39;(("d" todo "DELEGATED" nil)
= =A0 =A0 =A0("c" todo "DONE|DEFERRED|CANCELLED" nil)
= =A0 =A0 =A0("w" todo "WAITING" nil)
= =A0 =A0 =A0("W" agenda "" ((org-agenda-ndays 21)))
= =A0 =A0 =A0("A" agenda ""
= =A0 =A0 =A0 ((org-agenda-skip-function
(lambda nil
=A0(org-agenda-s= kip-entry-if (quote notregexp)
= =A0 "\\=3D.*\\[#A\\]")
=A0)
)
(o= rg-agenda-ndays 1)
(org-agenda-overriding-header
"Today's= Priority #A tasks: ")
)<= /div>
=A0 =A0 =A0 )
=A0 =A0 =A0("u" alltodo ""
= =A0 =A0 =A0 ((org-agenda-skip-function
(lambda nil
=A0(org-agenda-s= kip-entry-if (quote scheduled)
= =A0 (quote deadline) (quote regexp) "<[^>\n]+>")
=A0= )
)
(= org-agenda-overriding-header
"Unscheduled TODO entries: ")
)<= /div>
=A0 =A0 =A0 )
=A0 =A0 =A0)
=A0org-agenda-files '("~/mydrop~1/todo.org")
=A0org-completion-use-ido t
=A0org= -after-todo-state-change-hook '(org-clock-out-if-current)
=A0= org-export-latex-format-toc-function 'org-export-latex-format-toc-defau= lt
=A0org-agenda-skip-scheduled-if-done t
=A0org-support-shift-= select t
=A0org-export-preprocess-hook '(org-export-blocks-pr= eprocess)
=A0org-tab-first-hook '(org-hide-block-toggle-maybe= )
=A0org-src-mode-hook '(org-src-mode-configure-edit-buffer)
=A0org-confirm-shell-link-function 'yes-or-no-p
=A0org-exp= ort-first-hook '(org-beamer-initialize-open-trackers)
=A0org-= clock-persist 'history
=A0org-todo-keywords '((sequence "TODO" "APPT"= "|" "DONE" "NOTE"))
=A0org-agenda-= before-write-hook '(org-agenda-add-entry-text)
=A0org-default= -notes-file "~/mydrop~1/notes.org&quo= t;
=A0org-directory "~/OrgProjects"
=A0org-insert-hea= ding-hook '(bh/insert-inactive-timestamp)
=A0org-blank-before= -new-entry '((heading) (plain-list-item))
=A0org-cycle-hook &= #39;(org-cycle-hide-archived-subtrees org-cycle-hide-drawers
=A0= org-cycle-show-empty-lines
=A0org-optimize-window-after-visibility-chan= ge)
=A0org-publish-project-alist '(("org-notes" :base-directory &= quot;~/org-init/"
=A0 =A0 =A0:base-extension "org" :publi= shing-directory
= =A0 =A0 =A0"~/public_html/" :recursive t
=A0 =A0 =A0:publishin= g-function org-publish-org-to-html
= =A0 =A0 =A0:headline-levels 4 :auto-preamble t)
=A0 =A0 ("org-stati= c" :base-directory "~/org-init/"
= =A0 =A0 =A0:base-extension
=A0 =A0 =A0"css\\|js\\|png\\|jpg\\|gif= \\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/&q= uot; :recursive t :publishing-function org-publish-attachment)
= =A0 =A0 ("org" :components ("org-notes" "org-stati= c"))
=A0 =A0 ("publish-tutorial-notes" :base-directory
= =A0 =A0 =A0"~/OrgProjects/" :base-extension "org"
=
= =A0 =A0 =A0:publishing-directory "~/public_html/"
= =A0 =A0 =A0:recursive t :publishing-function
=A0 =A0 =A0org-publish-org-= to-html :headline-levels 4
= =A0 =A0 =A0:auto-preamble t)
=A0 =A0 ("publish-tutorial-static"= ; :base-directory
= =A0 =A0 =A0"~/OrgProjects/" :base-extension
=A0 =A0 =A0"c= ss\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directo= ry "~/public_html/" :recursive t :publishing-function org-publish= -attachment)
= =A0 =A0 ("publish-tutorial" :components
=A0 =A0 =A0("publ= ish-tutorial-notes"
= =A0 =A0 =A0 "publish-tutorial-static")
=A0 =A0 =A0)
= =A0 =A0= ("B-inherit" :base-directory
= =A0 =A0 =A0"~/OrgProjects/org-init" :recursive t
=A0 =A0 =A0:b= ase-extension "css\\|js" :publishing-directory
= =A0 =A0 =A0"~/public_html/B/" :publishing-function
=A0 =A0 =A0= org-publish-attachment)
= =A0 =A0 ("B-notes" :base-directory "~/OrgProjects/B/"
=A0 =A0 =A0:auto-index t :index-filename "sitemap.org"
= =A0 =A0 =A0:index-title "Sitemap" :recursive t
=A0 =A0 =A0:bas= e-extension "org" :publishing-directory
= =A0 =A0 =A0"~/public_html/B/" :publishing-function
=A0 =A0 =A0= org-publish-org-to-html :headline-levels 4
= =A0 =A0 =A0:auto-preamble t)
=A0 =A0 ("B-static" :base-directo= ry "~/OrgProjects/B/"
= =A0 =A0 =A0:recursive t :base-extension
=A0 =A0 =A0"css\\|js\\|png\= \|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/pub= lic_html/B/" :publishing-function org-publish-attachment)
= =A0 =A0 ("B" :components
=A0 =A0 =A0("B-inherit" &qu= ot;B-notes" "B-static"))
= =A0 =A0 ("Personal-inherit" :base-directory
=A0 =A0 =A0"~= /OrgProjects/org-init/" :recursive t
= =A0 =A0 =A0:base-extension "css\\|js" :publishing-directory
=
= =A0 =A0 =A0"~/public_html/Personal/" :publishing-function
= =A0 =A0 =A0org-publish-attachment)
=A0 =A0 ("Personal-notes" := base-directory
= =A0 =A0 =A0"~/OrgProjects/Personal/" :auto-index t
=A0 =A0 =A0= :index-filename "sitemap.org" = :index-title
= =A0 =A0 =A0"Sitemap" :recursive t :base-extension "org"=
=A0 =A0 =A0:publishing-directory "~/public_html/Personal/"
= =A0 =A0 =A0:publishing-function org-publish-org-to-html
=A0 =A0 =A0:head= line-levels 4 :auto-preamble t)
= =A0 =A0 ("Personal-static" :base-directory
=A0 =A0 =A0"~= /OrgProjects/Personal/" :recursive t
= =A0 =A0 =A0:base-extension
=A0 =A0 =A0"css\\|js\\|png\\|jpg\\|gif= \\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/Pe= rsonal/" :publishing-function org-publish-attachment)
= =A0 =A0 ("Personal" :components
=A0 =A0 =A0("Personal-inh= erit" "Personal-notes"
= =A0 =A0 =A0 "Personal-static")
=A0 =A0 =A0)
=A0 =A0 ("= Epistle-inherit" :base-directory
= =A0 =A0 =A0"~/OrgProjects/org-init/" :recursive t
=A0 =A0 =A0:= base-extension "css\\|js" :publishing-directory
= =A0 =A0 =A0"~/public_html/Epistle/" :publishing-function
=A0 = =A0 =A0org-publish-attachment)
= =A0 =A0 ("Epistle-notes" :base-directory
=A0 =A0 =A0"~/Or= gProjects/Epistle/" :auto-index t
= =A0 =A0 =A0:index-filename "sitemap.org= " :index-title
=A0 =A0 =A0"Sitemap" :recursive t :bas= e-extension "org"
= =A0 =A0 =A0:publishing-directory "~/public_html/Epistle/"
=A0 = =A0 =A0:publishing-function org-publish-org-to-html
= =A0 =A0 =A0:headline-levels 4 :auto-preamble t)
=A0 =A0 ("Epistle-s= tatic" :base-directory
= =A0 =A0 =A0"~/OrgProjects/Epistle/" :recursive t
=A0 =A0 =A0:b= ase-extension
= =A0 =A0 =A0"css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" := publishing-directory "~/public_html/Epistle/" :publishing-functio= n org-publish-attachment)
= =A0 =A0 ("Epistle" :components
=A0 =A0 =A0("Epistle-inher= it" "Epistle-notes"
= =A0 =A0 =A0 "Epistle-static")
=A0 =A0 =A0)
=A0 =A0 ("P= andorabots-inherit" :base-directory
= =A0 =A0 =A0"~/OrgProjects/org-init/" :recursive t
=A0 =A0 =A0:= base-extension "css\\|js" :publishing-directory
= =A0 =A0 =A0"~/public_html/Pandorabots/"
=A0 =A0 =A0:publishing= -function org-publish-attachment)
= =A0 =A0 ("Pandorabots-notes" :base-directory
=A0 =A0 =A0"= ~/OrgProjects/Pandorabots/" :auto-index t
= =A0 =A0 =A0:index-filename "sitemap.org= " :index-title
=A0 =A0 =A0"Sitemap" :recursive t :bas= e-extension "org"
= =A0 =A0 =A0:publishing-directory
=A0 =A0 =A0"~/public_html/Pandorab= ots/"
=A0 =A0= =A0:publishing-function org-publish-org-to-html
=A0 =A0 =A0:headline-le= vels 4 :auto-preamble t)
= =A0 =A0 ("Pandorabots-static" :base-directory
=A0 =A0 =A0"= ;~/OrgProjects/Pandorabots/" :recursive t
= =A0 =A0 =A0:base-extension
=A0 =A0 =A0"css\\|js\\|png\\|jpg\\|gif= \\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/Pa= ndorabots/" :publishing-function org-publish-attachment)
= =A0 =A0 ("Pandorabots" :components
=A0 =A0 =A0("Pandorabo= ts-inherit" "Pandorabots-notes"
= =A0 =A0 =A0 "Pandorabots-static")
=A0 =A0 =A0)
=A0 =A0 (&qu= ot;Symnosis-inherit" :base-directory
= =A0 =A0 =A0"~/OrgProjects/org-init/" :recursive t
=A0 =A0 =A0:= base-extension "css\\|js" :publishing-directory
= =A0 =A0 =A0"~/public_html/Symnosis/" :publishing-function
=A0 = =A0 =A0org-publish-attachment)
= =A0 =A0 ("Symnosis-notes" :base-directory
=A0 =A0 =A0"~= /OrgProejcts/Symnosis/" :auto-index t
= =A0 =A0 =A0:index-filename "sitemap.org= " :index-title
=A0 =A0 =A0"Sitemap" :recursive t :bas= e-extension "org"
= =A0 =A0 =A0:publishing-directory "~/public_html/Symnosis/"
<= div> =A0= =A0 =A0:publishing-function org-publish-org-to-html
= =A0 =A0 =A0:headline-levels 4 :auto-preamble t)
=A0 =A0 ("Symnosis-= static" :base-directory
= =A0 =A0 =A0"~/OrgProjects/Symnosis/" :recursive t
=A0 =A0 =A0:= base-extension
= =A0 =A0 =A0"css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" := publishing-directory "~/public_html/Symnosis/" :publishing-functi= on org-publish-attachment)
= =A0 =A0 ("Symnosis" :components
=A0 =A0 =A0("Symnosis-inh= erit" "Symnosis-notes"
= =A0 =A0 =A0 "Symnosis-static")
=A0 =A0 =A0)
=A0 =A0 )
=A0org-export-preprocess-before-normalizing-links-hook '(org-remov= e-file-link-modifiers)
=A0org-use-speed-commands t
=A0o= rg-mode-hook '(turn-on-font-lock org-clock-load
#[nil "\300\30= 1\302\303\304$\207"
=A0= [org-add-hook change-major-mode-hook org-show-block-all
=A0 =A0append lo= cal]
=A0= 5]
)
=A0org-return-follows-link t
=A0org-confirm-eli= sp-link-function 'yes-or-no-p
=A0org-fast-tag-selection-single-key 'expert
=A0org-agen= da-start-on-weekday nil
=A0org-agenda-skip-deadline-if-done t
=A0org-reverse-note-order t
=A0org-insert-heading-respect-= content t
=A0org-occur-hook '(org-first-headline-recenter)
=A0org-= from-is-user-regexp nil
=A0org-export-preprocess-before-selecting= -backend-code-hook '(org-beamer-select-beamer-code)
=A0org-re= member-templates '((116 "* TODO %?\n =A0%u" "~/mydrop~1/= todo.org" "Tasks")
= =A0(110 "* %u %?" "~/mydrop~1/n= otes.org" "Notes"))
=A0org-icalendar-include-t= odo t
=A0org-export-latex-final-hook '(org-beamer-amend-header org-beame= r-fix-toc
=A0 =A0 =A0 org-beamer-auto-fragile-frames
=A0 =A0 =A0 org-= beamer-place-default-actions-for-lists)
=A0)

--0016364d269bff906704870f25a6-- --===============0238760239== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0238760239==--