Skip to content

Commit

Permalink
Add support for emacs 29
Browse files Browse the repository at this point in the history
  • Loading branch information
isamert committed Sep 23, 2022
1 parent b6c1360 commit fcdf234
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eros.el
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,9 @@ This function also removes itself from `pre-command-hook'."
(interactive)
(when eros--last-result
(get-buffer-create eros--inspect-buffer-name)
(pp-display-expression eros--last-result eros--inspect-buffer-name)
(let ((print-length nil)
(print-level nil))
(pp-display-expression eros--last-result eros--inspect-buffer-name))
(unless (get-buffer-window eros--inspect-buffer-name)
(switch-to-buffer-other-window eros--inspect-buffer-name))))

Expand Down

0 comments on commit fcdf234

Please sign in to comment.