emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: backward-up-list


From: Andreas Roehler
Subject: Re: backward-up-list
Date: Sat, 14 Oct 2006 19:46:33 +0200
User-agent: Thunderbird 1.5.0.4 (X11/20060516)

Stefan Monnier schrieb:
Don't understand behaviour of `backward-up-list'
in `emacs-lisp-mode' if inside a string.

backward-up-list doesn't know you start from inside a string and instead
assumes you start from outside of any string or comment.  So when it
bumps into the opening " it thinks this is a closing " and treats the text
before that as being inside a string.  Try it with:

       (foor "an open ( inside a string"
             blabla
             "try it from >>HERE<< for fun.")

Bug?

Misfeature.

Not letal.

 (while (in-string-p)
   (backward-char 1))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]