On Tuesday, 29 Oct 2019 at 23:50, Vladimir Nikishkin wrote:
> The MWE would be the following:
>
> #+begin_src scheme
> (display (< 1 3))
> #+end_src
>
> In this example, if you put the point on the "<" symbol, it is
> highlighted (fontified) together with the ")" following 3, which is
> incorrect, since in general, "<" is not a paired entity. (I.e. is a
> symbol "less" rather than an angular bracket.) 

I have the following 2 lines in my org-mode-hook to cater for this issue
which arises when using source blocks.

    (modify-syntax-entry ?< ".")
    (modify-syntax-entry ?> ".")

HTH
-- 
Eric S Fraga via Emacs 27.0.50, Org release_9.2.6-544-gd215c3

Reply via email to