Re: [O] Wrong number of arguments: setq, 1

2015-12-11 Thread Kyle Meyer
Nick Dokos writes: > Kaushal Modi writes: > >> ... >> Without these fixes, I get an error like: Wrong number of arguments: setq, 1 >> > > I don't. Version info: Your Emacs 25 build isn't recent enough to have the issue. See

Re: [O] Wrong number of arguments: setq, 1

2015-12-11 Thread Nick Dokos
Kaushal Modi writes: > ... > Without these fixes, I get an error like: Wrong number of arguments: setq, 1 > I don't. Version info: Org-mode version 8.3.2 (release_8.3.2-380-g64aee4 @ /home/nick/elisp/org-mode/lisp/) GNU Emacs 25.0.50.1 (x86_64-unknown-linux-gnu, GTK+

Re: [O] Wrong number of arguments: setq, 1

2015-12-11 Thread Nick Dokos
Kyle Meyer writes: > Nick Dokos writes: > >> Kaushal Modi writes: >> >>> ... >>> Without these fixes, I get an error like: Wrong number of arguments: setq, 1 >>> >> >> I don't. Version info: > > Your Emacs 25 build isn't recent enough

[O] Wrong number of arguments: setq, 1

2015-12-11 Thread Kaushal Modi
Hi, I needed to make these changes locally to make any kind of org export (text, html, latex) work. diff --git a/lisp/ox.el b/lisp/ox.el index 2908fed..40c51cb 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -1779,7 +1779,7 @@ INFO is a plist holding export options." ;; If FILETAGS contains a

Re: [O] Wrong number of arguments: setq, 1

2015-12-11 Thread Kaushal Modi
I just found a recent conversation on this mailing list with the title: Concerning `(letrec ((ignore)) ...)' in line 2718 of lisp/ox.el That explains why I suddenly started seeing these errors. My above patch fixes org exports for me while being on the latest snapshot of emacs-25 branch.