unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: fatiparty--- via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: rainbow-delimiters-mode, syntax-begin-function and font-lock-beginning-of-syntax-function
Date: Tue, 25 Jan 2022 09:46:35 +0100 (CET)	[thread overview]
Message-ID: <MuFP_QP--7-2@tutanota.com> (raw)
In-Reply-To: <jwvlez4bu5b.fsf-monnier+emacs@gnu.org>

Jan 25, 2022, 11:18 by help-gnu-emacs@gnu.org:

>> Have looked for `font-lock-beginning-of-syntax-function' but
>> could not find information of possible obsolescence.
>>
>
> % grep font-lock-beginning-of-syntax-function etc/NEWS*
>  etc/NEWS.19:font-lock-beginning-of-syntax-function and font-lock-keywords-case-fold-search.
>  etc/NEWS.25:Removed 'font-lock-beginning-of-syntax-function' and the SYNTAX-BEGIN
>  %
>
>
> -- Stefan
>


'syntax-begin-function' has also been declared obsolete.

Would this mean that I can remove the following pieces

  (when (bound-and-true-p syntax-begin-function)
       (syntax-ppss-flush-cache 0))
and

   (when (boundp 'syntax-begin-function)        (set (make-local-variable 'syntax-begin-function) nil)) )


----

Code:

(define-minor-mode richerenkov-minor-mode
  "Colour Brace Marks according to their depth."
  nil
  ""   ; exclude modeline indicator
  nil 
  
  (font-lock-remove-keywords nil test-font-lock)

  (when test-minor-mode
    (font-lock-add-keywords nil test-font-lock 'append)
    (set (make-local-variable 'jit-lock-contextually) t)

    ;; flush-cache to avoid old values when modifying `syntax-begin-function'
    (when (bound-and-true-p syntax-begin-function)
      (syntax-ppss-flush-cache 0))

    ;; Don't use `syntax-begin-function', as it may break the
    ;; assumption that `syntax-ppss' is equivalent to
    ;; `parse-partial-sexp' from `point-min'.

    (when (boundp 'syntax-begin-function)
      (set (make-local-variable 'syntax-begin-function) nil)) )

  (when font-lock-mode
    (if (fboundp 'font-lock-flush)
        (font-lock-flush)
      (with-no-warnings (font-lock-fontify-buffer)))))






  reply	other threads:[~2022-01-25  8:46 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-23  7:58 rainbow-delimiters-mode and syntax-begin-function fatiparty--- via Users list for the GNU Emacs text editor
     [not found] ` <Mu4wPqh--3-2@tutanota.com-Mu4wX4B----2>
2022-01-24  9:55   ` rainbow-delimiters-mode, syntax-begin-function and font-lock-beginning-of-syntax-function fatiparty--- via Users list for the GNU Emacs text editor
2022-01-24 23:18     ` Stefan Monnier via Users list for the GNU Emacs text editor
2022-01-25  8:46       ` fatiparty--- via Users list for the GNU Emacs text editor [this message]
2022-01-25 13:04         ` Stefan Monnier
2022-01-25 13:37           ` fatiparty--- via Users list for the GNU Emacs text editor
2022-01-25 13:55             ` Stefan Monnier
2022-01-25 15:05               ` fatiparty--- via Users list for the GNU Emacs text editor
2022-01-25 15:12               ` fatiparty--- via Users list for the GNU Emacs text editor

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=MuFP_QP--7-2@tutanota.com \
    --to=help-gnu-emacs@gnu.org \
    --cc=fatiparty@tutanota.com \
    --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).