[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 50c0fb3d 1/2: * style/afterpage.el ("afterpage"): Fontify the onl
From: |
Arash Esbati |
Subject: |
master 50c0fb3d 1/2: * style/afterpage.el ("afterpage"): Fontify the only macro. |
Date: |
Fri, 18 Nov 2022 05:22:59 -0500 (EST) |
branch: master
commit 50c0fb3d3192b5aaa59e1d4540b2d403a191f267
Author: Arash Esbati <arash@gnu.org>
Commit: Arash Esbati <arash@gnu.org>
* style/afterpage.el ("afterpage"): Fontify the only macro.
---
style/afterpage.el | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/style/afterpage.el b/style/afterpage.el
index 1601885f..88ea2c10 100644
--- a/style/afterpage.el
+++ b/style/afterpage.el
@@ -1,6 +1,6 @@
;;; afterpage.el --- AUCTeX style for `afterpage.sty' -*- lexical-binding: t;
-*-
-;; Copyright (C) 2013, 2020 Free Software Foundation, Inc.
+;; Copyright (C) 2013--2022 Free Software Foundation, Inc.
;; Author: Mads Jensen <mje@inducks.org>
;; Maintainer: auctex-devel@gnu.org
@@ -31,13 +31,25 @@
;;; Code:
(require 'tex)
-(require 'latex)
+
+;; Silence the compiler:
+(declare-function font-latex-add-keywords
+ "font-latex"
+ (keywords class))
(TeX-add-style-hook
"afterpage"
(lambda ()
(TeX-add-symbols
- '("afterpage" t)))
+ '("afterpage" t))
+
+ ;; Fontification
+ (when (and (featurep 'font-latex)
+ (eq TeX-install-font-lock 'font-latex-setup))
+ ;; Don't fontify the argument since it will contain (La)TeX code
+ ;; which probably has its own fontification:
+ (font-latex-add-keywords '(("afterpage" ""))
+ 'function)))
TeX-dialect)
(defvar LaTeX-afterpage-package-options nil
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 50c0fb3d 1/2: * style/afterpage.el ("afterpage"): Fontify the only macro.,
Arash Esbati <=