[O] bug#18785: 24.4.1; Emacs hangs with Org mode when point is in LOGBOOK

2015-12-26 Thread Lars Ingebrigtsen
Eli Zaretskii writes: >> From: Glenn Morris >> Cc: Sebastien Vauban , 18...@debbugs.gnu.org >> Date: Wed, 26 Nov 2014 11:53:03 -0500 >> >> Eli Zaretskii wrote: >> >> >> "sp-show--pair-function" (0x88f14c) >> [...] >> > Maybe. This

[O] Changing org-block background with org-src-fontify-natively

2015-12-26 Thread Karl Voit
Hi! ,[ my current settings for org-block ] | (defface org-block | ;; defface org-block-background was removed from org: | ;; http://emacs.stackexchange.com/questions/14824/org-block-background-font-not-having-effect | '((t (:background "#00"))) | "Face used for the source

Re: [O] [PATCH] ob-sql: Don't print out the command

2015-12-26 Thread Nicolas Goaziou
Hello, Sacha Chua writes: > * lisp/ob-sql.el (org-babel-execute:sql): Don't print out the command > in the echo area, since it could be very long. Applied. Thank you. Regards, -- Nicolas Goaziou

[O] bug#17651: 24.3.91; Emacs hangs in Org

2015-12-26 Thread Lars Ingebrigtsen
Glenn Morris writes: > Sebastien Vauban wrote: > >> Emacs 24.3.91.1 (of 2014-05-12) regularly hangs with Org-mode version >> 8.2.6 (release_8.2.6-1010-g1ca86f). > > Well I guess this is an Org bug, which will get more attention on the > Org list. > > (See eg

Re: [O] [PATCH] Implement RSS_FEED_URL option keyword

2015-12-26 Thread Arun Isaac
> Although it is not strictly necessary for applying patches to contrib > libraries, did you sign FSF papers already? It can matter if we consider > moving this library into core some day. I have initiated the process. I will get back to you once it is complete. signature.asc Description: PGP

Re: [O] blog refurbised: how is it in 2015 ?

2015-12-26 Thread joakim
Xavier Maillard writes: > Hey, > > in the same vein I am refurbishing my Gnus (and love it), I'd like, as a 2k16 > resolution (right word in english ?), to restart my long abandoned blog. As > usual, this is something I can't imagine doing outside GNU emacs and thus >

Re: [O] bug#17749: 24.3.91; Crash on mwheel-scroll of org file

2015-12-26 Thread Lars Ingebrigtsen
Eli Zaretskii writes: > No, sorry. I really need to reproduce this on my machine and run > Emacs under a debugger to see what happens and why. > > Please try to come up with a recipe starting from "emacs -Q". It is > OK to include customizations and loading of optional packages,

Re: [O] [PATCH] Implement RSS_FEED_URL option keyword

2015-12-26 Thread Nicolas Goaziou
Hello, Arun Isaac writes: > I have implemented a new option keyword, RSS_FEED_URL, for the RSS > exporter backend. > > The RSS_FEED_URL goes into the atom:link element that identifies the > feed's own URL. > >

[O] [RFC] Change \[..\] and $$...$$ into elements

2015-12-26 Thread Nicolas Goaziou
Hello, The following patch changes status for \[..\] and $$...$$ from objects to elements. There are two consequences to this : 1. \[...\] and $$...$$ are not filled anymore with M-q. 2. \[...\] and $$...$$ cannot be inlined, i.e, they must start at the beginning of a line. In

[O] bug#17651: 24.3.91; Emacs hangs in Org

2015-12-26 Thread Lars Ingebrigtsen
Lars Ingebrigtsen writes: > Glenn Morris writes: > >> Sebastien Vauban wrote: >> >>> Emacs 24.3.91.1 (of 2014-05-12) regularly hangs with Org-mode version >>> 8.2.6 (release_8.2.6-1010-g1ca86f). >> >> Well I guess this is an Org bug, which will get more attention

Re: [O] Publishing images to various sizes

2015-12-26 Thread John Kitchin
This isn't quite what you want but it is close. It is some code I hacked a while ago to convert pdf files to png files for html export. You can probably adapt this to get the sizes that you want by modifying the shell command. (defun my-link-format (link contents info) (let ((type

Re: [O] Changing org-block background with org-src-fontify-natively

2015-12-26 Thread Karl Voit
* Karl Voit wrote: > > So, is there a way to modify (only) the background colour also for > source blocks with a given type and active org-src-fontify-natively? Addendum: https://stackoverflow.com/a/30139612 shows my situation whereas the setup of John Kitchin

[O] Working with in-line src and fill-mode/running into new line

2015-12-26 Thread John Hendy
Greetings, I don't use in-line code too often, but did recently and often found myself undoing line wrapping since the code would spill into a new line, failing to be recognized by C-c C-c. Here's an example (I have fill-mode set to 90 characters): #+begin_example * in-line src #+begin_src R

Re: [O] Changing org-block background with org-src-fontify-natively

2015-12-26 Thread Xebar Saram
Hi all so i have zero technical skills or knowledge, but i have been looking for a way to have a different background in org-src blocks so that bash backgrounds will have a black color, lisp a white color etc. from what i understand (but i may be totally off here) Karl, thats what your trying to

Re: [O] Publishing images to various sizes

2015-12-26 Thread Arun Isaac
John Kitchin writes: > (defun my-link-format (link contents info) > (let ((type (org-element-property :type link)) > (path (org-element-property :path link))) > (cond > ((and >(string= type "file") >(string-match "\.pdf" path)) >