From: Katsumi Yamaoka <yamaoka@jpl.org>
To: schwab@linux-m68k.org
Cc: larsi@gnus.org, 45944@debbugs.gnu.org
Subject: bug#45944: 28.0.50; Mailabbrev sometimes hangs
Date: Tue, 19 Jan 2021 20:07:36 +0900 [thread overview]
Message-ID: <b4m7do9422v.fsf@jpl.org> (raw)
In-Reply-To: <b4m35yznlzc.fsf@jpl.org>
Andreas Schwab <schwab@linux-m68k.org> wrote:
> On Jan 19 2021, Lars Ingebrigtsen wrote:
>> And I guess there's some extreme backtracking going on with the
>> \\(\\w\\|[_.]\\)+>
>> part?
> Does `\w' match `_'?
Yes it does. While the hang arises, syntax table is overridden
temporarily with `mail-abbrev-syntax-table'.
(mail-abbrev-make-syntax-table)
(with-syntax-table mail-abbrev-syntax-table
(string-match "\\w" "_"))
So, it explains some strange things, doesn't it? Actually, this
advice looks to solve the problem:
(defadvice message--syntax-propertize (around use-standard-syntax-table
activate)
"Use standard-syntax-table."
(with-syntax-table (standard-syntax-table)
ad-do-it))
next prev parent reply other threads:[~2021-01-19 11:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-18 0:10 bug#45944: 28.0.50; Mailabbrev sometimes hangs Katsumi Yamaoka
2021-01-18 23:39 ` Katsumi Yamaoka
2021-01-19 4:47 ` Lars Ingebrigtsen
2021-01-19 8:30 ` Andreas Schwab
2021-01-19 11:07 ` Katsumi Yamaoka [this message]
2021-01-19 15:09 ` Lars Ingebrigtsen
2021-01-19 21:50 ` Katsumi Yamaoka
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b4m7do9422v.fsf@jpl.org \
--to=yamaoka@jpl.org \
--cc=45944@debbugs.gnu.org \
--cc=larsi@gnus.org \
--cc=schwab@linux-m68k.org \
/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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.