Browse Source

Fixed bug with pressing "e" in agenda column view.

Carsten Dominik 17 years ago
parent
commit
82e14ee963
3 changed files with 4 additions and 2 deletions
  1. 2 0
      lisp/ChangeLog
  2. 1 1
      lisp/org-colview-xemacs.el
  3. 1 1
      lisp/org-colview.el

+ 2 - 0
lisp/ChangeLog

@@ -5,6 +5,8 @@
 	(org-columns-cleanup-item): Call `org-columns-compact-links'.
 	(org-columns-display-here): Call `org-agenda-columns-cleanup-item'
 	when in agenda.
+	(org-columns-edit-value): Fixed bug with editing values from
+	agenda column view.
 
 2008-05-28  Carsten Dominik  <dominik@science.uva.nl>
 

+ 1 - 1
lisp/org-colview-xemacs.el

@@ -611,7 +611,7 @@ Where possible, use the standard interface for changing this line."
 
       (cond
        ((equal major-mode 'org-agenda-mode)
-	(org-columns-eval '(org-entry-put pom key nval))
+	(org-columns-eval eval)
 	;; The following let preserves the current format, and makes sure
 	;; that in only a single file things need to be upated.
 	(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)

+ 1 - 1
lisp/org-colview.el

@@ -414,7 +414,7 @@ Where possible, use the standard interface for changing this line."
 
       (cond
        ((equal major-mode 'org-agenda-mode)
-	(org-columns-eval '(org-entry-put pom key nval))
+	(org-columns-eval eval)
 	;; The following let preserves the current format, and makes sure
 	;; that in only a single file things need to be upated.
 	(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)