summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-11-03 23:26:23 +0100
committerCarsten Dominik <carsten.dominik@gmail.com>2010-11-03 23:26:23 +0100
commit106ad6e9e57660f53bde4ea6e4f3d2271a5527f6 (patch)
treec87e6d309847b7ec4dfc7691c6335126b5f7bb38
parent81eba8dccdbe9b3655caaff0e75e69137034c939 (diff)
downloadorg-mode-106ad6e9e57660f53bde4ea6e4f3d2271a5527f6.tar.gz
Fix sparse tree dispatch menu
* lisp/org.el (org-sparse-tree): Mention [r] in dispatch menu
-rw-r--r--lisp/org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index cb99712..f9d7046 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -11962,13 +11962,13 @@ T Show entries with a specific TODO keyword.
m Show entries selected by a tags/property match.
p Enter a property name and its value (both with completion on existing
names/values) and show entries with that property.
-/ Show entries matching a regular expression (`r' can be used as well)
+r Show entries matching a regular expression (`/' can be used as well)
d Show deadlines due within `org-deadline-warning-days'.
b Show deadlines and scheduled items before a date.
a Show deadlines and scheduled items after a date."
(interactive "P")
(let (ans kwd value)
- (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty [d]eadlines\n [b]efore-date [a]fter-date")
+ (message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date")
(setq ans (read-char-exclusive))
(cond
((equal ans ?d)