aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBastien Guerry2013-01-08 16:31:30 +0100
committerBastien Guerry2013-01-08 16:31:30 +0100
commit6d3e4c8092e5c5067bb80c194fdafe2d537ffbeb (patch)
treef9115fbdc6e42a73b57e20a27334057b80275814 /doc
parentc7cf0ebc24d66371c8d48ad72f65e72a2a027f06 (diff)
downloademacs-6d3e4c8092e5c5067bb80c194fdafe2d537ffbeb.tar.gz
emacs-6d3e4c8092e5c5067bb80c194fdafe2d537ffbeb.zip
Merge Org (commit c8c217). Fix mistake about updating the wrong ChangeLog.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/ChangeLog3
-rw-r--r--doc/misc/org.texi26
2 files changed, 24 insertions, 5 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 08e8cc3614a..8d88336183d 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -9,6 +9,9 @@
9 (Advanced features): Add missing argument for @item. 9 (Advanced features): Add missing argument for @item.
10 (Storing searches): Add index entries and a note about 10 (Storing searches): Add index entries and a note about
11 *-tree agenda views. 11 *-tree agenda views.
12 (Structure editing): Document `org-mark-element' and
13 `org-mark-subtree'.
14 (Tag inheritance): Document `org-agenda-use-tag-inheritance'.
12 15
132013-01-06 Andreas Schwab <schwab@linux-m68k.org> 162013-01-06 Andreas Schwab <schwab@linux-m68k.org>
14 17
diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index 3540ac8592a..39577a33131 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -2,7 +2,8 @@
2@c %**start of header 2@c %**start of header
3@setfilename ../../info/org 3@setfilename ../../info/org
4@settitle The Org Manual 4@settitle The Org Manual
5@set VERSION 7.9.3 (GNU Emacs 24.3) 5
6@include org-version.inc
6 7
7@c Use proper quote and backtick for code sections in PDF output 8@c Use proper quote and backtick for code sections in PDF output
8@c Cf. Texinfo manual 14.2 9@c Cf. Texinfo manual 14.2
@@ -262,7 +263,7 @@
262@copying 263@copying
263This manual is for Org version @value{VERSION}. 264This manual is for Org version @value{VERSION}.
264 265
265Copyright @copyright{} 2004--2013 Free Software Foundation, Inc. 266Copyright @copyright{} 2004--2012 Free Software Foundation, Inc.
266 267
267@quotation 268@quotation
268Permission is granted to copy, distribute and/or modify this document 269Permission is granted to copy, distribute and/or modify this document
@@ -1470,6 +1471,13 @@ Move subtree up (swap with previous subtree of same
1470level). 1471level).
1471@orgcmd{M-S-@key{down},org-move-subtree-down} 1472@orgcmd{M-S-@key{down},org-move-subtree-down}
1472Move subtree down (swap with next subtree of same level). 1473Move subtree down (swap with next subtree of same level).
1474@orgcmd{M-h,org-mark-element}
1475Mark the element at point. Hitting repeatedly will mark subsequent elements
1476of the one just marked. E.g. hitting @key{M-h} on a paragraph will mark it,
1477hitting @key{M-h} immediately again will mark the next one.
1478@orgcmd{C-c @@,org-mark-subtree}
1479Mark the subtree at point. Hitting repeatedly will mark subsequent subtrees
1480of the same level than the marked subtree.
1473@orgcmd{C-c C-x C-w,org-cut-subtree} 1481@orgcmd{C-c C-x C-w,org-cut-subtree}
1474Kill subtree, i.e., remove it from buffer but save in kill ring. 1482Kill subtree, i.e., remove it from buffer but save in kill ring.
1475With a numeric prefix argument N, kill N sequential subtrees. 1483With a numeric prefix argument N, kill N sequential subtrees.
@@ -4624,9 +4632,8 @@ changes in the line.}:
4624@noindent 4632@noindent
4625@vindex org-use-tag-inheritance 4633@vindex org-use-tag-inheritance
4626@vindex org-tags-exclude-from-inheritance 4634@vindex org-tags-exclude-from-inheritance
4627To limit tag inheritance to specific tags, or to turn it off entirely, use 4635To limit tag inheritance to specific tags, use @code{org-tags-exclude-from-inheritance}.
4628the variables @code{org-use-tag-inheritance} and 4636To turn it off entirely, use @code{org-use-tag-inheritance}.
4629@code{org-tags-exclude-from-inheritance}.
4630 4637
4631@vindex org-tags-match-list-sublevels 4638@vindex org-tags-match-list-sublevels
4632When a headline matches during a tags search while tag inheritance is turned 4639When a headline matches during a tags search while tag inheritance is turned
@@ -4637,6 +4644,15 @@ of matches may then become very long. If you only want to see the first tags
4637match in a subtree, configure the variable 4644match in a subtree, configure the variable
4638@code{org-tags-match-list-sublevels} (not recommended). 4645@code{org-tags-match-list-sublevels} (not recommended).
4639 4646
4647@vindex org-agenda-use-tag-inheritance
4648Tag inheritance is relevant when the agenda search tries to match a tag,
4649either in the @code{tags} or @code{tags-todo} agenda types. In other agenda
4650types, @code{org-use-tag-inheritance} has no effect. Still, you may want to
4651have your tags correctly set in the agenda, so that tag filtering works fine,
4652with inherited tags. Set @code{org-agenda-use-tag-inheritance} to control
4653this: the default value includes all agenda types, but setting this to nil
4654can really speed up agenda generation.
4655
4640@node Setting tags, Tag searches, Tag inheritance, Tags 4656@node Setting tags, Tag searches, Tag inheritance, Tags
4641@section Setting tags 4657@section Setting tags
4642@cindex setting tags 4658@cindex setting tags