diff options
| author | Stefan Kangas | 2023-08-28 21:58:36 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2023-08-28 22:03:22 +0200 |
| commit | 3fb2a3c240afa3bf5f574c45ed99be3f56a997ac (patch) | |
| tree | 49c3cc1c00cbc0f7550b03e6a1e2a94ec61fb903 | |
| parent | 76938e1789ecf447507199b6f1b7c0d4f7924ea3 (diff) | |
| download | emacs-3fb2a3c240afa3bf5f574c45ed99be3f56a997ac.tar.gz emacs-3fb2a3c240afa3bf5f574c45ed99be3f56a997ac.zip | |
Make Emacs 21 compat alias obsolete
* lisp/jit-lock.el (jit-lock-defer-contextually): Make Emacs 21 compat
alias obsolete.
| -rw-r--r-- | lisp/jit-lock.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/jit-lock.el b/lisp/jit-lock.el index 452cbd1ca51..d0522d6a791 100644 --- a/lisp/jit-lock.el +++ b/lisp/jit-lock.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; jit-lock.el --- just-in-time fontification -*- lexical-binding: t -*- | 1 | ;;; jit-lock.el --- just-in-time fontification -*- lexical-binding: t -*- |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1998, 2000-2023 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1998-2023 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Gerd Moellmann <gerd@gnu.org> | 5 | ;; Author: Gerd Moellmann <gerd@gnu.org> |
| 6 | ;; Keywords: faces files | 6 | ;; Keywords: faces files |
| @@ -90,7 +90,8 @@ See also `jit-lock-stealth-nice'." | |||
| 90 | :type 'boolean) | 90 | :type 'boolean) |
| 91 | 91 | ||
| 92 | 92 | ||
| 93 | (defvaralias 'jit-lock-defer-contextually 'jit-lock-contextually) | 93 | (define-obsolete-variable-alias 'jit-lock-defer-contextually |
| 94 | 'jit-lock-contextually "30.1") | ||
| 94 | (defcustom jit-lock-contextually 'syntax-driven | 95 | (defcustom jit-lock-contextually 'syntax-driven |
| 95 | "If non-nil, fontification should be syntactically true. | 96 | "If non-nil, fontification should be syntactically true. |
| 96 | If nil, refontification occurs only on lines that were modified. This | 97 | If nil, refontification occurs only on lines that were modified. This |