Browse Source

Agenda: Make inserting diary entries also at end of line

Carsten Dominik 15 years ago
parent
commit
8085c9030f
2 changed files with 10 additions and 5 deletions
  1. 3 0
      lisp/ChangeLog
  2. 7 5
      lisp/org-agenda.el

+ 3 - 0
lisp/ChangeLog

@@ -1,5 +1,8 @@
 2009-11-20  Carsten Dominik  <carsten.dominik@gmail.com>
 
+	* org-agenda.el (org-agenda-diary-entry-in-org-file): Get the text
+	property at the beginning of the line.
+
 	* org.el (org-make-link-string): Don't allow a description with
 	only white space.
 

+ 7 - 5
lisp/org-agenda.el

@@ -6661,15 +6661,17 @@ The cursor may be at a date in the calendar, or in the Org agenda."
 
 (defun org-agenda-diary-entry-in-org-file ()
   "Make a diary entry in the file `org-agenda-diary-file'."
-  (let (d1 d2 char (text ""))
+  (let (d1 d2 char (text "") dp)
     (if (equal (buffer-name) "*Calendar*")
 	(setq d1 (calendar-cursor-to-date t)
 	      d2 (car calendar-mark-ring))
       (setq d1 (calendar-gregorian-from-absolute
-		(get-text-property (point) 'day))
-	    d2 (and (mark) (get-text-property (mark) 'day)
-		    (calendar-gregorian-from-absolute
-		     (get-text-property (mark) 'day)))))
+		(get-text-property (point-at-bol) 'day))
+	    d2 (and (mark)
+		    (save-excursion
+		      (goto-char (mark))
+		      (setq dp (get-text-property (point-at-bol) 'day)))
+		    (calendar-gregorian-from-absolute dp))))
     (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
     (setq char (read-char-exclusive))
     (cond