Re: [O] emphasis borders, double quotes, and export

2014-04-07 Thread Alan Schmitt
Nicolas Goaziou n.goaz...@gmail.com writes: Alan Schmitt alan.schm...@polytechnique.org writes: Thanks, I'm aware this works. I was trying not to manually set some default values so that, if default changes, I would benefit from the change. But from what I understand there is not really a

Re: [O] emphasis borders, double quotes, and export

2014-04-06 Thread Alan Schmitt
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: Thank you for the suggestion. How can I do that? Add an (org-reload) in my async init file? Is there a more efficient way than loading org, setting the variable, and immediately reloading

Re: [O] emphasis borders, double quotes, and export

2014-04-06 Thread Nicolas Goaziou
Hello, Alan Schmitt alan.schm...@polytechnique.org writes: I assume the problem is that I want to change only one field of `org-emphasis-regexp-components' but it's not possible to do so because it's not defined before org is loaded. I guess one way to proceed is to split up

Re: [O] emphasis borders, double quotes, and export

2014-04-06 Thread Alan Schmitt
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: I assume the problem is that I want to change only one field of `org-emphasis-regexp-components' but it's not possible to do so because it's not defined before org is loaded. I guess

Re: [O] emphasis borders, double quotes, and export

2014-04-06 Thread Nicolas Goaziou
Alan Schmitt alan.schm...@polytechnique.org writes: Thanks, I'm aware this works. I was trying not to manually set some default values so that, if default changes, I would benefit from the change. But from what I understand there is not really a choice here without changing org. I guess the

Re: [O] emphasis borders, double quotes, and export

2014-04-06 Thread Nick Dokos
Nicolas Goaziou n.goaz...@gmail.com writes: Alan Schmitt alan.schm...@polytechnique.org writes: Thanks, I'm aware this works. I was trying not to manually set some default values so that, if default changes, I would benefit from the change. But from what I understand there is not really a

Re: [O] emphasis borders, double quotes, and export

2014-04-05 Thread Alan Schmitt
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: I'm afraid it broke again (it was fixed for a while, but I recently updated org and it's now broken). ECM: exp_init.el: (add-to-list 'load-path

Re: [O] emphasis borders, double quotes, and export

2014-04-05 Thread Nicolas Goaziou
Hello, Alan Schmitt alan.schm...@polytechnique.org writes: Thank you for the suggestion. How can I do that? Add an (org-reload) in my async init file? Is there a more efficient way than loading org, setting the variable, and immediately reloading org again? You can set the variable before

Re: [O] emphasis borders, double quotes, and export

2014-04-04 Thread Alan Schmitt
Hello Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: Looking a little deeper into this, it seems to be a regression. I had files with things like ~'a list~ that exported correctly a couple weeks ago that no longer export

Re: [O] emphasis borders, double quotes, and export

2014-04-04 Thread Nicolas Goaziou
Hello, Alan Schmitt alan.schm...@polytechnique.org writes: I'm afraid it broke again (it was fixed for a while, but I recently updated org and it's now broken). ECM: exp_init.el: (add-to-list 'load-path /Users/schmitta/projets/org-mode/lisp) (require 'org) (require 'ox-html) (setcar

Re: [O] emphasis borders, double quotes, and export

2014-04-04 Thread Nick Dokos
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: I'm afraid it broke again (it was fixed for a while, but I recently updated org and it's now broken). ECM: exp_init.el: (add-to-list 'load-path /Users/schmitta/projets/org-mode/lisp)

Re: [O] emphasis borders, double quotes, and export

2014-04-04 Thread Nicolas Goaziou
Hello, Nick Dokos ndo...@gmail.com writes: The custom-set-variables trick should be enough IIUC. org-emphasis-alist has a :set 'org-set-emph-re i in its property list, so org-set-emph-re gets called to reinitialize everything. But `org-set-emph-re' is insufficient at the moment, because it

Re: [O] emphasis borders, double quotes, and export

2014-04-04 Thread Nick Dokos
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Nick Dokos ndo...@gmail.com writes: The custom-set-variables trick should be enough IIUC. org-emphasis-alist has a :set 'org-set-emph-re i in its property list, so org-set-emph-re gets called to reinitialize everything. But

[O] emphasis borders, double quotes, and export

2014-03-28 Thread Alan Schmitt
Hello, I have removed the single and double quote characters from my configuration of the emphasis borders: #+begin_src emacs-lisp (setcar (nthcdr 2 org-emphasis-regexp-components) \t\n,) (custom-set-variables `(org-emphasis-alist ',org-emphasis-alist)) #+end_src However, the latex export

Re: [O] emphasis borders, double quotes, and export

2014-03-28 Thread Nicolas Goaziou
Hello, Alan Schmitt alan.schm...@polytechnique.org writes: Looking a little deeper into this, it seems to be a regression. I had files with things like ~'a list~ that exported correctly a couple weeks ago that no longer export correctly. This should be fixed. Thank you. Regards, --

Re: [O] emphasis borders, double quotes, and export

2014-03-28 Thread Alan Schmitt
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Alan Schmitt alan.schm...@polytechnique.org writes: Looking a little deeper into this, it seems to be a regression. I had files with things like ~'a list~ that exported correctly a couple weeks ago that no longer export correctly. This

Re: [O] emphasis borders, double quotes, and export

2014-03-28 Thread Alan Schmitt
Alan Schmitt alan.schm...@polytechnique.org writes: Hello, I have removed the single and double quote characters from my configuration of the emphasis borders: #+begin_src emacs-lisp (setcar (nthcdr 2 org-emphasis-regexp-components) \t\n,) (custom-set-variables `(org-emphasis-alist