This file is indexed.

/usr/share/common-lisp/source/pipes/package.lisp is in cl-pipes 1.2.1-5.

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
32
33
34
35
36
37
38
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          package.lisp
;;;; Purpose:       Package definition for pipes package
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Apr 2000
;;;;
;;;; $Id: package.lisp 8627 2004-02-06 14:19:48Z kevin $
;;;;
;;;; *************************************************************************

(in-package #:cl-user)

(defpackage #:pipes
  (:use #:common-lisp)
  (:export
   #:+empty-pipe+
   #:make-pipe
   #:pipe-tail
   #:pipe-head
   #:pipe-elt
   #:pipe-enumerate
   #:pipe-values
   #:pipe-force
   #:pipe-filter
   #:pipe-map
   #:pipe-map-filtering
   #:pipe-append
   #:pipe-mappend
   #:pipe-mappend-filtering
   ))


(defpackage #:pipes-user
  (:use #:common-lisp #:pipes)
  )