0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-20 17:56:30 +00:00

Fix bug with org-startup-indented when creating a clock report

This commit is contained in:
Carsten Dominik 2010-01-09 15:36:17 +01:00
parent 588a42d4fd
commit b926869f0d
2 changed files with 6 additions and 1 deletions

View file

@ -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> 2010-01-08 Carsten Dominik <carsten.dominik@gmail.com>
* org-exp.el (org-html-entities): Add checkmark symbol. * org-exp.el (org-html-entities): Add checkmark symbol.

View file

@ -227,7 +227,7 @@ Assumes that BEG is at the beginning of a line."
b e (list 'line-prefix (aref org-indent-strings n) b e (list 'line-prefix (aref org-indent-strings n)
'wrap-prefix (aref org-indent-strings n)))) 'wrap-prefix (aref org-indent-strings n))))
(setq b (1+ (point-at-eol)) (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 () (defun org-indent-refresh-section ()
"Refresh indentation properties in the current outline section. "Refresh indentation properties in the current outline section.