diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-06-26 10:03:48 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2019-06-26 10:03:48 -0400 |
commit | 698ff554ac2699ec48fefc85a1307cbc4a183b0d (patch) | |
tree | a7b7592f7973f81cad4410366d313e790616907e /lisp/progmodes/python.el | |
parent | 9233865b7005831e63755eb84ae7da060f878a55 (diff) | |
download | emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.tar.gz emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.tar.bz2 emacs-698ff554ac2699ec48fefc85a1307cbc4a183b0d.zip |
* lisp/calc/calc-ext.el (math-scalarp): Fix typo
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") |