emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/subed c04670a 007/389: Adjust some docstrimgs


From: ELPA Syncer
Subject: [nongnu] elpa/subed c04670a 007/389: Adjust some docstrimgs
Date: Fri, 3 Dec 2021 10:59:46 -0500 (EST)

branch: elpa/subed
commit c04670a882819ee7211e31d1f3dbfb39bc7c30a6
Author: Random User <rndusr@posteo.de>
Commit: Random User <rndusr@posteo.de>

    Adjust some docstrimgs
---
 subed/subed-srt.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/subed/subed-srt.el b/subed/subed-srt.el
index e45b997..ea057c3 100644
--- a/subed/subed-srt.el
+++ b/subed/subed-srt.el
@@ -198,16 +198,16 @@ Return point unless point did not change."
 
 (defun subed-srt-forward-subtitle-id ()
   "Move point to next subtitle's ID.
-Return new point or nil if point didn't change (e.g. if called on
-the last subtitle)."
+Return point or nil if point didn't change (e.g. if called on the
+last subtitle)."
   (interactive)
   (when (re-search-forward (concat subed-srt--regexp-separator "[[:alnum:]]") 
nil t)
     (subed-srt-move-to-subtitle-id)))
 
 (defun subed-srt-backward-subtitle-id ()
   "Move point to previous subtitle's ID.
-Return new point or nil if point didn't change (e.g. if called on
-the first subtitle)."
+Return point or nil if point didn't change (e.g. if called on the
+first subtitle)."
   (interactive)
   (when (re-search-backward subed-srt--regexp-separator nil t)
     (subed-srt-move-to-subtitle-id)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]