From: Pierre Rouleau <prouleau001@gmail.com>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: When is a syntax-propertize-function called when parse-sexp-lookup-properties is t for a current buffer?
Date: Tue, 5 Oct 2021 09:48:22 -0400 [thread overview]
Message-ID: <CALTqLiawBGnkBCYAzrs=BdV778eU9EApjZh7sFpJdK9pnv57CQ@mail.gmail.com> (raw)
In-Reply-To: <jwvfstf8wld.fsf-monnier+emacs@gnu.org>
On Tue, Oct 5, 2021 at 8:56 AM Stefan Monnier via Users list for the GNU
Emacs text editor <help-gnu-emacs@gnu.org> wrote:
> > What I'd like to understand is what calls the generated function,
> providing
> > it the 2 arguments (start & end) and when should it be called.
>
> > Are these calls protected against error so I can't see them if they
> occur?
>
> No, although some of them can occur in contexts where the error might be
> silenced or at least not displayed in a prominent way.
>
> Why do you ask?
> Are you having an actual problem, or are you asking out of curiosity?
>
>
Both actually. I am trying to add binary pair matching in erlang-mode,
something that works only just after the << >> pair has just been typed
by the user, but later, the matching stops working as the syntax-table
attribute seems to disappear from the character.
I'm trying to make the syntax properties to 'stick' so I can use
forward-sexp, backward-sexp to navigate over Erlang code
code that uses these. Like the following Erlang code:
Values = << <<(X+1)/integer>> || <<X>> <= <<3,7,5,4,7>> >>.
I tried to add the following after the syntax table is built by the
erlang mode function:
(defconst erlang-mode-syntax-propertize-function
(syntax-propertize-rules
("\\(<\\)<" (1 "(>"))
(">\\(>\\)" (2 ")<")))
"Syntax properties to activate << >> pairing.")
(setq-local parse-sexp-lookup-properties t)
(setq-local syntax-propertize-function
erlang-mode-syntax-propertize-function)
But that does not seem to work. So I am trying to understand why
it does not work.
I saw the caution note at the end of the syntax-propertize-function in
section 34.5 Syntax Properties that states:
"Caution: When this variable is non-nil, Emacs removes syntax-table
text properties arbitrarily and relies on syntax-propertize-function to
reapply them. Thus if this facility is used at all, the function must
apply all syntax-table text properties used by the major mode."
Since the erlang-mode modifies the text attribute of the << >> characters
when the user types them I was trying to see what I'm either not doing or
doing wrong.
So I wanted to see where the code was used because it
seems that my addition is just ignored or something in erlang.el prevents
it from working and/or my 'nirvana level' understanding of that mechanism is
obviously not high enough :-)
--
/Pierre
next prev parent reply other threads:[~2021-10-05 13:48 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-05 3:54 When is a syntax-propertize-function called when parse-sexp-lookup-properties is t for a current buffer? Pierre Rouleau
2021-10-05 4:15 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-05 12:00 ` Pierre Rouleau
2021-10-05 12:54 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-10-05 13:48 ` Pierre Rouleau [this message]
2021-10-05 14:57 ` Stefan Monnier
2021-10-05 15:36 ` Pierre Rouleau
2021-10-05 17:29 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-05 18:45 ` Pierre Rouleau
2021-10-05 19:08 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-10-05 19:42 ` Pierre Rouleau
2021-10-05 19:41 ` Stefan Monnier
[not found] ` <CALTqLiab4AZx=fn1wX1ovckxFtie9C20O=qZFYTLyQNKWfWZGg@mail.gmail.com>
2021-10-05 20:05 ` Fwd: " Pierre Rouleau
2021-10-05 20:17 ` Pierre Rouleau
2021-10-06 1:55 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-10-06 2:46 ` Pierre Rouleau
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='CALTqLiawBGnkBCYAzrs=BdV778eU9EApjZh7sFpJdK9pnv57CQ@mail.gmail.com' \
--to=prouleau001@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=monnier@iro.umontreal.ca \
/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.
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).