[Rcpp-commits] r2728 - in pkg/Rcpp: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Dec 6 03:27:37 CET 2010


Author: edd
Date: 2010-12-06 03:27:37 +0100 (Mon, 06 Dec 2010)
New Revision: 2728

Modified:
   pkg/Rcpp/ChangeLog
   pkg/Rcpp/R/bib.R
Log:
correct Rcpp:::bib() so that actually works -- which usually help :)


Modified: pkg/Rcpp/ChangeLog
===================================================================
--- pkg/Rcpp/ChangeLog	2010-12-06 01:32:30 UTC (rev 2727)
+++ pkg/Rcpp/ChangeLog	2010-12-06 02:27:37 UTC (rev 2728)
@@ -18,6 +18,8 @@
 	* inst/unitTests/runit.Date.R (test.Date.getFunctions): Added unit
 	tests for the get* functions of the Date class
 
+	* R/bib.R (bib): Correct expression for default Rcpp bibtex file
+
 2010-12-04  Dirk Eddelbuettel  <edd at debian.org>
 
 	* inst/include/Rcpp/Date.h: Remove addition of 1900 in getYear()

Modified: pkg/Rcpp/R/bib.R
===================================================================
--- pkg/Rcpp/R/bib.R	2010-12-06 01:32:30 UTC (rev 2727)
+++ pkg/Rcpp/R/bib.R	2010-12-06 02:27:37 UTC (rev 2728)
@@ -15,6 +15,6 @@
 # You should have received a copy of the GNU General Public License
 # along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-bib <- function(){
-    system.file( "doc", "Rcpp", package = "Rcpp" )
+bib <- function() {
+    system.file( "doc", "Rcpp.bib", package = "Rcpp" )
 }



More information about the Rcpp-commits mailing list