erlang-mode bug
Luke Gorrie
luke@REDACTED
Wed Mar 7 14:39:08 CET 2001
Hej,
I found a bug in erlang-mode, perhaps an elisp hacker can shed some light?
Here's a function to reproduce it:
(defun erlang-mode-bug ()
"Causes a bug in erlang-mode.
If you open a list with '[' and then end the line with only whitespace
or comments, then there is an error when you try to move sexp-at-a-time
within the list.
This has side-effects, for example if you try to indent on the second line
of:
[{
}]
Then you'll trigger this error."
(interactive)
;; insert:
;; [
;; ]
;; and leave the point at the start of the second line
(insert "[\n")
(save-excursion (insert "]"))
;; moving forwards- or backwards- by a sexp triggers a bogus error
(backward-sexp))
More information about the erlang-questions
mailing list