浏览代码

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.
Jambunathan K 12 年之前
父节点
当前提交
73165e8ba5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/org-odt.el

+ 1 - 1
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)