This file is indexed.

/usr/lib/R/site-library/fastmatch/NEWS is in r-cran-fastmatch 1.0-4-1.

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
26
27
28
29
30
31
 NEWS for fastmatch
--------------------

0.1-4	2012-01-12
    o	some R functions (such as subset assignment like x[1] <- 2)
	can create a new object (with possibly modified content) and
	copy all attributes including the hash cache. If the original
	object was used as a table in fmatch(), the hash cache will be
	copied into the modified object and thus its cache will be
	possibly out of	sync with the object. fmatch() will now
	identify such cases and discard the hash to prevent errorneous
	results.

0.1-3	2011-12-21
    o	match() coerces POSIXlt objects into characters, but so far 
	fmatch() performed the match on the actual objects.
	Now fmatch() coerces POSIXlt object into characters just like
	match(), but note that you will lose the ability to perform
	fast lookups if the table is a POSIXlt object -- please use
	POSIXct objects (much more efficient) or use as.character() on
	the POSIXlt object to create a table that you want to re-use.

0.1-2	2011-09-14
    o	bugfix: nomatch was ignored in the fastmatch implementation
	(thanks to Enrico Schumann for reporting)

0.1-1	2010-12-23
    o	minor cleanups

0.1-0	2010-12-23
    o	initial release