diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 93f7473f8..0abdfad4a 100644 --- a/lisp/ChangeLog +++ b/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 diff --git a/lisp/org-colview-xemacs.el b/lisp/org-colview-xemacs.el index 51cb6921f..d38450a67 100644 --- a/lisp/org-colview-xemacs.el +++ b/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) diff --git a/lisp/org-colview.el b/lisp/org-colview.el index a8dc78212..9d9754fd8 100644 --- a/lisp/org-colview.el +++ b/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)