Skip to content

Commit

Permalink
lispy.el: Fix display of % in "p"
Browse files Browse the repository at this point in the history
  • Loading branch information
abo-abo committed Sep 14, 2016
1 parent 2360ae9 commit 1871e5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lispy.el
Expand Up @@ -4272,7 +4272,9 @@ When ARG is non-nil, force select the window."
(lispy-message res)
(if (and (fboundp 'object-p) (object-p res))
(message "(eieio object length %d)" (length res))
(lispy-message (format "%S" res)))))))
(lispy-message
(replace-regexp-in-string "%" "%%"
(format "%S" res))))))))

(defun lispy-follow ()
"Follow to `lispy--current-function'."
Expand Down

0 comments on commit 1871e5c

Please sign in to comment.