Last fixes before release.

This commit is contained in:
Carsten Dominik 2008-03-10 19:32:16 +01:00
parent 578865ebdc
commit 292baddb44
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-03-10 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-ctrl-c-star): Implement a missing branch in the
decision tree.
2008-03-10 Bastien Guerry <bzg@altern.org>
* org-publish.el (org-publish-file): Send an error when file is

11
org.el
View File

@ -27739,8 +27739,15 @@ line into a subheading."
(min (1+ (point-at-eol)) (point-max))))
((org-at-item-p)
;; Convert to heading
;; FIXME: not yet implemented
)
(let ((level (save-match-data
(save-excursion
(condition-case nil
(progn
(org-back-to-heading t)
(funcall outline-level))
(error 0))))))
(replace-match
(concat (make-string (org-get-valid-level level 1) ?*) " ") t t)))
(t (org-toggle-region-headings (point-at-bol)
(min (1+ (point-at-eol)) (point-max))))))