This file is indexed.

/usr/share/puredata/doc/5.reference/declare-help.pd is in puredata-core 0.48.1-3.

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
#N canvas 85 244 580 626 12;
#X declare;
#X obj 48 10 declare;
#X text 120 11 - set environment for loading patch;
#X text 44 40 A declare object adds one or more directories to the
search path \, and/or pre-loads one or more libraries ("extensions")
to Pd in preparation for opening the patch from a file. Usage is "declare
[-flag value] [-flag value] ..." where the flag can be:;
#X text 31 182 -lib;
#X text 31 198 -stdlib;
#X text 31 146 -path;
#X text 31 162 -stdpath;
#X text 129 146 add to search path \, relative to the patch;
#X text 129 182 load a library \, relative to the patch;
#X text 129 199 load a library \, relative to Pd;
#X text 40 231 (for any of these you may use a full pathname such as
"/tmp/dir" or \, in Windows \, "C:/garbage" instead of a relative path).
;
#X text 129 163 add to search path \, relative to Pd;
#X text 43 473 BUG: The name "-stdpath" is confusing \, as it has a
quite different effect from "-stdpath" on the pd command line.;
#X text 39 293 For instance \, if you put abstractions and/or other
supporting files in a subdirectory "more" \, you can put an object
\, "declare -path more" to make sure Pd sees them when the patch is
loaded. Or \, if you have files installed in the directory extra/stillmore
(in the Pd installation) you can get it using "declare -stdpath stillmore".
;
#X text 340 546 updated for Pd version 0.47;
#X text 41 395 WARNING: as of version 0.47 \, "declare -path" and "declare
-stdpath" inside abstractions take effect only within those abstractions.
If Pd's compatibility version is set to 0.46 or earlier the old (buggy)
behavior takes effect.;