Przeglądaj źródła

ox-publish: Fix code typo

* lisp/ox-publish.el (org-publish-collect-index): Fix typo.
Nicolas Goaziou 12 lat temu
rodzic
commit
38eca24f07
1 zmienionych plików z 1 dodań i 1 usunięć
  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))))))))