This file is indexed.

/usr/lib/emacsen-common/packages/remove/wl is in wl 2.14.0-12.

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

FLAVOR=$1
PACKAGE=wl
PKGSNAME=wl

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

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

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