summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-10-20 15:30:07 -0600
committerEric Schulte <schulte.eric@gmail.com>2011-10-20 15:30:07 -0600
commit94873e2767b649867f17b03fc2594332f6ce7c94 (patch)
tree3044f0f53c0cde6da439fc3cbb75aadbbac0c377
parent080e2decbc22ad872b02bd564a173051a65599ff (diff)
downloadorg-mode-94873e2767b649867f17b03fc2594332f6ce7c94.tar.gz
Update documentation to reflect removal of #+PROPERTIES
* doc/org.texi (Buffer-wide header arguments): Update documentation to reflect removal of #+PROPERTIES.
-rw-r--r--doc/org.texi11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/org.texi b/doc/org.texi
index 2b2a637..071c45b 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -12040,11 +12040,9 @@ language-specific documentation available online at
@node Buffer-wide header arguments, Header arguments in Org-mode properties, Language-specific header arguments, Using header arguments
@subsubheading Buffer-wide header arguments
-Buffer-wide header arguments may be specified through the use of a
-@code{#+PROPERTIES:}
-line placed anywhere in an Org-mode file. The line consists of the
-@code{#+PROPERTIES:} keyword followed by a series of header arguments which may be
-specified using the standard header argument syntax.
+Buffer-wide header arguments may be specified as properties through the use
+of @code{#+PROPERTY:} lines placed anywhere in an Org-mode file (see
+@ref{Property syntax}).
For example the following would set @code{session} to @code{*R*}, and
@code{results} to @code{silent} for every code block in the buffer, ensuring
@@ -12052,7 +12050,8 @@ that all execution took place in the same session, and no results would be
inserted into the buffer.
@example
-#+PROPERTIES: :session *R* :results silent
+#+PROPERTY: session *R*
+#+PROPERTY: results silent
@end example
@node Header arguments in Org-mode properties, Code block specific header arguments, Buffer-wide header arguments, Using header arguments