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:
parent
5deebc3c91
commit
bdda4855c6
1 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue