From 1523109430e20027cc9afdb9a240bebdbde6938b Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Sat, 1 Apr 2023 16:28:59 -0700 Subject: [PATCH] Ouch. What an embarrassing bug. --- ha-programming-elisp.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ha-programming-elisp.org b/ha-programming-elisp.org index 936371e..aa26ba9 100644 --- a/ha-programming-elisp.org +++ b/ha-programming-elisp.org @@ -148,11 +148,11 @@ The main difference from an evil state is that lispy’s “special” is contex Many of the operations supplied by =lispyville= don’t require learning anything new. Similar to [[Clever Parenthesis]], we can For instance, if our point is placed at this location in this code: -#+begin_src emacs-lisp +#+begin_src emacs-lisp :tangle no (message "The answer is %d" (+ 2 (* 8 5)‸ 9 (+ 1 4))) #+end_src Pressing ~D~ results in: -#+begin_src emacs-lisp +#+begin_src emacs-lisp :tangle no (message "The answer is %d" (+ 2 (* 8 5)‸)) #+end_src And doesn’t delete the trailing parenthesis.