[Roxygen-commits] r186 - in pkg: . R man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Aug 25 15:19:30 CEST 2008


Author: pcd
Date: 2008-08-25 15:19:29 +0200 (Mon, 25 Aug 2008)
New Revision: 186

Modified:
   pkg/DESCRIPTION
   pkg/R/parse.R
   pkg/R/roxygen.R
   pkg/man/roxygen-package.Rd
Log:
no redundant name in title; warn immediately in parser


Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION	2008-08-25 13:09:37 UTC (rev 185)
+++ pkg/DESCRIPTION	2008-08-25 13:19:29 UTC (rev 186)
@@ -3,7 +3,7 @@
 License: GPL (>= 2)
 Description: A Doxygen-like in-source documentation system for Rd,
     collation, namespace and callgraphs.
-Title: Roxygen: Literate Programming in R
+Title: Literate Programming in R
 Author: Peter Danenberg <pcd at roxygen.org>, Manuel Eugster
     <Manuel.Eugster at stat.uni-muenchen.de>
 Maintainer: Peter Danenberg <pcd at roxygen.org>

Modified: pkg/R/parse.R
===================================================================
--- pkg/R/parse.R	2008-08-25 13:09:37 UTC (rev 185)
+++ pkg/R/parse.R	2008-08-25 13:19:29 UTC (rev 186)
@@ -116,7 +116,7 @@
 #' @param message the apposite message
 #' @return \code{NULL}
 parse.warning <- function(key, message)
-  warning(parse.message(key, message))
+  warning(parse.message(key, message), immediate.=TRUE)
 
 #' Parse a raw string containing key and expressions.
 #' @param element the string containing key and expressions

Modified: pkg/R/roxygen.R
===================================================================
--- pkg/R/roxygen.R	2008-08-25 13:09:37 UTC (rev 185)
+++ pkg/R/roxygen.R	2008-08-25 13:19:29 UTC (rev 186)
@@ -33,7 +33,7 @@
 #' Maintainer: Peter Danenberg \email{pcd@@roxygen.org}
 #' @name roxygen-package
 #' @docType package
-#' @title Roxygen: Literate Programming in R
+#' @title Literate Programming in R
 #' @keywords package
 #' @examples
 #' ## To process a package in `pkg', run `R CMD roxygen pkg'; or:

Modified: pkg/man/roxygen-package.Rd
===================================================================
--- pkg/man/roxygen-package.Rd	2008-08-25 13:09:37 UTC (rev 185)
+++ pkg/man/roxygen-package.Rd	2008-08-25 13:19:29 UTC (rev 186)
@@ -1,6 +1,6 @@
 \name{roxygen-package}
 \alias{roxygen-package}
-\title{Roxygen: Literate Programming in R}
+\title{Literate Programming in R}
 \description{Roxygen is a Doxygen-like documentation system for R; allowing
 in-source specification of Rd files, collation and namespace
 directives.}



More information about the Roxygen-commits mailing list