From 73165e8ba54df0263e46029f336bfcc0929b0e99 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Thu, 12 Jul 2012 00:53:02 +0530 Subject: [PATCH] org-odt.el: Use `condition-case-no-debug' * lisp/org-odt.el (org-odt-cleanup-xml-buffers): Use `condition-case-no-debug' instead of `condition-case-unless-debug'. This ensures backward compatibility with Emacs versions < 24.1. --- lisp/org-odt.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-odt.el b/lisp/org-odt.el index 3cb008a46..fcf1ce357 100644 --- a/lisp/org-odt.el +++ b/lisp/org-odt.el @@ -447,7 +447,7 @@ variable, the list of valid values are populated based on xml-files)) ;; delete temporary directory. (delete-directory org-odt-zip-dir t))))) - (condition-case-unless-debug err + (condition-case-no-debug err (prog1 (progn ,@body) (funcall --cleanup-xml-buffers)) ((quit error)