all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ikumi Keita <ikumi@ikumi.que.jp>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: emacs-devel@gnu.org
Subject: Re: Giving "text quotes" syntax in font-lock-syntax-table only
Date: Wed, 20 May 2020 22:24:11 +0900	[thread overview]
Message-ID: <55185.1589981051@localhost> (raw)
In-Reply-To: <jwvmu62u91j.fsf-monnier+emacs@gnu.org>

Hi!

>>>>> Stefan Monnier <monnier@iro.umontreal.ca> writes:
> The best way to do that is to set `syntax-ppss-table` to the
> syntax-table that should be used.

I suppose that you are suggesting that something like this:
----------------------------------------------------------------------
(defvar bug-repro-mode-syntax-table
  (let ((st (make-syntax-table)))
    (modify-syntax-entry ?$ "$" st)
    (modify-syntax-entry ?% "<" st)
    (modify-syntax-entry ?\n ">" st)
    st))

(defun bug-repro-syntactic-face-function (state)
  (let ((char (nth 3 state)))
    (if char
        font-lock-string-face
      font-lock-comment-face)))

(define-derived-mode bug-repro-mode nil "BugRepro"
  :syntax-table bug-repro-mode-syntax-table
  (add-hook 'pre-command-hook #'syntax-ppss nil t)
  (setq font-lock-multiline t)
  (setq syntax-ppss-table
	(let ((st (make-syntax-table bug-repro-mode-syntax-table)))
	  (modify-syntax-entry ?$ "\"" st)
	  st))
  (setq font-lock-defaults
        '(nil nil nil nil ; ((?$ . "\""))
              (font-lock-syntactic-face-function
               . bug-repro-syntactic-face-function))))
----------------------------------------------------------------------
This resembles the method to modify the major mode's syntax table
(without setting `syntax-ppss-table'). It does eliminate the wrong
fontification, but brings another problem in actual use cases of AUCTeX.

When `syntax-ppss-table' is non-nil, all functions using `syntax-ppss'
obey that syntax table, so they regard math expression $...$ as string
constant. This can be problematic for cases like this:
----------------------------------------------------------------------
\documentclass{article}
\begin{document}
$x^{2}+y^{2} % syntax-ppss wouldn't regard me as a comment.
=z^{2}$
\end{document}
----------------------------------------------------------------------

In other words, what we want to carry out is:
- to use modified syntax table only within font lock
- while keeping to use major mode's syntax table for all other purposes.

If we temporarily bind `syntax-ppss-table' during font lock by `let',
the problem of conflicting cache emerges again and it causes the
inverted fontification, if I understand correctly.

I can think of no way to achieve our intention in the current framework
of syntax.el and font lock.

I'm speaking without knowing the detail of syntax.el, so please correct
me if I understand something wrongly.

Regards,
Ikumi Keita



  reply	other threads:[~2020-05-20 13:24 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-20  6:53 Giving "text quotes" syntax in font-lock-syntax-table only Ikumi Keita
2020-05-20 11:53 ` Stefan Monnier
2020-05-20 13:24   ` Ikumi Keita [this message]
2020-05-22  8:37     ` Ikumi Keita
2020-06-02 18:46     ` Stefan Monnier
2020-06-03  8:12       ` Ikumi Keita
2020-06-03 14:12   ` Stefan Monnier
2020-06-04 13:36     ` Ikumi Keita
2020-06-04 14:00       ` 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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55185.1589981051@localhost \
    --to=ikumi@ikumi.que.jp \
    --cc=emacs-devel@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.
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.