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 one way to proceed is to split up >> `org-emphasis-regexp-components' into its four components, to be able to >> change only the one I need. Would such a patch be accepted? > > This is not needed. You can redefine the four components with an initial > setq: > > (setq org-emphasis-regexp-components > '(" \t('\"{" "- \t.,:!?;'\")}\\" your-own-string "." 1))
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. Thanks again, Alan