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

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

[nongnu] elpa/crux dcd693c 093/112: Rename move-to-mode-line-start to cr


From: ELPA Syncer
Subject: [nongnu] elpa/crux dcd693c 093/112: Rename move-to-mode-line-start to crux-move-to-mode-line-start
Date: Wed, 11 Aug 2021 09:58:00 -0400 (EDT)

branch: elpa/crux
commit dcd693c258ae4d867b18d9a028a828ef6c42a4a6
Author: Bozhidar Batsov <bozhidar@batsov.com>
Commit: Bozhidar Batsov <bozhidar@batsov.com>

    Rename move-to-mode-line-start to crux-move-to-mode-line-start
---
 crux.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/crux.el b/crux.el
index 64f2541..0854e4f 100644
--- a/crux.el
+++ b/crux.el
@@ -292,7 +292,7 @@ With a prefix ARG open line above the current line."
 Passes ARG to command `kill-whole-line' when provided."
   (interactive "p")
   (kill-whole-line arg)
-  (move-to-mode-line-start))
+  (crux-move-to-mode-line-start))
 
 ;;;###autoload
 (defun crux-kill-line-backwards ()
@@ -311,7 +311,7 @@ Deletes whitespace at join."
       (delete-indentation 1)
     (kill-line arg)))
 
-(defun move-to-mode-line-start ()
+(defun crux-move-to-mode-line-start ()
   "Move to the beginning, skipping mode specific line start regex."
   (interactive)
 
@@ -345,7 +345,7 @@ point reaches the beginning or end of the buffer, stop 
there."
       (forward-line (1- arg))))
 
   (let ((orig-point (point)))
-    (move-to-mode-line-start)
+    (crux-move-to-mode-line-start)
     (when (= orig-point (point))
       (move-beginning-of-line 1))))
 



reply via email to

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