[Rprotobuf-commits] r566 - in pkg: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Dec 18 08:02:52 CET 2013


Author: murray
Date: 2013-12-18 08:02:51 +0100 (Wed, 18 Dec 2013)
New Revision: 566

Modified:
   pkg/ChangeLog
   pkg/R/completion.R
Log:
Add missing 'fetch(' method to Dollar completion list for Messages.



Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog	2013-12-18 06:30:45 UTC (rev 565)
+++ pkg/ChangeLog	2013-12-18 07:02:51 UTC (rev 566)
@@ -1,3 +1,10 @@
+2013-12-17  Murray Stokely  <murray at FreeBSD.org>
+
+	* R/completion.R (.DollarNames.Message): Add missing "fetch(" to
+	  dollar completion list for Message objects.
+	* vignettes/RProtoBuf/RProtoBuf.Rnw (subsection{messages}): Minor
+	  improvements, add a missing methods to Table 2.
+
 2013-12-16  Dirk Eddelbuettel  <edd at debian.org>
 
 	* src/rprotobuf.h (RCPP_ENUM_TRAITS): Don't use extern "C" on

Modified: pkg/R/completion.R
===================================================================
--- pkg/R/completion.R	2013-12-18 06:30:45 UTC (rev 565)
+++ pkg/R/completion.R	2013-12-18 07:02:51 UTC (rev 566)
@@ -17,7 +17,7 @@
 	names <- c( 
 		.Call( "Message__fieldNames", x at pointer, PACKAGE = "RProtoBuf" ) ,
 		"has(", "clone()", "clone(", "isInitialized()", "serialize(", 
-		"clear()", "clear(", "size(", "bytesize()", 
+		"clear()", "clear(", "size(", "bytesize()", "fetch(",
 		"swap(", "str()", "as.character()", "update(", "as.list()", 
                 "setExtension(", "getExtension(",
                 "descriptor()", "set(", "toString(", "add(", "fileDescriptor()" )



More information about the Rprotobuf-commits mailing list