File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## master (unreleased)
4
+ * Improve support for multiple forms in the same line by replacing beginning-of-defun fn.
4
5
* [ #202 ] ( https://github.com/clojure-emacs/inf-clojure/issues/202 ) : Add ClojureCLR support.
5
6
* [ #204 ] ( https://github.com/clojure-emacs/inf-clojure/issues/204 ) : Scroll repl buffer on insert commands
6
7
* [ #208 ] ( https://github.com/clojure-emacs/inf-clojure/pull/208 ) Display message after setting repl.
Original file line number Diff line number Diff line change @@ -1018,7 +1018,7 @@ current defun else return the string.."
1018
1018
(let ((end (point ))
1019
1019
(case-fold-search t )
1020
1020
(func (if bounds #'cons #'buffer-substring-no-properties )))
1021
- (beginning-of-defun )
1021
+ (beginning-of-defun-raw )
1022
1022
(funcall func (point ) end))))
1023
1023
1024
1024
(defun inf-clojure-eval-defun (&optional and-go )
You can’t perform that action at this time.
0 commit comments