emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 c194fb6: Make python prettify symbols into a defv


From: Noam Postavsky
Subject: [Emacs-diffs] emacs-26 c194fb6: Make python prettify symbols into a defvar (Bug#28713)
Date: Sat, 7 Oct 2017 20:10:25 -0400 (EDT)

branch: emacs-26
commit c194fb61c638490e3510864fe2750814af8c3719
Author: Noam Postavsky <address@hidden>
Commit: Noam Postavsky <address@hidden>

    Make python prettify symbols into a defvar (Bug#28713)
    
    * 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 | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 9aa5134..f79d9a4 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -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).



reply via email to

[Prev in Thread] Current Thread [Next in Thread]