emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Slightly OT
@ 2023-03-28 10:12 Henrik Frisk
  2023-03-28 10:18 ` Ihor Radchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Henrik Frisk @ 2023-03-28 10:12 UTC (permalink / raw)
  To: org-mode-email

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

IHi,

I've been having trouble with the deprecated function
consult-completing-read-multiple being undefined. This happens when I try
C-c C-c in org-mode to add a tag to a header. I know I fixed this issue on
my old computer, but not how.

Any ideas?

Thanks
/Henrik

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

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

* Re: Slightly OT
  2023-03-28 10:12 Slightly OT Henrik Frisk
@ 2023-03-28 10:18 ` Ihor Radchenko
  2023-03-30 11:01   ` Henrik Frisk
  0 siblings, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2023-03-28 10:18 UTC (permalink / raw)
  To: Henrik Frisk; +Cc: org-mode-email

Henrik Frisk <frisk.h@gmail.com> writes:

> I've been having trouble with the deprecated function
> consult-completing-read-multiple being undefined. This happens when I try
> C-c C-c in org-mode to add a tag to a header. I know I fixed this issue on
> my old computer, but not how.

Check your org-ctrl-c-ctrl-c-hook

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


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

* Re: Slightly OT
  2023-03-28 10:18 ` Ihor Radchenko
@ 2023-03-30 11:01   ` Henrik Frisk
  2023-03-30 13:08     ` Ihor Radchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Henrik Frisk @ 2023-03-30 11:01 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: org-mode-email

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

Den tis 28 mars 2023 kl 12:16 skrev Ihor Radchenko <yantar92@posteo.net>:

> Henrik Frisk <frisk.h@gmail.com> writes:
>
> > I've been having trouble with the deprecated function
> > consult-completing-read-multiple being undefined. This happens when I try
> > C-c C-c in org-mode to add a tag to a header. I know I fixed this issue
> on
> > my old computer, but not how.
>
> Check your org-ctrl-c-ctrl-c-hook
>
> I don't have it defined, but maybe you mean to do something else? Calling
org-set-tags gives the same result as dos C-c C-q.

Thanks!
/h

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

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

* Re: Slightly OT
  2023-03-30 11:01   ` Henrik Frisk
@ 2023-03-30 13:08     ` Ihor Radchenko
       [not found]       ` <CAO0LSb6YVs=BRAWWvvto_f02fTnsWWhHcnL-Xv3t5Pmp5B4gvw@mail.gmail.com>
  0 siblings, 1 reply; 5+ messages in thread
From: Ihor Radchenko @ 2023-03-30 13:08 UTC (permalink / raw)
  To: Henrik Frisk; +Cc: org-mode-email

Henrik Frisk <frisk.h@gmail.com> writes:

>> Check your org-ctrl-c-ctrl-c-hook
>>
>> I don't have it defined, but maybe you mean to do something else? Calling
> org-set-tags gives the same result as dos C-c C-q.

Then, `org-after-tags-change-hook'.

More generally, you can M-x toggle-debug-on-error to see more detailed
backtrace.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


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

* Re: Slightly OT
       [not found]       ` <CAO0LSb6YVs=BRAWWvvto_f02fTnsWWhHcnL-Xv3t5Pmp5B4gvw@mail.gmail.com>
@ 2023-04-03  6:19         ` Henrik Frisk
  0 siblings, 0 replies; 5+ messages in thread
From: Henrik Frisk @ 2023-04-03  6:19 UTC (permalink / raw)
  To: Ihor Radchenko, org-mode-email

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

> >> Check your org-ctrl-c-ctrl-c-hook
>> >>
>> >> I don't have it defined, but maybe you mean to do something else?
>> Calling
>> > org-set-tags gives the same result as dos C-c C-q.
>>
>> Then, `org-after-tags-change-hook'.
>>
>> More generally, you can M-x toggle-debug-on-error to see more detailed
>> backtrace.
>>
>> Ah, thanks. The only message I get is:
>
> Symbol’s function definition is void: consult-completing-read-multiple
>
> It's most definitely something in my setup, I just can't seem to find what
> :/
>

>
I finally found the problem so if someone else should run into, here it is.
I had this in my consult setup:

 (advice-add #'completing-read-multiple :override
#'consult-completing-read-multiple)

which I should have found earlier. Sorry for the noise.

/Henrik

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

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

end of thread, other threads:[~2023-04-03  6:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-28 10:12 Slightly OT Henrik Frisk
2023-03-28 10:18 ` Ihor Radchenko
2023-03-30 11:01   ` Henrik Frisk
2023-03-30 13:08     ` Ihor Radchenko
     [not found]       ` <CAO0LSb6YVs=BRAWWvvto_f02fTnsWWhHcnL-Xv3t5Pmp5B4gvw@mail.gmail.com>
2023-04-03  6:19         ` Henrik Frisk

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