On Fri, 8 Oct 2010 01:43:25 -0700, suvayu ali wrote: [...] > > I have the exact same problem ever since I updated org today. (from > commit 344785b 2010-10-03 Bernt Hansen to commit 0901585 2010-10-06 > Eric Schulte) > > My locale is en_IN.utf8, and I am on Fedora 13. I couldn't quite > understand the discussion where the bug actually is. To resolve this > do I need to file a bug with the Fedora bugzilla? I am confused how > can that be possible because I can successfully export to pdf if I > downgrade org to commit 344785b. > > Any suggestions welcome. > > > cheers, > > eric > > > > -- > Suvayu > > Open source is the future. It sets us free. Suvayu, the bug is due to the expression in the texi2dvi script used in an egrep command. The reason it is hitting you now and not before is that the default sequence of commands for exporting org files to PDF has changed from a sequence of "pdflatex" and "bibtex" commands to one of using only "texi2dvi". You can fix the problem by changing the variable org-latex-to-pdf-process. I have set it to : ("pdflatex %f" "bibtex %f" "pdflatex %f" "pdflatex %f") and this works just fine for me. If you don't need bibtex at all, you can remove that entry. You only need multiple runs of pdflatex if you have cross-references (including tables of contents etc). This is a solution in one sense but the real bug is the egrep expression in texi2dvi which is why it is suggested that a bug report be filed. HTH, eric