Fix #255.
`prelude-duplicate-current-line-or-region` was broken after the introduction of dash.el.
This commit is contained in:
parent
202451cb57
commit
1f7f6d0bbd
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ there's a region, all lines that region covers will be duplicated."
|
|||
(setq end (line-end-position))
|
||||
(let ((region (buffer-substring-no-properties beg end)))
|
||||
(-dotimes arg
|
||||
(lambda ()
|
||||
(lambda (n)
|
||||
(goto-char end)
|
||||
(newline)
|
||||
(insert region)
|
||||
|
|
Loading…
Reference in a new issue