* Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)]
@ 2019-04-26 17:51 Ingo Lohmar
0 siblings, 0 replies; 5+ messages in thread
From: Ingo Lohmar @ 2019-04-26 17:51 UTC (permalink / raw)
To: emacs-orgmode
Hi all,
I tried to use `org-agenda-set-tags'. The source buffer, where the
change should be applied is visible at the same time as the agenda is.
Also, fast tag selection with a single key is enabled.
Under these circumstances, the tag text is appended to the line (not
even necessarily a heading!) where point is in the source buffer visible
parallel to the agenda, instead of the correct heading that I acted
upon.
I tracked this done to a missing `save-excursion' wrapped around the
`save-window-excursion' in `org-fast-tag-selection' (org.el line 14567
in my version). This would be analogous to what is done in
`org-fast-todo-selection' and fixes my issue.
Thanks!
Emacs : GNU Emacs 27.0.50 (build 24, x86_64-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
of 2019-02-16
Package: Org mode version 9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)
current state:
==============
(setq
org-fast-tag-selection-single-key t
org-tag-persistent-alist '(("REFILE" . 82) ("SELECT" . 115))
org-src-window-setup 'other-window)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)]
@ 2019-04-27 10:45 Ingo Lohmar
2019-04-29 17:21 ` Nicolas Goaziou
0 siblings, 1 reply; 5+ messages in thread
From: Ingo Lohmar @ 2019-04-27 10:45 UTC (permalink / raw)
To: emacs-orgmode
Hi all,
I tried to use `org-agenda-set-tags'. The source buffer (where the
change should be applied) is visible at the same time as the agenda is.
Also, fast tag selection with a single key is enabled.
Under these circumstances, the tag text is appended to the line (not
even necessarily a heading!) where point is in the source buffer visible
next to the agenda, instead of the correct heading that I acted upon.
I tracked this done to a missing `save-excursion' wrapped around the
`save-window-excursion' in `org-fast-tag-selection' (org.el line 14567
in my version). This would be analogous to what is done in
`org-fast-todo-selection' and fixes my issue.
Thanks!
Emacs : GNU Emacs 27.0.50 (build 24, x86_64-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
of 2019-02-16
Package: Org mode version 9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)
current state:
==============
(setq
org-agenda-window-setup 'current-window
org-fast-tag-selection-single-key t
org-tag-persistent-alist '(("REFILE" . 82) ("SELECT" . 115)))
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)]
2019-04-27 10:45 Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)] Ingo Lohmar
@ 2019-04-29 17:21 ` Nicolas Goaziou
0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2019-04-29 17:21 UTC (permalink / raw)
To: Ingo Lohmar; +Cc: emacs-orgmode
Hello,
Ingo Lohmar <ingo.lohmar@posteo.net> writes:
> I tried to use `org-agenda-set-tags'. The source buffer (where the
> change should be applied) is visible at the same time as the agenda is.
> Also, fast tag selection with a single key is enabled.
>
> Under these circumstances, the tag text is appended to the line (not
> even necessarily a heading!) where point is in the source buffer visible
> next to the agenda, instead of the correct heading that I acted upon.
>
> I tracked this done to a missing `save-excursion' wrapped around the
> `save-window-excursion' in `org-fast-tag-selection' (org.el line 14567
> in my version). This would be analogous to what is done in
> `org-fast-todo-selection' and fixes my issue.
Would you mind sending a patch?
Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)]
@ 2019-05-01 16:03 Damian
2019-05-09 20:05 ` Nicolas Goaziou
0 siblings, 1 reply; 5+ messages in thread
From: Damian @ 2019-05-01 16:03 UTC (permalink / raw)
To: emacs-orgmode, mail
Ingo Lohmar <address@hidden> writes:
> I tried to use `org-agenda-set-tags'. The source buffer (where the
> change should be applied) is visible at the same time as the agenda is.
> Also, fast tag selection with a single key is enabled.
>
> Under these circumstances, the tag text is appended to the line (not
> even necessarily a heading!) where point is in the source buffer visible
> next to the agenda, instead of the correct heading that I acted upon.
>
> I tracked this done to a missing `save-excursion' wrapped around the
> `save-window-excursion' in `org-fast-tag-selection' (org.el line 14567
> in my version). This would be analogous to what is done in
> `org-fast-todo-selection' and fixes my issue.
I am experiencing the same issue. Based on Ingo's analysis I made the
following change which resolved the problem for me.
Thanks,
-Damian
diff --git a/lisp/org.el b/lisp/org.el
index 94713a7e5..3f2bd5758 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -12484,6 +12484,7 @@ Returns the new tags string, or nil to not
change the current settings."
" "
(make-string (- org-tags-column (current-column)) ?\
))))))
(move-overlay org-tags-overlay ov-start ov-end)
+ (save-excursion
(save-window-excursion
(if expert
(set-buffer (get-buffer-create " *Org tags*"))
@@ -12645,7 +12646,7 @@ Returns the new tags string, or nil to not
change the current settings."
(delete-overlay org-tags-overlay)
(if rtn
(mapconcat 'identity current ":")
- nil))))
+ nil)))))
(defun org-make-tag-string (tags)
"Return string associated to TAGS.
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)]
2019-05-01 16:03 Damian
@ 2019-05-09 20:05 ` Nicolas Goaziou
0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2019-05-09 20:05 UTC (permalink / raw)
To: Damian; +Cc: emacs-orgmode
Hello,
Damian <ddtest@gmail.com> writes:
> I am experiencing the same issue. Based on Ingo's analysis I made the
> following change which resolved the problem for me.
Thank you.
Ingo had sent me his patch directly, so I applied it instead. Hopefully,
the issue is now fixed.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-05-09 20:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-27 10:45 Bug: missing `save-excursion' in `org-fast-tag-selection' [9.2.3 (9.2.3-9-g0803e2-elpa @ /home/il/.emacs.d/elpa/org-20190422/)] Ingo Lohmar
2019-04-29 17:21 ` Nicolas Goaziou
-- strict thread matches above, loose matches on Subject: below --
2019-05-01 16:03 Damian
2019-05-09 20:05 ` Nicolas Goaziou
2019-04-26 17:51 Ingo Lohmar
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.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).