emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 3/3] ox-texinfo: Define definition commands using descript


From: Jonas Bernoulli
Subject: Re: [PATCH v3 3/3] ox-texinfo: Define definition commands using description lists
Date: Sun, 23 Jan 2022 02:14:34 +0100

Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:

>> +       (t
>> +    (org-element-set-contents
>> +     item (nconc
>> +           (mapcar (lambda (key) `(keyword (:key "KINDEX" :value ,key))) 
>> kindex)
>> +           (mapcar (lambda (cmd) `(keyword (:key "FINDEX" :value ,cmd))) 
>> findex)
>> +           (org-element-contents item))))))))
>
> Indentation seems a bit off, otherwise, LGTM.

Are you only referring to the spaces that should be replaced with a tab?
"item (nconc\n" is also a bit weird so I changed that to

        (org-element-set-contents
         item
         (nconc (mapcar (lambda (key) `(keyword (:key "KINDEX" :value ,key))) 
kindex)
                (mapcar (lambda (cmd) `(keyword (:key "FINDEX" :value ,cmd))) 
findex)
                (org-element-contents item))))))))

     Cheers,
     Jonas



reply via email to

[Prev in Thread] Current Thread [Next in Thread]