[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Orgmode] Re: iCal Import - updated code & Bug report
From: |
Tim O'Callaghan |
Subject: |
Re: [Orgmode] Re: iCal Import - updated code & Bug report |
Date: |
Thu, 21 Jun 2007 12:00:44 +0200 |
My apologies, i should have included this before:
Debugger entered--Lisp error: (error "before first heading")
signal(error ("before first heading"))
cerror("before first heading")
apply(cerror "before first heading" nil)
error("before first heading")
(or (re-search-backward (concat "^\\(?:" outline-regexp "\\)") nil
t) (error "before first heading"))
(while (not found) (or (re-search-backward ... nil t) (error "before
first heading")) (setq found (and ... ...)))
(save-excursion (while (not found) (or ... ...) (setq found ...)))
(let (found) (save-excursion (while ... ... ...)) (goto-char found) found)
(or (outline-on-heading-p invisible-ok) (let (found) (save-excursion
...) (goto-char found) found))
org-back-to-heading(t)
(let ((fun ...) (pos ...) (re ...) level l) (org-back-to-heading t)
(setq level (funcall outline-level)) (catch (quote exit) (or previous
...) (while ... ... ... ...) (goto-char pos) nil))
org-goto-sibling()
(while (org-goto-sibling) (org-flag-heading nil))
(save-excursion (while (org-goto-sibling) (org-flag-heading nil)))
org-show-siblings()
(if siblings-p (org-show-siblings))
(when siblings-p (org-show-siblings))
(catch (quote exit) (if heading-p (org-flag-heading nil) (and ...
...)) (when following-p (save-excursion ...)) (when siblings-p
(org-show-siblings)) (when hierarchy-p (save-excursion ...)))
(let ((heading-p ...) (hierarchy-p ...) (following-p ...)
(siblings-p ...)) (catch (quote exit) (if heading-p ... ...) (when
following-p ...) (when siblings-p ...) (when hierarchy-p ...)))
org-show-context(agenda)
(progn (org-show-context (quote agenda)) (save-excursion (and ... ...)))
(if (org-mode-p) (progn (org-show-context ...) (save-excursion ...)))
(when (org-mode-p) (org-show-context (quote agenda)) (save-excursion
(and ... ...)))
(let* ((marker ...) (buffer ...) (pos ...))
(switch-to-buffer-other-window buffer) (widen) (goto-char pos) (when
(org-mode-p) (org-show-context ...) (save-excursion ...)) (and
highlight (org-highlight ... ...)))
org-agenda-goto(t)
(let ((win ...)) (org-agenda-goto t) (select-window win))
org-agenda-show()
(if (and org-agenda-follow-mode (get-text-property ... ...))
(org-agenda-show))
org-agenda-post-command-hook()
It occurs in noutline.el, the error is generated when it cannot find a
heading. I'm running the windows native - XEmacs Lucid 21.4 (patch 19)
"Constant Variable"
cheers,
Tim.
On 21/06/07, Carsten Dominik <address@hidden> wrote:
I am unable to reproduce this bug. Anyone?
- Carsten