-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cache issue #38
Comments
Ah - ok, maybe this is related to org-appear issue 5? awth13/org-appear#5 I'm going to switch to the org-fold support branch and see if that resolves the cache issue. Will close this if so. Thanks! |
Ok -- it does not seem to be related to org-appear. Here's another statement of the bug with that package disabled: Warning (emacs): org-element--cache: Cache corruption detected in inbox.org. Resetting.
The error was: (error "rx ‘**’ range error")
Backtrace:
" backtrace-to-string(nil)
org-element-at-point()
org-cycle(nil)
funcall-interactively(org-cycle nil)
command-execute(org-cycle)
recursive-edit()
org-goto-location()
org-goto(nil)
funcall-interactively(org-goto nil)
command-execute(org-goto record)
execute-extended-command(nil \"org-goto\" \"org goto\")
funcall-interactively(execute-extended-command nil \"org-goto\" \"org goto\")
command-execute(execute-extended-command)
" |
Warning (emacs): org-element--cache: Cache corruption detected in inbox.org. Resetting.
The error was: (error "rx ‘**’ range error")
Are you using the latest version? 17d4b31 supposed to fix this error.
|
Yeah I rebuilt the package this morning so I'm up to 3c7f8a |
Yeah I rebuilt the package this morning so I'm up to 3c7f8a
Then, can you set `org-element--cache-self-verify` to 'backtrace and
report the full warning message (possibly stripping sensitive data) next
time you see the warning?
|
Having set the self-verify setting I'm getting: Warning (emacs): org-element--cache: Cache corruption detected in xxxxx.org. Resetting.
The error was: (error "rx ‘**’ range error")
Backtrace:
nil
Please report this to Org mode mailing list (M-x org-submit-bug-report). Disable showing Disable logging |
Colin McLear ***@***.***> writes:
Having set the self-verify setting I'm getting:
```emacs-lisp
Warning (emacs): org-element--cache: Cache corruption detected in xxxxx.org. Resetting.
The error was: (error "rx ‘**’ range error")
Backtrace:
nil
Please report this to Org mode mailing list (M-x org-submit-bug-report). Disable showing Disable logging
```
Don't you also have a long second backtrace below? Can you confirm that
the value of org-element--cache-self-verify to `backtrace` symbol and
you set it in your init file?
P.S. I have also seen this error 2 days ago, but cannot reproduce any
more. A full backtrace would help a lot.
|
Colin McLear ***@***.***> writes:
Yep -- have the setting correct but it just says "nil". See the screenshots below. I'm on the emacs master branch (29.0.5) if that is important.
It implies that the error is not triggered by cache, but rather a bug in
Org parser.
I just pushed a change that will provide additional info
(current buffer point) in the warning you are seeing.
Can you
1. try to set org-element-use-cache to nil in your config and
see if you are still getting the error.
2. If you do, go to the buffer point reported in the warning, and
manually run M-: (org-element--parse-to <the point>) <RET>
3. If you get error now, post the problematic heading down to
<the point>
|
I should also say that |
I'm seeing this error in an elisp file where I use outline to fold headings with Warning (org-element-cache): org-element--cache: Cache corruption detected in setup-citation.el::7126. Resetting.
The error was: (error "rx ‘**’ range error")
Backtrace:
" backtrace-to-string(nil)
org-element-at-point()
org-element-context()
org-cite-insert(nil)
funcall-interactively(org-cite-insert nil)
command-execute(org-cite-insert)
"
Please report this to Org mode mailing list (M-x org-submit-bug-report). Disable showing Disable logging And the more detailed backtrace: Debugger entered--Lisp error: (error "rx ‘**’ range error")
error("rx `%s' range error" **)
rx--translate-bounded-repetition(** (1 0 "*"))
rx--translate-**((1 0 "*"))
rx--translate-form((** 1 0 "*"))
rx--translate((** 1 0 "*"))
rx--translate-seq((line-start (** 1 0 "*") " "))
rx--translate-form((seq line-start (** 1 0 "*") " "))
rx--translate((seq line-start (** 1 0 "*") " "))
rx-to-string((seq line-start (** 1 0 "*") " "))
org-element-headline-parser(nil fast)
org-element--parse-to(7126)
eval-expression((org-element--parse-to 7126))
eval((eval-expression (car-safe (read-from-string #("(org-element--parse-to 7126)" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) ...)))))
evil-ex-execute(#("(org-element--parse-to 7126)" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) ...))
evil-ex(nil)
funcall-interactively(evil-ex nil)
command-execute(evil-ex) |
I should also say that `org-element-use-cache` had been set to `nil` all along.
<offtopic>It makes me wonder why you are using this repo. The whole
point of it is performance improvement and cache is a big part of it</offtopic>
|
folding had been very slow so I thought I would give it (i.e. your fork) a try (I also hadn't noticed I had turned the cache off awhile ago because of a separate error that had been coming up 🤷 ) |
I'm seeing this error in an elisp file where I use outline to fold headings with `;;;`, etc. Here's the backtrace:
...
Warning (org-element-cache): org-element--cache: Cache corruption detected in setup-citation.el::7126. Resetting.
...
command-execute(org-cite-insert)
Err... But why are you calling an org command in non-org buffer? No
wonder you are getting the error.
Note that the backtrace shows that you did not try to fold Elisp heading
using outline-mode, but somehow called `org-cite-insert`.
In the above messages you reported an error in proper org buffer though.
What you are seeing here is some _different_ and seemingly unrelated
error. I opened another bug report for this last issue you are seeing.
Please report errors in actual Org buffers in this thread.
|
Yeah - I wasn't calling that function intentionally so I'm not sure what happened there...
will do |
folding had been very slow so I thought I would give it a try (I also hadn't noticed I had turned the cache off awhile ago because of a separate error that had been coming up 🤷 )
Got it. Note that cache is enabled by default upstream after I merged
the cache-related commits to Org mode master.
The folding part of this branch is actually waiting to be merged after
cache- and parser-related bugs (like what we have here) become less
frequent.
|
Another error: Warning (org-element-cache): org-element--cache: Cache corruption detected in phil232-class-plan.org::133. Resetting.
The error was: (error "rx ‘**’ range error")
Backtrace:
nil
Please report this to Org mode mailing list (M-x org-submit-bug-report). Disable showing Disable logging And the longer backtrace: Debugger entered--Lisp error: (error "rx ‘**’ range error")
error("rx `%s' range error" **)
rx--translate-bounded-repetition(** (1 0 "*"))
rx--translate-**((1 0 "*"))
rx--translate-form((** 1 0 "*"))
rx--translate((** 1 0 "*"))
rx--translate-seq((line-start (** 1 0 "*") " "))
rx--translate-form((seq line-start (** 1 0 "*") " "))
rx--translate((seq line-start (** 1 0 "*") " "))
rx-to-string((seq line-start (** 1 0 "*") " "))
org-element-headline-parser(132 t)
org-element--current-element(132 element nil nil)
org-element--parse-to(133)
eval-expression((org-element--parse-to 133))
eval((eval-expression (car-safe (read-from-string #("(org-element--parse-to 133)" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) ...)))))
evil-ex-execute(#("(org-element--parse-to 133)" 0 1 (ex-index 1) 1 2 (ex-index 2) 2 3 (ex-index 3) 3 4 (ex-index 4) 4 5 (ex-index 5) 5 6 (ex-index 6) 6 7 (ex-index 7) 7 8 (ex-index 8) 8 9 (ex-index 9) 9 10 (ex-index 10) 10 11 (ex-index 11) 11 12 (ex-index 12) 12 13 (ex-index 13) 13 14 (ex-index 14) 14 15 (ex-index 15) 15 16 (ex-index 16) ...))
evil-ex(nil)
funcall-interactively(evil-ex nil)
command-execute(evil-ex) And the file to point 133:
|
* lisp/org-element.el (org-element--parse-to): Fallback to normal parsing when there are no siblings between POS and ELEM-END. Reported in #38 (comment)
And the file to point 133:
This was helpful. Thanks! Should be fixed now.
|
Describe the bug
I'm seeing the following in various org files:
Expected behavior
I expected to just be able to fold or unfold headlines as usual.
To Reproduce
I haven't yet been able to reproduce this in a clean config, nor have I been able to pinpoint what it is about my normal config that might be causing the issue. But I'll keep looking. In the meantime, any advice is appreciated. Thanks for your work.
The text was updated successfully, but these errors were encountered: