Преглед изворни кода

ox-publish: Fix code typo

* lisp/ox-publish.el (org-publish-collect-index): Fix typo.
Nicolas Goaziou пре 13 година
родитељ
комит
38eca24f07
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      lisp/ox-publish.el

+ 1 - 1
lisp/ox-publish.el

@@ -932,7 +932,7 @@ its CDR is a string."
 		     ((not parent) nil)
 		     ((let ((id (org-element-property :ID parent)))
 			(and id (cons 'id id))))
-		     ((let ((id (org-element-property :CUSTOM-ID parent)))
+		     ((let ((id (org-element-property :CUSTOM_ID parent)))
 			(and id (cons 'custom-id id))))
 		     (t (cons 'name
 			      (org-element-property :raw-value parent))))))))