This file is indexed.

/usr/share/common-lisp/source/mcclim/Apps/Scigraph/scigraph/load-scigraph.lisp is in cl-mcclim 0.9.6.dfsg.cvs20100315-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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;; -*- Syntax: Common-lisp; Package: User -*-

(in-package #-ansi-cl :user #+ansi-cl :common-lisp-user)

#|
Copyright (c) 1987-1993 by BBN Systems and Technologies,
A Division of Bolt, Beranek and Newman Inc.
All rights reserved.

Permission to use, copy, modify and distribute this software and its
documentation is hereby granted without fee, provided that the above
copyright notice of BBN Systems and Technologies, this paragraph and the
one following appear in all copies and in supporting documentation, and
that the name Bolt Beranek and Newman Inc. not be used in advertising or
publicity pertaining to distribution of the software without specific,
written prior permission. Any distribution of this software or derivative
works must comply with all applicable United States export control laws.

BBN makes no representation about the suitability of this software for any
purposes.  It is provided "AS IS", without express or implied warranties
including (but not limited to) all implied warranties of merchantability
and fitness for a particular purpose, and notwithstanding any other
provision contained herein.  In no event shall BBN be liable for any
special, indirect or consequential damages whatsoever resulting from loss
of use, data or profits, whether in an action of contract, negligence or
other tortuous action, arising out of or in connection with the use or
performance of this software, even if BBN Systems and Technologies is
advised of the possiblity of such damages.
|#

(eval-when (load eval)
  (unless (fboundp 'compile-and-load-file)
    (error "You must load dwim before loading scigraph."))
  (map nil #'compile-and-load-file
       '("package" 
	 "copy" 
	 "dump" 
	 "duplicate" 
	 "random" 
	 "menu-tools" 
	 "basic-classes" 
	 "draw" 
	 "mouse" 
	 "color" 
	 "basic-graph" 
	 "graph-mixins" 
	 "axis" 
	 "moving-object" 
	 "symbol" 
	 "graph-data" 
	 "legend" 
	 "graph-classes" 
	 "present" 
	 "annotations" 
	 "annotated-graph" 
	 "contour" 
	 "equation" 
	 "popup-accept" 
	 "popup-accept-methods" 
	 "duplicate-methods" 
	 "frame" 
	 "export" 
	 "demo-frame")))