branch: externals/inspector
commit 7ca900d6dbcc8de799cddec9a33d180847e0a026
Author: Mariano Montone <[email protected]>
Commit: GitHub <[email protected]>
Update README.md
---
README.md | 3 ---
1 file changed, 3 deletions(-)
diff --git a/README.md b/README.md
index 9786fe2934..2727c246c0 100644
--- a/README.md
+++ b/README.md
@@ -58,8 +58,6 @@ Then start the inspector with either `M-x
tree-inspector-inspect-expression` or
Instead of bothering setting up different key bindings for elisp evaluation
and inspection, it can be handy to have both in the same command, and use
prefix arguments to differenciate, like this:
```emacs-lisp
-
-;;;###autoload
(defun inspect-or-eval-expression (arg)
"Like `eval-expression', but also inspect when called with prefix ARG."
(interactive "P")
@@ -68,7 +66,6 @@ Instead of bothering setting up different key bindings for
elisp evaluation and
(call-interactively #'inspector-inspect-expression)))
(_ (call-interactively #'eval-expression))))
-;;;###autoload
(defun inspect-or-eval-last-sexp (arg)
"Like `eval-last-sexp', but also inspect when called with prefix ARG."
(interactive "P")