Re: [O] Greek symbol rendering problem in gnuplot

2019-04-28 Thread Fraga, Eric
Emacs (and hence org) will use whichever gnuplot is found in your $PATH, assuming you're on Linux (you did not specify). You also, for babel, need the gnuplot mode. I don't understand why you removed the gnuplot package as it does not have the emacs mode; that is provided by the separate gnuplot-

[O] Greek symbol rendering problem in gnuplot

2019-04-28 Thread Lawrence Bottorff
Maybe take a look at this issue, which describes a tortured trek to find a way to get Gnuplot to properly render Π (pi) in an output graphic. Apparently, the gnuplot package is from 2014 and doesn't handle Greek

Re: [O] Bug: Clock/Time summaries don't work across years [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/emacs/26.1/lisp/org/)]

2019-04-28 Thread Nicolas Goaziou
Hello, George Kontsevich writes: > There is a rather serious bug with the Clocking feature in Org-mode > > If you have a Org section that looks like this > > * Test >   CLOCK: [2019-01-02 Wed 10:06]--[2019-01-02 Wed 11:06] =>  1:00 >  hello >   CLOCK: [2019-01-02 Tue 10:06]--[2019-01-02 Tue 11:0

Re: [O] Bug: Strike-through messes with heading face [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/local/share/emacs/27.0.50/lisp/org/)]

2019-04-28 Thread Kévin Le Gouguec
Thank you for applying the patch, although after discussing with Stefan Monnier on help-gnu-emacs[1], I believe the correct fix should go in Emacs's font-lock.el. font-lock-prepend-text-property should work just as well as font-lock-append-text-property, and my patch relies on undefined behaviour

Re: [O] [PATCH] Fix behaviour of ":dir" when ":mkdirp" is not defined

2019-04-28 Thread Achim Gratz
Am 24.04.2019 um 12:43 schrieb Joaquín Aguirrezabalaga: #+begin_src elisp :dir /tmp/some-test-dir :mkdirp t default-directory #+end_src Do not hardcode "/tmp" in the tests. -- Achim. (on the road :-)

[O] bug#35419: [Proposal] Buffer Lenses and the Case of Org-Mode (also, Jupyter)

2019-04-28 Thread Philipp Stephani
Am Do., 25. Apr. 2019 um 10:41 Uhr schrieb Dmitrii Korobeinikov : > I have imagined that at the low level there is an actual data structure that > keeps the raw textual data and it could be directly shared by multiple > buffers. That's what indirect buffers do. Maybe the indirect buffer function

[O] 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-28 Thread Ingo Lohmar
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 headi

[O] Setupfile doesn't seem to pass pre-defined macros

2019-04-28 Thread emsenn
Hey y'all, I've recently been playing more with Org-mode's INCLUDE and SETUPFILE features, and think I might have found a bug. File alpha.org contains #+MACRO: womble fribble #+AUTHOR: muffet File beta.org contains #+SETUPFILE: ./alpha.org The womble macro is {{{womble}}} File gamma.org cont

[O] Add a dynamic block to a block agenda

2019-04-28 Thread Gautam Mohan
Hello, I’m trying to put together some disparate parts of org’s functionality into one export and I’m not sure of the best way to do so. I have a few customized clock report dynamic blocks, a column view dynamic block, and some complex tag queries that I handle using the agenda (currently disp

[O] Bug: Clock/Time summaries don't work across years [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/emacs/26.1/lisp/org/)]

2019-04-28 Thread George Kontsevich
There is a rather serious bug with the Clocking feature in Org-mode If you have a Org section that looks like this * Test   CLOCK: [2019-01-02 Wed 10:06]--[2019-01-02 Wed 11:06] =>  1:00  hello   CLOCK: [2019-01-02 Tue 10:06]--[2019-01-02 Tue 11:06] =>  1:00  hi And then you hit C-c C-x C-d yo

[O] Bug: previous-line throws "beginning of buffer" with visual-line-mode on [9.2 (9.2-elpa @ /home/avercruysse/.emacs.d/elpa/org-20181230/)]

2019-04-28 Thread Alec Vercruysse
Hello, I've recently switched to org mode as my fundamental mode, and do almost all of my writing in it now. One issue that I've encountered, however, is that with a lot of text under a single subheading, when holding the up arrow key to move point up (running previous-line, found in global-map),

[O] 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-28 Thread Ingo Lohmar
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 head

[O] [PATCH] Fix behaviour of ":dir" when ":mkdirp" is not defined

2019-04-28 Thread Joaquín Aguirrezabalaga
Hello, I think the behaviour of ":dir" is broken since commit 8b5941330 (ob-core: Make :mkdirp work for :dir too). It only works now if ":mkdirp" is defined. If I execute the following: #+begin_src elisp :dir /tmp/some-test-dir default-directory #+end_src Instead of the expected "/tmp/som