search for: documented_objects

Displaying 2 results from an estimated 2 matches for "documented_objects".

2007 Sep 17
0
*.Rd file: space after topic in "\alias{topic }" should be (PR#9915)
...($text =~ s/\\alias\{\s*(.*)\s*\}//){ > + while($text =~ s/\\alias\{\s*([^\s]*)\s*\}//){ > $alias = $1; > $alias =~ s/\\%/%/g; > if ($internal){ It looks like internal spaces are used in \alias entries, e.g., ./R.utils/man/Non-documented_objects.Rd:\alias{Non-documented objects} ./SparseM/man/character-null-class.Rd:\alias{character or NULL-class} I think the trailing spaces are intended to be ignored, so a better fix would be --- Rdlists.pm (revision 42846) +++ Rdlists.pm (working copy) @@ -332,6 +332,7 @@ while($text =~...
2007 Sep 18
0
(PR#9915) *.Rd file: space after topic in "\alias{topic }"
.../){ >> + while($text =~ s/\\alias\{\s*([^\s]*)\s*\}//){ >> $alias = $1; >> $alias =~ s/\\%/%/g; >> if ($internal){ > > It looks like internal spaces are used in \alias entries, > e.g., > ./R.utils/man/Non-documented_objects.Rd:\alias{Non-documented objects} > ./SparseM/man/character-null-class.Rd:\alias{character or NULL-class} > I think the trailing spaces are intended to be ignored, > so a better fix would be > > --- Rdlists.pm (revision 42846) > +++ Rdlists.pm (working copy) > @@ -332,6 +332...