diff options
| author | Stefan Monnier | 2019-06-26 10:03:48 -0400 |
|---|---|---|
| committer | Stefan Monnier | 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.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.") | |||
| 628 | ;; OS specific | 628 | ;; OS specific |
| 629 | "VMSError" "WindowsError" | 629 | "VMSError" "WindowsError" |
| 630 | ) | 630 | ) |
| 631 | symbol-end) . font-lock-type-face) | 631 | symbol-end) |
| 632 | . font-lock-type-face) | ||
| 632 | ;; assignments | 633 | ;; assignments |
| 633 | ;; support for a = b = c = 5 | 634 | ;; support for a = b = c = 5 |
| 634 | (,(lambda (limit) | 635 | (,(lambda (limit) |
| @@ -678,6 +679,7 @@ Which one will be chosen depends on the value of | |||
| 678 | ((rx (or "\"\"\"" "'''")) | 679 | ((rx (or "\"\"\"" "'''")) |
| 679 | (0 (ignore (python-syntax-stringify)))))) | 680 | (0 (ignore (python-syntax-stringify)))))) |
| 680 | 681 | ||
| 682 | ;; Always define the alias(es) *before* the variable. | ||
| 681 | (define-obsolete-variable-alias 'python--prettify-symbols-alist | 683 | (define-obsolete-variable-alias 'python--prettify-symbols-alist |
| 682 | 'python-prettify-symbols-alist "26.1") | 684 | 'python-prettify-symbols-alist "26.1") |
| 683 | 685 | ||