Fixed missing \\ needed for padding of checklists.

This commit is contained in:
Luis Anaya 2012-08-02 21:53:20 -04:00
parent 91fb3ae412
commit 0601d117bb

View file

@ -1156,7 +1156,7 @@ contextual information."
(checkbox (case (org-element-property :checkbox item)
(on "\\o'\\(sq\\(mu'")
(off "\\(sq ")
(off "\\(sq")
(trans "\\o'\\(sq\\(mi'" )))
(tag (let ((tag (org-element-property :tag item)))
@ -1167,7 +1167,7 @@ contextual information."
(cond
((or checkbox tag)
(concat ".LI " "\"" (or tag (concat " " checkbox)) "\""
(concat ".LI ""\"" (or tag (concat "\\ " checkbox)) "\""
"\n"
(org-trim (or contents " " ) )) )
((eq type 'ordered)