summaryrefslogtreecommitdiff
path: root/lisp/org/org-colview.el
diff options
context:
space:
mode:
authorCarsten Dominik <dominik@science.uva.nl>2009-11-15 07:11:04 +0000
committerCarsten Dominik <dominik@science.uva.nl>2009-11-15 07:11:04 +0000
commit1bcdebed5c99a35e1745a2980dd378033def6a8c (patch)
tree50cb9003d71d2bbc361825e1d0934ba55df1603b /lisp/org/org-colview.el
parent589888fe21ff05f4dfd5e4de576dfc833f0d01dc (diff)
downloademacs-1bcdebed5c99a35e1745a2980dd378033def6a8c.tar.gz
2009-11-15 Carsten Dominik <carsten.dominik@gmail.com>
* org-latex.el (org-export-as-latex): Add the :drawers property. 2009-11-15 Carsten Dominik <carsten.dominik@gmail.com> * org.el (org-speed-commands-user): Allow documentation headlines. (org-speed-commands-default): Organize the value of this constant with descriptive headlines. (org-print-speed-command): Output the headlines. 2009-11-15 Carsten Dominik <carsten.dominik@gmail.com> * org-agenda.el (org-agenda-show-outline-path): New option. (org-agenda-do-context-action): New function. (org-agenda-next-line, org-agenda-previous-line): Use `org-agenda-do-context-action'. * org.el (org-use-speed-commands): Allow function value. (org-speed-commands-default): Make headline motion safe, so that these commands always end on a headline. (org-speed-commands-default): New key `v' for `org-agenda'. (org-speed-move-safe): New function. (org-self-insert-command): Use the function value of `org-use-speed-commands'. (org-get-outline-path): Improve docstring. (org-format-outline-path): New function. (org-display-outline-path): New function. 2009-11-15 John Wiegley <jwiegley@gmail.com> * org-clock.el (org-clock-resolve): If `org-clock-into-string' is a string, use that to find the LOGBOOK drawer.
Diffstat (limited to 'lisp/org/org-colview.el')
-rw-r--r--lisp/org/org-colview.el16
1 files changed, 6 insertions, 10 deletions
diff --git a/lisp/org/org-colview.el b/lisp/org/org-colview.el
index dfe006b805c..8f0ea9054aa 100644
--- a/lisp/org/org-colview.el
+++ b/lisp/org/org-colview.el
@@ -6,7 +6,7 @@
;; Author: Carsten Dominik <carsten at orgmode dot org>
;; Keywords: outlines, hypermedia, calendar, wp
;; Homepage: http://orgmode.org
-;; Version: 6.33
+;; Version: 6.33c
;;
;; This file is part of GNU Emacs.
;;
@@ -34,7 +34,7 @@
(require 'org)
(declare-function org-agenda-redo "org-agenda" ())
-(declare-function org-agenda-show "org-agenda" (&optional full-entry))
+(declare-function org-agenda-do-context-action "org-agenda" ())
;;; Column View
@@ -93,10 +93,8 @@ This is the compiled version of the format.")
(while (and (org-invisible-p2) (not (eobp)))
(beginning-of-line 2))
(move-to-column col)
- (if (and (eq major-mode 'org-agenda-mode)
- (org-bound-and-true-p org-agenda-follow-mode)
- (org-get-at-bol 'org-marker))
- (org-agenda-show)))))
+ (if (eq major-mode 'org-agenda-mode)
+ (org-agenda-do-context-action)))))
(org-defkey org-columns-map [up]
(lambda () (interactive)
(let ((col (current-column)))
@@ -104,10 +102,8 @@ This is the compiled version of the format.")
(while (and (org-invisible-p2) (not (bobp)))
(beginning-of-line 0))
(move-to-column col)
- (if (and (eq major-mode 'org-agenda-mode)
- (org-bound-and-true-p org-agenda-follow-mode)
- (org-get-at-bol 'org-marker))
- (org-agenda-show)))))
+ (if (eq major-mode 'org-agenda-mode)
+ (org-agenda-do-context-action)))))
(org-defkey org-columns-map [(shift right)] 'org-columns-next-allowed-value)
(org-defkey org-columns-map "n" 'org-columns-next-allowed-value)
(org-defkey org-columns-map [(shift left)] 'org-columns-previous-allowed-value)