Add a couple cells to lisp-prettify-symbols-alist

* lisp/emacs-lisp/lisp-mode.el (lisp-prettify-symbols-alist): Add
"sqrt" and "not".
This commit is contained in:
Mark Oteiza 2016-07-08 17:12:54 -04:00
parent 5deebc3c91
commit bdda4855c6

View file

@ -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.