summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-05-29 08:09:34 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-05-29 08:09:34 +0200
commit0eb0fe987b62540f892954d0eb09bb9e44cc6b08 (patch)
tree9e99cdc9cd27e690a3b17c8d6af5673917c78593
parent90cd4d6caeac337054fa0c4548281cc54eed37d3 (diff)
downloademacs-0eb0fe987b62540f892954d0eb09bb9e44cc6b08.tar.gz
emacs-0eb0fe987b62540f892954d0eb09bb9e44cc6b08.tar.bz2
emacs-0eb0fe987b62540f892954d0eb09bb9e44cc6b08.zip
Add lambda to the pretty Ruby symbols list
* lisp/progmodes/ruby-mode.el (ruby--prettify-symbols-alist): Add lambda (bug#48681).
-rw-r--r--lisp/progmodes/ruby-mode.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/progmodes/ruby-mode.el b/lisp/progmodes/ruby-mode.el
index cb8bbcd9b9a..01fb044161b 100644
--- a/lisp/progmodes/ruby-mode.el
+++ b/lisp/progmodes/ruby-mode.el
@@ -2426,7 +2426,8 @@ If there is no Rubocop config file, Rubocop will be passed a flag
(">=" . ?≥)
("->" . ?→)
("=>" . ?⇒)
- ("::" . ?∷))
+ ("::" . ?∷)
+ ("lambda" . ?λ))
"Value for `prettify-symbols-alist' in `ruby-mode'.")
;;;###autoload