diff options
| author | condy <condy0919@gmail.com> | 2022-09-27 01:18:45 +0800 |
|---|---|---|
| committer | condy <condy0919@gmail.com> | 2022-09-27 01:18:45 +0800 |
| commit | 76d003c0f0087296fbfe59b13785b6f8db0ce0b0 (patch) | |
| tree | abd183573ded8f6f52c315926c0216f803b9957d /modes | |
| parent | 665d5c99e216c7b18856f7ceda7c91ea5669f904 (diff) | |
emms: Use line-beginning-position
point-at-bol is obsolete since Emacs 29
Diffstat (limited to 'modes')
| -rw-r--r-- | modes/emms/evil-collection-emms.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modes/emms/evil-collection-emms.el b/modes/emms/evil-collection-emms.el index 637398c..be300ad 100644 --- a/modes/emms/evil-collection-emms.el +++ b/modes/emms/evil-collection-emms.el @@ -60,7 +60,7 @@ The return value is the yanked text." (interactive) (emms-with-inhibit-read-only-t - (goto-char (point-at-bol)) + (goto-char (line-beginning-position)) (emms-playlist-mode-yank) (emms-playlist-mode-correct-previous-yank) (evil-previous-line) |
