Re: [O] Bug: org-copy-subtree: Invalid function: org-preserve-local-variables

2019-02-03 Thread Abdo Haji-Ali
I just updated emacs to 27.0.50 and I am seeing the exact same error. I think org-preserve-local-variables is in org-macs which is part of org-mode source code. On Sun, Feb 3, 2019 at 4:14 PM Kyle Meyer wrote: > > Hello, > > Abdo Haji-Ali writes: > > > On the latest org

[O] Bug: org-copy-subtree: Invalid function: org-preserve-local-variables

2019-02-03 Thread Abdo Haji-Ali
On the latest org-mode version, 9.2, I keep receiving the error 'org-copy-subtree: Invalid function: org-preserve-local-variables' whenever I try to move a subtree or when I access my agenda. This happens even if I run emacs with '-Q'. Emacs : GNU Emacs 25.3.1 (x86_64-redhat-linux-gnu, GTK+

Re: [O] Bug: org-copy-subtree: Invalid function: org-preserve-local-variables

2019-02-04 Thread Abdo Haji-Ali
Updating to the latest org-mode (9.2.1) seems to solve this issue. On Sun, Feb 3, 2019 at 4:40 PM Abdo Haji-Ali wrote: > I just updated emacs to 27.0.50 and I am seeing the exact same error. > I think org-preserve-local-variables is in org-macs which is part of > org-mode so

[O] Commenting in org-mode 9.2.1

2019-02-04 Thread Abdo Haji-Ali
I just updated to the latest org-mode (9.2.1) and noticed that when I press M-; (or call `org-comment-dwim`) inside a `#+BEGIN_SRC emacs-lisp` section, I get the following error message `org-comment-dwim: Wrong number of arguments: (0 . 2), 3` Calling the function outside a source section works

Re: [O] Commenting in org-mode 9.2.1

2019-02-04 Thread Abdo Haji-Ali
> I cannot reproduce your issue, neither or maint nor on master. Thanks. I was using Emacs 25.2.2. Updating to Emacs 27.0.50 solves this issue. -- Abdo Haji-Ali

[O] Highlight text in org-agenda-prefix-format

2019-04-12 Thread Abdo Haji-Ali
I want to highlight certain text in my todo list in org-agenda. I thought I could do something like this (defun my-func (propertize "texty" 'face 'org-warning)) (setq org-agenda-prefix-format '((todo . "%(my-func) "))) But the text appears without any formatting. Is there a reason