summaryrefslogtreecommitdiffstatshomepage
path: root/tekuti/post.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tekuti/post.scm')
-rw-r--r--tekuti/post.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/tekuti/post.scm b/tekuti/post.scm
index e042a9d..75218ed 100644
--- a/tekuti/post.scm
+++ b/tekuti/post.scm
@@ -109,10 +109,9 @@
(raw (post-raw-content post)))
(catch #t
(lambda ()
- (with-backtrace
- (case format
- ((wordpress) (wordpress->sxml raw))
- (else `(pre ,raw)))))
+ (case format
+ ((wordpress) (wordpress->sxml raw))
+ (else `(pre ,raw))))
(lambda args
`(pre "Formatting error\n" ,raw)))))