[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [BUG] Consecutive emphasis markers only work every other time [9.5 (
From: |
Ihor Radchenko |
Subject: |
Re: [BUG] Consecutive emphasis markers only work every other time [9.5 (9.5-??-cc2490a70 @ /home/joe/.emacs.d/.local/straight/build-27.1/org/)] |
Date: |
Mon, 11 Oct 2021 09:43:01 +0800 |
Joseph Peterson <jeepeterson@gmail.com> writes:
> ------------------------------------------------------------------------
>
> Steps to reproduce:
> Enter org mode (I am on cc2490a7061955395c4f5a1a23a088044554a2f7)
> Type *bold* *bold* *bold*
> Notice that the second instance is not bolded while the first and third
> are.
Confirmed.
Thanks for reporting! The problem was introduced in fa315986a.
This particular issues can be fixed by
- (goto-char (match-end 0))
+ (goto-char (match-beginning 5))
However, I afraid that the whole fa315986a idea may not be useful.
Moving to the end of emphasis upon fontification will break any kind of
nesting (like *bold /italic end bold* end italic/). This is probably
more severe compared to arcane scenario in
https://orgmode.org/list/87fsujp7mc.fsf@web.de
Best,
Ihor