This file is indexed.

/usr/lib/emacsen-common/packages/remove/flim is in flim 1:1.14.9+0.20110516-1.

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

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
#! /bin/sh
# /usr/lib/emacsen-common/packages/remove/flim
set -e

FLAVOR=$1
PACKAGE=flim

case $FLAVOR in
    emacs|emacs19|mule2)
    exit 0
    ;;
esac

ELCDIR=/usr/share/$FLAVOR/site-lisp/$PACKAGE

echo "remove/$PACKAGE: purging byte-compiled files for $FLAVOR"
rm -rf "$ELCDIR"
exit 0