[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/subed 73419ca 021/389: Make forward/backward movement test
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/subed 73419ca 021/389: Make forward/backward movement tests pass |
Date: |
Fri, 3 Dec 2021 10:59:49 -0500 (EST) |
branch: elpa/subed
commit 73419ca09f034daed7ace31fa3398c9d12b6075c
Author: Random User <rndusr@posteo.de>
Commit: Random User <rndusr@posteo.de>
Make forward/backward movement tests pass
---
subed/subed-srt.el | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/subed/subed-srt.el b/subed/subed-srt.el
index d97a5db..52cee16 100644
--- a/subed/subed-srt.el
+++ b/subed/subed-srt.el
@@ -243,26 +243,26 @@ Return point or nil if there is no previous subtitle."
(defun subed-srt-forward-subtitle-time-start ()
"Move point to next subtitle's start time."
(interactive)
- (subed-srt-forward-subtitle-id)
- (subed-srt-move-to-subtitle-time-start))
+ (when (subed-srt-forward-subtitle-id)
+ (subed-srt-move-to-subtitle-time-start)))
(defun subed-srt-backward-subtitle-time-start ()
"Move point to previous subtitle's start time."
(interactive)
- (subed-srt-backward-subtitle-id)
- (subed-srt-move-to-subtitle-time-start))
+ (when (subed-srt-backward-subtitle-id)
+ (subed-srt-move-to-subtitle-time-start)))
(defun subed-srt-forward-subtitle-time-stop ()
"Move point to next subtitle's stop time."
(interactive)
- (subed-srt-forward-subtitle-id)
- (subed-srt-move-to-subtitle-time-stop))
+ (when (subed-srt-forward-subtitle-id)
+ (subed-srt-move-to-subtitle-time-stop)))
(defun subed-srt-backward-subtitle-time-stop ()
"Move point to previous subtitle's stop time."
(interactive)
- (subed-srt-backward-subtitle-id)
- (subed-srt-move-to-subtitle-time-stop))
+ (when (subed-srt-backward-subtitle-id)
+ (subed-srt-move-to-subtitle-time-stop)))
;;; Manipulation
- [nongnu] branch elpa/subed created (now d0dfa1a), ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 6a12f22 002/389: When debugging, don't autoscroll if debug-window is hidden, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed d8bf4ed 001/389: Initial commit, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 2ff368b 004/389: Move subed-subtitle-time-adjusted-hook where it belongs, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 9d54f39 005/389: Be more robust when getting start/stop time, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 433f7b4 003/389: subed-disable-sync-point-to-player-temporarily: Remove debug msgs, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 70e6cea 015/389: README: Test unicode non-breaking space, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed d98325c 011/389: Add tests for getting subtitle start/stop time, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 73419ca 021/389: Make forward/backward movement tests pass,
ELPA Syncer <=
- [nongnu] elpa/subed 99a235a 019/389: Spoon trailing parens, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 46aeb10 020/389: Add more tests for forward/backward movement, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed fd7c2ba 017/389: Add tests for getting relative point within subtitle, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed ac4bc87 025/389: Add more tests for moving to subtitle ID, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 7d4caaa 018/389: Move time adjustment tests, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed f8a7c6a 029/389: Fix test that failed because of lexical scoping, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed b3f2776 032/389: Adjust some test descriptions and apply cosmetics, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 4b16d97 033/389: Trying to do more resilient srt parsing, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 63f0ef5 040/389: In general, subtitle separator must be two or more newlines, ELPA Syncer, 2021/12/03
- [nongnu] elpa/subed 52ee2ac 006/389: Be more robust when getting subtitle's relative point, ELPA Syncer, 2021/12/03