This file is indexed.

/usr/share/ess/etc/Rnw-ess-bugs.Rnw is in ess 17.11-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<<coxph>>=

## reported by Terry Therneau
coxph <- function(formula, data, weights, subset, na.action,
                  init, control, ties= c("efron", "breslow", "exact"),
                  singular.ok =TRUE, robust=FALSE,
                  model=FALSE, x=FALSE, y=TRUE,  tt, method=ties, ...) {

  ties <- match.arg(ties)
  Call <- match.call()

  ... (20 lines omitted)

  timetrans <- attr(Terms, "specials")$tt
  if (length(timetrans)) {
    <<coxph-transform>>
  }

  ## next lines should not be ofsetted
  <<coxph-setup>>
    <<coxph-penal>>
      <<coxph-compute>>
        <<coxph-finish>>
}
@