From 9c7bad1fabbd0b95393370ba46d000350aea3aab Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Wed, 16 Jun 2010 21:34:30 -0700 Subject: [PATCH] babel-doc: adding buffer-wide header argument documentation --- doc/org.texi | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index e73e5190c..4604b5e4e 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -11291,13 +11291,24 @@ blocks. @node Language-specific header arguments, Buffer-wide header arguments, System-wide header arguments, Using header arguments @subsubheading Language-specific header arguments Each language can define its own set of default header arguments. See the -language-specific documentation available at -@uref{http://orgmode.org/worg/org-contrib/babel/reference.php#languages} -for information on language-specific header arguments. +language-specific documentation available online at +@uref{http://orgmode.org/worg/org-contrib/babel}. @node Buffer-wide header arguments, Header arguments in Org-mode properties, Language-specific header arguments, Using header arguments @subsubheading Buffer-wide header arguments -FIXME +Buffer-wide header arguments may be specified through the use of a special +line placed anywhere in an Org-mode file. The line consists of the +@code{#+BABEL:} 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 +@code{results} to @code{silent} for every code block in the buffer, ensuring +that all execution took place in the same session, and no results would be +inserted into the buffer. + +@example +#+BABEL: :session *R* :results silent +@end example @node Header arguments in Org-mode properties, Code block specific header arguments, Buffer-wide header arguments, Using header arguments @subsubheading Header arguments in Org-mode properties -- 2.11.4.GIT