Skip to content

Commit 9f29fd2

Browse files
authored
Merge pull request #1196 from billdenney/textbox-overflow
Fix pdf textbox overflow (fixes #1195)
2 parents 1c8a194 + 6949c34 commit 9f29fd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vignettes/rmd/Rcpp-attributes.Rmd

Lines changed: 2 additions & 1 deletion
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)