lisp/org.el (org-indent-line): Add missing arg to `looking-back'
* lisp/org.el (org-indent-line): Add missing arg to `looking-back'.
This commit is contained in:
parent
eecc0574d8
commit
b718b7035d
|
@ -18994,7 +18994,7 @@ Also align node properties according to `org-property-format'."
|
|||
(beginning-of-line 1)
|
||||
(skip-chars-backward "\n")
|
||||
(or (org-at-heading-p)
|
||||
(looking-back ":END:.*")
|
||||
(looking-back ":END:.*" (point-at-bol))
|
||||
(org-at-planning-p)))))
|
||||
(let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
|
||||
(type (org-element-type element)))
|
||||
|
|
Loading…
Reference in New Issue