Skip to content

Commit 6949c34

Browse files
committed
Fix pdf textbox overflow
1 parent 1c8a194 commit 6949c34

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: vignettes/rmd/Rcpp-attributes.Rmd

+2-1
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,8 @@ In this case, a call to `my_package_init()` will be added to the end of the auto
684684
```{Rcpp, eval = FALSE}
685685
void my_package_init(DllInfo *dll);
686686
RcppExport void R_init_pkgname(DllInfo *dll) {
687-
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
687+
R_registerRoutines(dll, NULL, CallEntries,
688+
NULL, NULL);
688689
R_useDynamicSymbols(dll, FALSE);
689690
my_package_init(dll);
690691
}

0 commit comments

Comments
 (0)