diff options
author | Mark Oteiza <mvoteiza@udel.edu> | 2016-07-08 17:12:54 -0400 |
---|---|---|
committer | Mark Oteiza <mvoteiza@udel.edu> | 2016-07-08 17:12:54 -0400 |
commit | bdda4855c635ecf4135e23321bdba023e9ae65c9 (patch) | |
tree | 6e4db36729b5dc01406e27034537259e8c6f7018 /lisp | |
parent | 5deebc3c914c86e84d11661a7877c00b2d7fddd1 (diff) | |
download | emacs-bdda4855c635ecf4135e23321bdba023e9ae65c9.tar.gz |
Add a couple cells to lisp-prettify-symbols-alist
* lisp/emacs-lisp/lisp-mode.el (lisp-prettify-symbols-alist): Add
"sqrt" and "not".
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index a277d7a6680..ee3bda95b84 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -168,7 +168,10 @@ (defvar lisp-doc-string-elt-property 'doc-string-elt "The symbol property that holds the docstring position info.") -(defconst lisp-prettify-symbols-alist '(("lambda" . ?λ)) +(defconst lisp-prettify-symbols-alist + '(("lambda" . ?λ) + ("sqrt" . ?√) + ("not" . ?¬)) "Alist of symbol/\"pretty\" characters to be displayed.") ;;;; Font-lock support. |