diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 4fdf2ca8542..b641e300163 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -621,9 +621,9 @@ The type returned can be `comment', `string' or `paren'." | |||
| 621 | (0 (ignore (python-syntax-stringify)))))) | 621 | (0 (ignore (python-syntax-stringify)))))) |
| 622 | 622 | ||
| 623 | (defconst python--prettify-symbols-alist | 623 | (defconst python--prettify-symbols-alist |
| 624 | '(("lambda" . ?\u03bb) | 624 | '(("lambda" . ?λ) |
| 625 | ("and" . ?\u2227) | 625 | ("and" . ?∧) |
| 626 | ("or" . ?\u2228))) | 626 | ("or" . ?∨))) |
| 627 | 627 | ||
| 628 | (defsubst python-syntax-count-quotes (quote-char &optional point limit) | 628 | (defsubst python-syntax-count-quotes (quote-char &optional point limit) |
| 629 | "Count number of quotes around point (max is 3). | 629 | "Count number of quotes around point (max is 3). |