emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Bug: Multiple tag selection broken on maint
@ 2018-03-22 14:01 Alex Branham
  2018-04-20  9:27 ` Nicolas Goaziou
  0 siblings, 1 reply; 6+ messages in thread
From: Alex Branham @ 2018-03-22 14:01 UTC (permalink / raw)
  To: emacs-orgmode


I'm tracking maint. With the following file:

#+BEGIN_EXAMPLE
  #+TAGS: office(c) car(C)
  * one
#+END_EXAMPLE

Doing C-c C-q on the "one" heading will not let me set both office and
car tags. They are highlighted in the little selection popup, but only
the last one selected actually gets added.


Emacs  : GNU Emacs 26.0.91 (build 1, x86_64-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
 of 2018-03-20
Package: Org mode version 9.1.7 (release_9.1.7-31-gb5a90a @ /home/alex/.emacs.d/lib/org/lisp/)

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

* Re: Bug: Multiple tag selection broken on maint
  2018-03-22 14:01 Bug: Multiple tag selection broken on maint Alex Branham
@ 2018-04-20  9:27 ` Nicolas Goaziou
  2018-04-20 13:28   ` Alex Branham
  2018-04-20 13:58   ` Alex Branham
  0 siblings, 2 replies; 6+ messages in thread
From: Nicolas Goaziou @ 2018-04-20  9:27 UTC (permalink / raw)
  To: Alex Branham; +Cc: emacs-orgmode

Hello,

Alex Branham <alex.branham@gmail.com> writes:

> I'm tracking maint. With the following file:
>
> #+BEGIN_EXAMPLE
>   #+TAGS: office(c) car(C)
>   * one
> #+END_EXAMPLE

FWIW, I couldn't reproduce it on master.

Regards,

-- 
Nicolas Goaziou

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

* Re: Bug: Multiple tag selection broken on maint
  2018-04-20  9:27 ` Nicolas Goaziou
@ 2018-04-20 13:28   ` Alex Branham
  2018-04-20 13:58   ` Alex Branham
  1 sibling, 0 replies; 6+ messages in thread
From: Alex Branham @ 2018-04-20 13:28 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode


On Fri 20 Apr 2018 at 04:27, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:

>> I'm tracking maint. With the following file:
>>
>> #+BEGIN_EXAMPLE
>>   #+TAGS: office(c) car(C)
>>   * one
>> #+END_EXAMPLE
>
> FWIW, I couldn't reproduce it on master.

That's surprising, since I can reproduce this on maint and master. Maybe
you need to have set `org-tag-persistent-alist'? I'll investigate a bit...

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

* Re: Bug: Multiple tag selection broken on maint
  2018-04-20  9:27 ` Nicolas Goaziou
  2018-04-20 13:28   ` Alex Branham
@ 2018-04-20 13:58   ` Alex Branham
  2018-04-23 13:35     ` Nicolas Goaziou
  1 sibling, 1 reply; 6+ messages in thread
From: Alex Branham @ 2018-04-20 13:58 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode


On Fri 20 Apr 2018 at 04:27, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:

>> #+BEGIN_EXAMPLE
>>   #+TAGS: office(c) car(C)
>>   * one
>> #+END_EXAMPLE
>
> FWIW, I couldn't reproduce it on master.

It seems to be a problem with org-tag-persistent-alist. I can't
reproduce it if that's nil, but if it's set to

(setq org-tag-persistent-alist '(("jobs" . ?j)
                                 (:startgroup . nil)
                                 ("@work" . ?w)
                                 ("@home" . ?h)
                                 (:endgroup . nil)))

then I can reproduce it.

Thanks,
Alex

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

* Re: Bug: Multiple tag selection broken on maint
  2018-04-20 13:58   ` Alex Branham
@ 2018-04-23 13:35     ` Nicolas Goaziou
  2018-04-23 14:18       ` Alex Branham
  0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2018-04-23 13:35 UTC (permalink / raw)
  To: Alex Branham; +Cc: emacs-orgmode

Hello,

Alex Branham <alex.branham@gmail.com> writes:

> On Fri 20 Apr 2018 at 04:27, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
>
>>> #+BEGIN_EXAMPLE
>>>   #+TAGS: office(c) car(C)
>>>   * one
>>> #+END_EXAMPLE
>>
>> FWIW, I couldn't reproduce it on master.
>
> It seems to be a problem with org-tag-persistent-alist. I can't
> reproduce it if that's nil, but if it's set to
>
> (setq org-tag-persistent-alist '(("jobs" . ?j)
>                                  (:startgroup . nil)
>                                  ("@work" . ?w)
>                                  ("@home" . ?h)
>                                  (:endgroup . nil)))
>
> then I can reproduce it.

Fixed. Thank you.

Regards,

-- 
Nicolas Goaziou                                                0x80A93738

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

* Re: Bug: Multiple tag selection broken on maint
  2018-04-23 13:35     ` Nicolas Goaziou
@ 2018-04-23 14:18       ` Alex Branham
  0 siblings, 0 replies; 6+ messages in thread
From: Alex Branham @ 2018-04-23 14:18 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: emacs-orgmode

> Fixed. Thank you.

Thanks!

Alex

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

end of thread, other threads:[~2018-04-23 14:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-22 14:01 Bug: Multiple tag selection broken on maint Alex Branham
2018-04-20  9:27 ` Nicolas Goaziou
2018-04-20 13:28   ` Alex Branham
2018-04-20 13:58   ` Alex Branham
2018-04-23 13:35     ` Nicolas Goaziou
2018-04-23 14:18       ` Alex Branham

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).