From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/syntactic-font-lock.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 devdocs/elisp/syntactic-font-lock.html (limited to 'devdocs/elisp/syntactic-font-lock.html') diff --git a/devdocs/elisp/syntactic-font-lock.html b/devdocs/elisp/syntactic-font-lock.html deleted file mode 100644 index 4925bb4e..00000000 --- a/devdocs/elisp/syntactic-font-lock.html +++ /dev/null @@ -1,19 +0,0 @@ -

Syntactic Font Lock

Syntactic fontification uses a syntax table (see Syntax Tables) to find and highlight syntactically relevant text. If enabled, it runs prior to search-based fontification. The variable font-lock-syntactic-face-function, documented below, determines which syntactic constructs to highlight. There are several variables that affect syntactic fontification; you should set them by means of font-lock-defaults (see Font Lock Basics).

Whenever Font Lock mode performs syntactic fontification on a stretch of text, it first calls the function specified by syntax-propertize-function. Major modes can use this to apply syntax-table text properties to override the buffer’s syntax table in special cases. See Syntax Properties.

Variable: font-lock-keywords-only -

If the value of this variable is non-nil, Font Lock does not do syntactic fontification, only search-based fontification based on font-lock-keywords. It is normally set by Font Lock mode based on the keywords-only element in font-lock-defaults. If the value is nil, Font Lock will call jit-lock-register (see Other Font Lock Variables) to set up for automatic refontification of buffer text following a modified line to reflect the new syntactic context due to the change.

-
Variable: font-lock-syntax-table -

This variable holds the syntax table to use for fontification of comments and strings. It is normally set by Font Lock mode based on the syntax-alist element in font-lock-defaults. If this value is nil, syntactic fontification uses the buffer’s syntax table (the value returned by the function syntax-table; see Syntax Table Functions).

-
Variable: font-lock-syntactic-face-function -
-

If this variable is non-nil, it should be a function to determine which face to use for a given syntactic element (a string or a comment).

The function is called with one argument, the parse state at point returned by parse-partial-sexp, and should return a face. The default value returns font-lock-comment-face for comments and font-lock-string-face for strings (see Faces for Font Lock).

This variable is normally set through the “other” elements in font-lock-defaults:

(setq-local font-lock-defaults
-            `(,python-font-lock-keywords
-              nil nil nil nil
-              (font-lock-syntactic-face-function
-               . python-font-lock-syntactic-face-function)))
-
-
-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Syntactic-Font-Lock.html -

-
-- cgit v1.2.3