Skip to content

Commit

Permalink
Merge pull request #326 from clojure-emacs/ml-moves-point
Browse files Browse the repository at this point in the history
[Fix #299] `ml` moves point
  • Loading branch information
benedekfazekas committed Apr 9, 2016
2 parents 7e35bd1 + 75d8f45 commit a428ce2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

### Bugs fixed

-[#299](https://github.com/clojure-emacs/clj-refactor.el/issues/299) `ml` moves cursor
- [#320](https://github.com/clojure-emacs/clj-refactor.el/issues/320) `*data-readers*` ignored when searching for macros.

## 2.2.0
Expand Down
3 changes: 2 additions & 1 deletion clj-refactor.el
Original file line number Diff line number Diff line change
Expand Up @@ -1819,7 +1819,8 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-expand-let"

(defun cljr--replace-sexp-with-binding-in-let ()
(remove-hook 'multiple-cursors-mode-disabled-hook 'cljr--replace-sexp-with-binding-in-let)
(-each (cljr--get-let-bindings) 'cljr--replace-sexp-with-binding))
(save-excursion
(-each (cljr--get-let-bindings) 'cljr--replace-sexp-with-binding)))

;;;###autoload
(defun cljr-move-to-let ()
Expand Down

0 comments on commit a428ce2

Please sign in to comment.