瀏覽代碼

org-element: Remove wrong code comment

* lisp/org-element.el (org-element--parse-objects): Remove wrong code
  comment.  The function doesn't untabify since 44cb8b1.
Nicolas Goaziou 8 年之前
父節點
當前提交
c51d6ca4ab
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lisp/org-element.el

+ 2 - 2
lisp/org-element.el

@@ -4467,7 +4467,7 @@ the list of objects itself."
       (let (next-object contents)
 	(while (and (not (eobp))
 		    (setq next-object (org-element--object-lex restriction)))
-	  ;; Text before any object.  Untabify it.
+	  ;; Text before any object.
 	  (let ((obj-beg (org-element-property :begin next-object)))
 	    (unless (= (point) obj-beg)
 	      (let ((text (buffer-substring-no-properties (point) obj-beg)))
@@ -4487,7 +4487,7 @@ the list of objects itself."
 		    next-object)
 		  contents)
 	    (goto-char obj-end)))
-	;; Text after last object.  Untabify it.
+	;; Text after last object.
 	(unless (eobp)
 	  (let ((text (buffer-substring-no-properties (point) end)))
 	    (push (if acc (org-element-put-property text :parent acc) text)