From: Alan Mackenzie <acm@muc.de>
To: Lennart Borgman <lennart.borgman@gmail.com>
Cc: emacs-devel@gnu.org
Subject: Re: C Mode: acceleration in brace deserts.
Date: Thu, 3 Dec 2009 19:39:18 +0000 [thread overview]
Message-ID: <20091203193918.GC1942@muc.de> (raw)
In-Reply-To: <e01d8a50912030922m2ec18addkb6a6c3272b8ef66e@mail.gmail.com>
Hi, Lennart!
On Thu, Dec 03, 2009 at 06:22:02PM +0100, Lennart Borgman wrote:
> Hi Alan,
> On Thu, Dec 3, 2009 at 5:59 PM, Alan Mackenzie <acm@muc.de> wrote:
> > Hi, Lennart!
> > On Thu, Dec 03, 2009 at 05:26:57PM +0100, Lennart Borgman wrote:
> >> Hi Alan,
> >> Can you tell me how the cache [c-parse-state] is implemented so I can
> >> support it in MuMaMo?
> > Short brusque answer: no - it's ~1300 lines of code, much of it arcane.
> I need only a very short answer. I need to know how you store this
> data so I do not destroy it when switching major mode in MuMaMo.
Sorry, I misunderstood you. I thought you were wanting to copy the
algorithm.
The state of this cache is held entirely in the variables (all of them
buffer local) initialised thusly:
(defun c-state-cache-init ()
(setq c-state-cache nil
c-state-cache-good-pos 1
c-state-nonlit-pos-cache nil
c-state-nonlit-pos-cache-limit 1
c-state-brace-pair-desert nil
c-state-point-min 1
c-state-point-min-lit-type nil
c-state-point-min-lit-start nil
c-state-min-scan-pos 1
c-state-old-cpp-beg nil
c-state-old-cpp-end nil)
(c-state-mark-point-min-literal))
, where `c-state-mark-point-min-literal' merely sets 3 variables already
named. I don't honestly see a way MuMaMo could disturb this state by
accident.
> In the current situation I can only try to do that since the different
> major modes may stamp on each other (I need some more Emacs support to
> avoid that). But I can try. In some situations it is needed (for
> example php may be split up in several parts (which html code between)
> where the indentation in the next part should be aligned to that in
> the prev part).
> If you store it in a buffer local variable I am happy since all I have
> to do then is to make that survive major mode switching. If you store
> it in text properties I will be a bit more sad.
Ah, yes. I use text properties, too. On each C macro, #if, etc., I set
a category property on the "#" and one on (usually) the newline that
terminates it. I also put category properties on "<" and ">" to mark
them as C++ template or Java generic delimiters. Does this cause you
problems at all?
--
Alan Mackenzie (Nuremberg, Germany).
next prev parent reply other threads:[~2009-12-03 19:39 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-03 16:21 C Mode: acceleration in brace deserts Alan Mackenzie
2009-12-03 16:26 ` Lennart Borgman
2009-12-03 16:59 ` Alan Mackenzie
2009-12-03 17:22 ` Lennart Borgman
2009-12-03 19:39 ` Alan Mackenzie [this message]
2009-12-03 19:57 ` Lennart Borgman
2009-12-04 10:34 ` Lennart Borgman
2009-12-04 11:03 ` Lennart Borgman
2009-12-04 11:56 ` Alan Mackenzie
2009-12-04 12:03 ` Lennart Borgman
2009-12-04 12:18 ` Lennart Borgman
2009-12-04 13:54 ` Alan Mackenzie
2009-12-04 19:03 ` Lennart Borgman
2009-12-05 2:11 ` Lennart Borgman
2009-12-05 4:49 ` Stefan Monnier
2009-12-04 5:31 ` Richard Stallman
2009-12-04 11:37 ` Alan Mackenzie
2009-12-05 6:50 ` Richard Stallman
2009-12-03 17:09 ` Stefan Monnier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091203193918.GC1942@muc.de \
--to=acm@muc.de \
--cc=emacs-devel@gnu.org \
--cc=lennart.borgman@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).