Browse Source

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 năm trước cách đây
mục cha
commit
73165e8ba5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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)