diff options
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r-- | lisp/progmodes/python.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index e1f9a33a691..28d8746ffaf 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -628,7 +628,8 @@ builtins.") ;; OS specific "VMSError" "WindowsError" ) - symbol-end) . font-lock-type-face) + symbol-end) + . font-lock-type-face) ;; assignments ;; support for a = b = c = 5 (,(lambda (limit) @@ -678,6 +679,7 @@ Which one will be chosen depends on the value of ((rx (or "\"\"\"" "'''")) (0 (ignore (python-syntax-stringify)))))) +;; Always define the alias(es) *before* the variable. (define-obsolete-variable-alias 'python--prettify-symbols-alist 'python-prettify-symbols-alist "26.1") |