all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* May I do this small change to image-dired now?
@ 2016-02-27 13:21 Mathias Dahl
  2016-02-28  3:42 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 3+ messages in thread
From: Mathias Dahl @ 2016-02-27 13:21 UTC (permalink / raw)
  To: emacs-devel

[-- Attachment #1: Type: text/plain, Size: 1597 bytes --]

Hi,

I got some inspiration today to actually "maintain" `image-dired' again :)

I cloned the Git repo and have committed a small local change. Here is what
git show tells me has happened:

==
Author: Mathias Dahl <mathias.dahl@gmail.com>
Date:   Sat Feb 27 14:11:02 2016 +0100

    Try to preserve the current column when using `image-dired-next-line'
and `image-dired-previous-line'.

diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index a8274f5..67b023d 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -1143,7 +1143,8 @@ image."
 (defun image-dired-next-line ()
   "Move to next line and display properties."
   (interactive)
-  (forward-line 1)
+  (let ((goal-column (current-column)))
+    (next-line))
   ;; If we end up in an empty spot, back up to the next thumbnail.
   (if (not (image-dired-image-at-point-p))
       (image-dired-backward-image))
@@ -1155,7 +1156,8 @@ image."
 (defun image-dired-previous-line ()
   "Move to previous line and display properties."
   (interactive)
-  (forward-line -1)
+  (let ((goal-column (current-column)))
+    (previous-line))
   ;; If we end up in an empty spot, back up to the next
   ;; thumbnail. This should only happen if the user deleted a
   ;; thumbnail and did not refresh, so it is not very common. But we
==

I have two questions:

1. If I git push this change, will it end up on the main Emacs branch (or
trunk, Git and VCSes are not my strongest skill...)? I initially cloned the
repo using my username on Savannah according to the guideline on EmacsWiki.
2. Is it a good time to do this now?

Thanks!

/Mathias

[-- Attachment #2: Type: text/html, Size: 2268 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-29 21:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-27 13:21 May I do this small change to image-dired now? Mathias Dahl
2016-02-28  3:42 ` Lars Ingebrigtsen
2016-02-29 21:58   ` Mathias Dahl

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.