From 1f8046d6db31cf18cf39349fa9299d0d5c33996e Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Tue, 11 Mar 2025 01:14:35 +0100 Subject: [PATCH] Make python.el compatible with Emacs 29.1 * lisp/progmodes/python.el (python--treesit-fontify-string): Don't call treesit--compute-font-lock-level unless it is fboundp. (Bug#76873) (cherry picked from commit 46f9ebaec309e45d4a1a19d1a5e69eab881d54e9) --- lisp/progmodes/python.el | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 8ff43d0720b..f2818b56066 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1102,11 +1102,14 @@ fontified." 'font-lock-doc-face 'font-lock-string-face)) - (ignore-interpolation (not - (seq-some - (lambda (feats) (memq 'string-interpolation feats)) - (seq-take treesit-font-lock-feature-list - (treesit--compute-font-lock-level treesit-font-lock-level))))) + (ignore-interpolation + (not (seq-some + (lambda (feats) (memq 'string-interpolation feats)) + (seq-take treesit-font-lock-feature-list + (if (fboundp 'treesit--compute-font-lock-level) + (treesit--compute-font-lock-level + treesit-font-lock-level) + treesit-font-lock-level))))) ;; If interpolation is enabled, highlight only ;; string_start/string_content/string_end children. Do not ;; touch interpolation node that can occur inside of the -- 2.39.5