Skip to content

Commit 778b533

Browse files
committed
Remove the interactive declaration from clojure-delete-and-extract-sexp
It's doubtful that anyone ever used this function interactively.
1 parent 1f02ccd commit 778b533

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clojure-mode.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,8 +1333,7 @@ nil."
13331333
(goto-char original-point)))
13341334

13351335
(defun clojure-delete-and-extract-sexp ()
1336-
"Delete the sexp and return it."
1337-
(interactive)
1336+
"Delete the surrounding sexp and return it."
13381337
(let ((begin (point)))
13391338
(forward-sexp)
13401339
(let ((result (buffer-substring-no-properties begin (point))))

0 commit comments

Comments
 (0)