search for: rdtitl

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

Did you mean: rdtitle
2007 Sep 17
0
*.Rd file: space after topic in "\alias{topic }" should be (PR#9915)
...\alias{test4} > then help(test1) and help(test4) work, but not > help(test1) or help(test3). > > A possible fix is > --- share/perl/R/Rdlists.pm (revision 42846) > +++ share/perl/R/Rdlists.pm (working copy) > @@ -329,7 +329,7 @@ > $main::title2file{$rdtitle} = $manfilebase; > } > > - while($text =~ s/\\alias\{\s*(.*)\s*\}//){ > + while($text =~ s/\\alias\{\s*([^\s]*)\s*\}//){ > $alias = $1; > $alias =~ s/\\%/%/g; > if ($internal){ It looks like inter...
2007 Sep 18
0
(PR#9915) *.Rd file: space after topic in "\alias{topic }"
...lp(test1) and help(test4) work, but not >> help(test1) or help(test3). >> >> A possible fix is >> --- share/perl/R/Rdlists.pm (revision 42846) >> +++ share/perl/R/Rdlists.pm (working copy) >> @@ -329,7 +329,7 @@ >> $main::title2file{$rdtitle} = $manfilebase; >> } >> >> - while($text =~ s/\\alias\{\s*(.*)\s*\}//){ >> + while($text =~ s/\\alias\{\s*([^\s]*)\s*\}//){ >> $alias = $1; >> $alias =~ s/\\%/%/g; >> if ($int...