0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 18:16:27 +00:00

Update documentation to reflect removal of #+PROPERTIES

* doc/org.texi (Buffer-wide header arguments): Update documentation to
  reflect removal of #+PROPERTIES.
This commit is contained in:
Eric Schulte 2011-10-20 15:30:07 -06:00
parent 080e2decbc
commit 94873e2767

View file

@ -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 @node Buffer-wide header arguments, Header arguments in Org-mode properties, Language-specific header arguments, Using header arguments
@subsubheading Buffer-wide header arguments @subsubheading Buffer-wide header arguments
Buffer-wide header arguments may be specified through the use of a Buffer-wide header arguments may be specified as properties through the use
@code{#+PROPERTIES:} of @code{#+PROPERTY:} lines placed anywhere in an Org-mode file (see
line placed anywhere in an Org-mode file. The line consists of the @ref{Property syntax}).
@code{#+PROPERTIES:} keyword followed by a series of header arguments which may be
specified using the standard header argument syntax.
For example the following would set @code{session} to @code{*R*}, and 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 @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. inserted into the buffer.
@example @example
#+PROPERTIES: :session *R* :results silent #+PROPERTY: session *R*
#+PROPERTY: results silent
@end example @end example
@node Header arguments in Org-mode properties, Code block specific header arguments, Buffer-wide header arguments, Using header arguments @node Header arguments in Org-mode properties, Code block specific header arguments, Buffer-wide header arguments, Using header arguments