From 09636abfb63b3698bb463d1ca7c8a1a343564830 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Fri, 20 Sep 2013 07:06:27 +0200 Subject: [PATCH] Get rid of old style backquoting * lisp/ox-texinfo.el (org-texinfo-export-to-texinfo): Use new style backquoting. (org-texinfo-export-to-info): Use new style backquoting. Thanks to Mehul Sanghvi for the patch. --- lisp/ox-texinfo.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index 30da39d2b..29fbc077b 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -1710,7 +1710,7 @@ file-local settings. Return output file's name." (interactive) (let ((outfile (org-export-output-file-name ".texi" subtreep)) - (org-export-coding-system ',org-texinfo-coding-system)) + (org-export-coding-system `,org-texinfo-coding-system)) (org-export-to-file 'texinfo outfile async subtreep visible-only body-only ext-plist))) @@ -1747,7 +1747,7 @@ directory. Return INFO file's name." (interactive) (let ((outfile (org-export-output-file-name ".texi" subtreep)) - (org-export-coding-system ',org-texinfo-coding-system)) + (org-export-coding-system `,org-texinfo-coding-system)) (org-export-to-file 'texinfo outfile async subtreep visible-only body-only ext-plist (lambda (file) (org-texinfo-compile file))))) -- 2.11.4.GIT