summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/guile/skribilo/package/eq/lout.scm18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/guile/skribilo/package/eq/lout.scm b/src/guile/skribilo/package/eq/lout.scm
index e08e6d1..21e8f92 100644
--- a/src/guile/skribilo/package/eq/lout.scm
+++ b/src/guile/skribilo/package/eq/lout.scm
@@ -167,21 +167,19 @@
                            (lambda (n e)
                              ;; Obey either the per-node `:mul-style' or the
                              ;; top-level one.
-                             (or (markup-option n :mul-style)
-                                 (let* ((eq (ast-parent n))
-                                        (mul-style
-                                         (markup-option eq :mul-style)))
-                                   (mul-style->lout mul-style)))))
+                             (mul-style->lout
+                              (or (markup-option n :mul-style)
+                                  (let ((eq (ast-parent n)))
+                                    (markup-option eq :mul-style))))))
 
 (simple-lout-markup-writer /
                            (lambda (n e)
                              ;; Obey either the per-node `:div-style' or the
                              ;; top-level one.
-                             (or (markup-option n :div-style)
-                                 (let* ((eq (ast-parent n))
-                                        (div-style
-                                         (markup-option eq :div-style)))
-                                   (div-style->lout div-style))))
+                             (div-style->lout
+                              (or (markup-option n :div-style)
+                                  (let ((eq (ast-parent n)))
+                                    (markup-option eq :div-style)))))
                            #f)
 (simple-lout-markup-writer =)
 (simple-lout-markup-writer <)