Re: [O] R-generated images not showing

2019-09-13 Thread William Denton
On 13 September 2019, William Denton wrote: It turns out I found the cause by accident! I've been using ./configure --with-imagemagick to configure Emacs before compiling it. I tried it without that option, and now the problem has gone away and images are displaying as they should. Aha

Re: [O] R-generated images not showing

2019-09-13 Thread William Denton
On 11 September 2019, Nick Dokos wrote: The usual method is to bisect your setup-orgmode.el file: comment out the bottom half and if that makes it work, then you know that the problem is in the part that you commented out. Recursively, bisect further. My problem report wasn't very good, I

Re: [O] R-generated images not showing

2019-09-11 Thread Nick Dokos
William Denton writes: > This problem started for me a little while ago: images generated from R > source > blocks no longer appear even though I have images display turned on. > > For example, this file: > > # - > > #+begin_src R :results graphics file :file /tmp/src.png > x <- seq(-4,

[O] R-generated images not showing

2019-09-11 Thread William Denton
This problem started for me a little while ago: images generated from R source blocks no longer appear even though I have images display turned on. For example, this file: # - #+begin_src R :results graphics file :file /tmp/src.png x <- seq(-4, 4, length=200) y <- dnorm(x, mean=0, sd=1)