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") >> >> (require 'org) >> (require 'ox-html) >> >> (setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,") >> (custom-set-variables `(org-emphasis-alist ',org-emphasis-alist)) > > You need to reload Org after modifying `org-emphasis-regexp-components'. >
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. Nick