mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-24 07:20:29 +00:00
Fix bug with org-startup-indented when creating a clock report
This commit is contained in:
parent
588a42d4fd
commit
b926869f0d
@ -1,3 +1,8 @@
|
||||
2010-01-09 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-indent.el (org-indent-add-properties): Catch case when there
|
||||
is no headline in the buffer.
|
||||
|
||||
2010-01-08 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* org-exp.el (org-html-entities): Add checkmark symbol.
|
||||
|
@ -227,7 +227,7 @@ Assumes that BEG is at the beginning of a line."
|
||||
b e (list 'line-prefix (aref org-indent-strings n)
|
||||
'wrap-prefix (aref org-indent-strings n))))
|
||||
(setq b (1+ (point-at-eol))
|
||||
n (* level org-indent-indentation-per-level))))))))
|
||||
n (* (or level 0) org-indent-indentation-per-level))))))))
|
||||
|
||||
(defun org-indent-refresh-section ()
|
||||
"Refresh indentation properties in the current outline section.
|
||||
|
Loading…
Reference in New Issue
Block a user