unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#19727: 25.0.50; setting a todo item to done puts point at the end of the buffer
@ 2015-01-29 10:10 Robert Pluim
  2015-02-03 22:39 ` Stephen Berman
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Pluim @ 2015-01-29 10:10 UTC (permalink / raw)
  To: 19727

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

Hi,

when I set an item to done in a todo-mode buffer, point ends up at the
end of the buffer, which is somewhat surprising. Attached patch
remembers where point was, and restores it.

Regards

Robert

In GNU Emacs 25.0.50.6 (i686-pc-cygwin)
 of 2015-01-28 on RPLUIM
Repository revision: 8a8bd38fedb89b2d04cca2419698813a22862c3b
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --with-w32 --with-wide-int'


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: todo-mode-done-restore-point.patch --]
[-- Type: text/x-patch, Size: 987 bytes --]

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 90681c8..060cbf7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-01-26  Robert Pluim  <rpluim@gmail.com>
+
+	* calendar/todo-mode.el (todo-item-done): Initialize opoint so
+	that point stays where it is when setting items to DONE.
+
 2015-01-28  Tassilo Horn  <tsdh@gnu.org>
 
 	* textmodes/reftex.el (reftex-syntax-table-for-bib): Give ( and )
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el
index 7ca57a4..2fb7e2e 100644
--- a/lisp/calendar/todo-mode.el
+++ b/lisp/calendar/todo-mode.el
@@ -2816,7 +2816,8 @@ (defun todo-item-done (&optional arg)
 			  (goto-char (point-min))
 			  (re-search-forward todo-done-string-start nil t)))
 	     (buffer-read-only nil)
-	     item done-item opoint)
+	     item done-item
+	     (opoint (point)))
 	;; Don't add empty comment to done item.
 	(setq comment (unless (zerop (length comment))
 			(concat " [" todo-comment-string ": " comment "]")))

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

* bug#19727: 25.0.50; setting a todo item to done puts point at the end of the buffer
  2015-01-29 10:10 bug#19727: 25.0.50; setting a todo item to done puts point at the end of the buffer Robert Pluim
@ 2015-02-03 22:39 ` Stephen Berman
  2015-02-04 12:48   ` Robert Pluim
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Berman @ 2015-02-03 22:39 UTC (permalink / raw)
  To: Robert Pluim; +Cc: 19727

On Thu, 29 Jan 2015 11:10:47 +0100 Robert Pluim <rpluim@gmail.com> wrote:

> when I set an item to done in a todo-mode buffer, point ends up at the
> end of the buffer, which is somewhat surprising. Attached patch
> remembers where point was, and restores it.

As the todo-mode.el maintainer, sorry for not responding sooner.  I
guess it's reasonable to leave point where the previously not-done item
was when the done items section is hidden.  I take it you have no
objection to the current behavior of point moving to the item just set
to done when the done items section is visible, since your patch doesn't
alter that.  If so, then I'll install your patch as is (but with a more
appropriate commit message and ChangeLog entry).  Before I do that, have
you submitted a copyright assignment for Emacs?  If not, I'll install it
as a tiny change.  Thanks for the patch.

Steve Berman





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

* bug#19727: 25.0.50; setting a todo item to done puts point at the end of the buffer
  2015-02-03 22:39 ` Stephen Berman
@ 2015-02-04 12:48   ` Robert Pluim
  2015-02-04 21:46     ` Stephen Berman
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Pluim @ 2015-02-04 12:48 UTC (permalink / raw)
  To: 19727; +Cc: Stephen Berman

Stephen Berman <stephen.berman@gmx.net> writes:

> On Thu, 29 Jan 2015 11:10:47 +0100 Robert Pluim <rpluim@gmail.com> wrote:
>
>> when I set an item to done in a todo-mode buffer, point ends up at the
>> end of the buffer, which is somewhat surprising. Attached patch
>> remembers where point was, and restores it.
>
> As the todo-mode.el maintainer, sorry for not responding sooner.

I can carry local patches forever :-)

> I
> guess it's reasonable to leave point where the previously not-done item
> was when the done items section is hidden.  I take it you have no
> objection to the current behavior of point moving to the item just set
> to done when the done items section is visible, since your patch doesn't
> alter that.

I never set the done items to visible, so can't offer an opinion there.

> If so, then I'll install your patch as is (but with a more
> appropriate commit message and ChangeLog entry).  Before I do that, have
> you submitted a copyright assignment for Emacs?  If not, I'll install it
> as a tiny change.  Thanks for the patch.

I don't have a copyright assignment on file.  I have no objection to
doing so if necessary, but for such a small change I suspect it would be
more effort than it's worth.

Regards

Robert






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

* bug#19727: 25.0.50; setting a todo item to done puts point at the end of the buffer
  2015-02-04 12:48   ` Robert Pluim
@ 2015-02-04 21:46     ` Stephen Berman
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Berman @ 2015-02-04 21:46 UTC (permalink / raw)
  To: 19727-done; +Cc: Robert Pluim

On Wed, 04 Feb 2015 13:48:37 +0100 Robert Pluim <rpluim@gmail.com> wrote:

> I don't have a copyright assignment on file.  I have no objection to
> doing so if necessary, but for such a small change I suspect it would be
> more effort than it's worth.

I committed your patch to emacs-24 and am closing this bug.  Thanks
again.

Steve Berman





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

end of thread, other threads:[~2015-02-04 21:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-29 10:10 bug#19727: 25.0.50; setting a todo item to done puts point at the end of the buffer Robert Pluim
2015-02-03 22:39 ` Stephen Berman
2015-02-04 12:48   ` Robert Pluim
2015-02-04 21:46     ` Stephen Berman

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).