Browse Source

Merge branch 'maint'

Nicolas Goaziou 11 years ago
parent
commit
0bab94dedf
2 changed files with 8 additions and 5 deletions
  1. 5 4
      lisp/org-element.el
  2. 3 1
      testing/lisp/test-org-element.el

+ 5 - 4
lisp/org-element.el

@@ -1142,10 +1142,11 @@ CONTENTS is the contents of the element."
        (off "[ ] ")
        (trans "[-] "))
      (and tag (format "%s :: " tag))
-     (let ((contents (replace-regexp-in-string
-		      "\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))
-       (if item-starts-with-par-p (org-trim contents)
-	 (concat "\n" contents))))))
+     (when contents
+       (let ((contents (replace-regexp-in-string
+			"\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))
+	 (if item-starts-with-par-p (org-trim contents)
+	   (concat "\n" contents)))))))
 
 
 ;;;; Plain List

+ 3 - 1
testing/lisp/test-org-element.el

@@ -2168,7 +2168,9 @@ Outside list"
      (equal (org-test-parse-and-interpret "-\n  | a | b |")
 	    "- \n  | a | b |\n"))
     ;; Special case: correctly handle "*" bullets.
-    (should (org-test-parse-and-interpret " * item"))))
+    (should (org-test-parse-and-interpret " * item"))
+    ;; Special case: correctly handle empty items.
+    (should (org-test-parse-and-interpret "-"))))
 
 (ert-deftest test-org-element/quote-block-interpreter ()
   "Test quote block interpreter."