emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master bdda485: Add a couple cells to lisp-prettify-symbol


From: Mark Oteiza
Subject: [Emacs-diffs] master bdda485: Add a couple cells to lisp-prettify-symbols-alist
Date: Fri, 8 Jul 2016 21:15:14 +0000 (UTC)

branch: master
commit bdda4855c635ecf4135e23321bdba023e9ae65c9
Author: Mark Oteiza <address@hidden>
Commit: Mark Oteiza <address@hidden>

    Add a couple cells to lisp-prettify-symbols-alist
    
    * lisp/emacs-lisp/lisp-mode.el (lisp-prettify-symbols-alist): Add
    "sqrt" and "not".
---
 lisp/emacs-lisp/lisp-mode.el |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index a277d7a..ee3bda9 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.



reply via email to

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