浏览代码

org.el (org-add-planning-info): Remove spurious blank line

* org.el (org-add-planning-info): Remove spurious blank line
left after "unclosing" an entry.
Bastien Guerry 10 年之前
父节点
当前提交
92e823c43d
共有 1 个文件被更改,包括 8 次插入3 次删除
  1. 8 3
      lisp/org.el

+ 8 - 3
lisp/org.el

@@ -13532,9 +13532,14 @@ WHAT entry will also be removed."
 			   (otherwise (error "Invalid planning type: %s" type)))
 			 (line-end-position) t))
 		  (replace-match "")
-		  (when (looking-at "--+<[^>]+>") (replace-match ""))))
-	      ;; Remove leading white spaces.
-	      (when (looking-at "[ \t]+") (replace-match "")))
+		  (when (looking-at "--+<[^>]+>") (replace-match ""))
+		  (when (and (not what) (eq type 'closed))
+		    (save-excursion
+		      (beginning-of-line)
+		      (if (looking-at "[ \t]*$")
+			  (delete-region (point) (1+ (point-at-eol)))))))
+		;; Remove leading white spaces.
+		(when (and (not (bolp)) (looking-at "[ \t]+")) (replace-match ""))))
 	     ((not what) (throw 'exit nil)) ; Nothing to do.
 	     (t (insert-before-markers "\n")
 		(backward-char 1)