Fixed bug with pressing "e" in agenda column view.
This commit is contained in:
parent
19f4b1815e
commit
82e14ee963
|
@ -5,6 +5,8 @@
|
||||||
(org-columns-cleanup-item): Call `org-columns-compact-links'.
|
(org-columns-cleanup-item): Call `org-columns-compact-links'.
|
||||||
(org-columns-display-here): Call `org-agenda-columns-cleanup-item'
|
(org-columns-display-here): Call `org-agenda-columns-cleanup-item'
|
||||||
when in agenda.
|
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>
|
2008-05-28 Carsten Dominik <dominik@science.uva.nl>
|
||||||
|
|
||||||
|
|
|
@ -611,7 +611,7 @@ Where possible, use the standard interface for changing this line."
|
||||||
|
|
||||||
(cond
|
(cond
|
||||||
((equal major-mode 'org-agenda-mode)
|
((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
|
;; The following let preserves the current format, and makes sure
|
||||||
;; that in only a single file things need to be upated.
|
;; that in only a single file things need to be upated.
|
||||||
(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
|
(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
|
||||||
|
|
|
@ -414,7 +414,7 @@ Where possible, use the standard interface for changing this line."
|
||||||
|
|
||||||
(cond
|
(cond
|
||||||
((equal major-mode 'org-agenda-mode)
|
((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
|
;; The following let preserves the current format, and makes sure
|
||||||
;; that in only a single file things need to be upated.
|
;; that in only a single file things need to be upated.
|
||||||
(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
|
(let* ((org-agenda-overriding-columns-format org-columns-current-fmt)
|
||||||
|
|
Loading…
Reference in New Issue