[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/mpdired 0bead27006 065/133: fix bol positioning in some
From: |
ELPA Syncer |
Subject: |
[elpa] externals/mpdired 0bead27006 065/133: fix bol positioning in some case |
Date: |
Sun, 10 Mar 2024 15:59:37 -0400 (EDT) |
branch: externals/mpdired
commit 0bead27006c83394ec312106af04ac17aacb7f3d
Author: Manuel Giraud <manuel@ledu-giraud.fr>
Commit: Manuel Giraud <manuel@ledu-giraud.fr>
fix bol positioning in some case
---
mpdired.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/mpdired.el b/mpdired.el
index 6708debeb6..0dbb2f35a6 100644
--- a/mpdired.el
+++ b/mpdired.el
@@ -325,7 +325,9 @@
(mpdired--browser-point
(mpdired--reset-point mpdired--browser-point))
(t (goto-char (point-min))
- (when top (mpdired-next-line))))))))
+ (if top
+ (mpdired-next-line)
+ (goto-char (mpdired--bol)))))))))
(defun mpdired--present-queue (proc)
;; Called by filter of the communication buffer.
@@ -360,6 +362,8 @@
(eol (line-end-position))
(x (/ (* elapsed (- eol bol)) duration)))
(put-text-property bol (+ bol x) 'face 'mpdired-progress))))
+ ;; Go to bol no matter what
+ (goto-char (mpdired--bol))
;; Set mode, restore point and memorize stuff
(mpdired-mode)
(when mpdired--songid-point
- [elpa] externals/mpdired 57081d175d 060/133: add a message system, (continued)
- [elpa] externals/mpdired 57081d175d 060/133: add a message system, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired e40891fa3a 069/133: change marks, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 6242a3ab19 071/133: don't clear mark when there is none, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 150283738e 077/133: another key for mark at point, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired b5d5220a44 086/133: wrap some long lines, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 1243df446c 096/133: a DB update command, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 5626857ca4 103/133: playlist -> mpdired--directory, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 5719e8d4a0 112/133: bogus cut from a previous patch, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired a3f8972f8f 117/133: mostly comments, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 5363e1565c 132/133: drop copyright to FSF, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 0bead27006 065/133: fix bol positioning in some case,
ELPA Syncer <=
- [elpa] externals/mpdired 384bcbaf87 072/133: message is already reset when displayed, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 6df5870a7d 067/133: try to go to a correct place upon deletion, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired f5e5350ac0 070/133: unmark all marks, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 6c846ec87d 080/133: message for pause, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 2be9c24398 075/133: use the function reader macro, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 2ac5d2f759 095/133: more text, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 3f6a3bec12 091/133: copy mpd's status in a buffer local var, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired ba9a99a004 104/133: fix view toggle, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired 9690720c32 099/133: starts supporting playlist, ELPA Syncer, 2024/03/10
- [elpa] externals/mpdired b7343a00ca 100/133: playlist browsing, ELPA Syncer, 2024/03/10