fix(emacs/lean-mode.el): fix wrong parens in lean-show-goal-at-pos
This commit is contained in:
parent
308af87b69
commit
5d159ea664
1 changed files with 2 additions and 2 deletions
|
@ -157,10 +157,10 @@ placeholder, call lean-server with --hole option, otherwise call
|
|||
(or (char-equal cb ?\s)
|
||||
(char-equal cb ?\t)
|
||||
(char-equal cb ?\n)
|
||||
(char-equal cb ?\r))))
|
||||
(char-equal cb ?\r)))))
|
||||
(lean-exec-at-pos "lean-hole" "*Lean Goal*" "--hole"))
|
||||
(t
|
||||
(lean-exec-at-pos "lean-goal" "*Lean Goal*" "--goal")))))
|
||||
(lean-exec-at-pos "lean-goal" "*Lean Goal*" "--goal"))))
|
||||
|
||||
(defun lean-std-exe ()
|
||||
(interactive)
|
||||
|
|
Loading…
Reference in a new issue