auctex-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. d27f6a12d89a094bf5fd8


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. d27f6a12d89a094bf5fd8f45f5ef7a16a9a9b29f
Date: Mon, 25 May 2020 07:38:57 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".

The branch, master has been updated
       via  d27f6a12d89a094bf5fd8f45f5ef7a16a9a9b29f (commit)
      from  a9fd06c699ec010ca5f894be03c7f448e581b686 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit d27f6a12d89a094bf5fd8f45f5ef7a16a9a9b29f
Author: Ikumi Keita <address@hidden>
Date:   Mon May 25 20:28:17 2020 +0900

    Fix regression of unfontify-region
    
    * font-latex.el (font-latex-unfontify-region): Restore `invisible' as
    removed property. My commit on Jan 7 was partially wrong. It kept "^"
    and "_" invisible even when commented out if
    `font-latex-fontify-script' is `invisible'.

diff --git a/font-latex.el b/font-latex.el
index 6210967..91137ba 100644
--- a/font-latex.el
+++ b/font-latex.el
@@ -1328,7 +1328,7 @@ If SYNTACTIC-KWS is non-nil, also update
 (defun font-latex-unfontify-region (beg end &rest ignored)
   "Unfontify region from BEG to END."
   (font-lock-default-unfontify-region beg end)
-  (remove-text-properties beg end '(script-level))
+  (remove-list-of-text-properties beg end '(script-level invisible))
   (while (< beg end)
     (let ((next (next-single-property-change beg 'display nil end))
          (prop (get-text-property beg 'display)))

-----------------------------------------------------------------------

Summary of changes:
 font-latex.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

[Prev in Thread] Current Thread [Next in Thread]