]> git.eshelyaron.com Git - emacs.git/commitdiff
Make python prettify symbols into a defvar (Bug#28713)
authorNoam Postavsky <npostavs@gmail.com>
Thu, 5 Oct 2017 23:16:46 +0000 (19:16 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 7 Oct 2017 23:19:05 +0000 (19:19 -0400)
* lisp/progmodes/python.el (python-prettify-symbols-alist): New
variable.
(python--prettify-symbols-alist): Make into obsolete alias for
`python-prettify-symbols-alist'.

lisp/progmodes/python.el

index 9aa5134ca0de63252286c409265e366f7868d4b2..f79d9a47d3196957b5100abf95643c059cf242d2 100644 (file)
@@ -640,10 +640,14 @@ The type returned can be `comment', `string' or `paren'."
    ((python-rx string-delimiter)
     (0 (ignore (python-syntax-stringify))))))
 
-(defconst python--prettify-symbols-alist
+(defvar python-prettify-symbols-alist
   '(("lambda"  . ?λ)
     ("and" . ?∧)
-    ("or" . ?∨)))
+    ("or" . ?∨))
+  "Value for `prettify-symbols-alist' in `python-mode'.")
+
+(define-obsolete-variable-alias 'python--prettify-symbols-alist
+  'python-prettify-symbols-alist "26.1")
 
 (defsubst python-syntax-count-quotes (quote-char &optional point limit)
   "Count number of quotes around point (max is 3).