[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Fix 380: Try to auto-detect cyclic references in header fields (issu
From: |
joeneeman |
Subject: |
Re: Fix 380: Try to auto-detect cyclic references in header fields (issue 4951073) |
Date: |
Tue, 13 Sep 2011 19:46:52 +0000 |
http://codereview.appspot.com/4951073/diff/3001/scm/define-markup-commands.scm
File scm/define-markup-commands.scm (right):
http://codereview.appspot.com/4951073/diff/3001/scm/define-markup-commands.scm#newcode1897
scm/define-markup-commands.scm:1897: (interpret-markup layout (cons
(list (list symbol `(,property-recursive-markup symbol))) props) m)
props is an alist, right? In that case, I think you want
(interpret-markup layout (cons (cons symbol `(,...)) props) m)
http://codereview.appspot.com/4951073/