chiark / gitweb /
Internationalized documentation had the wrong sectional capitalization
[developers-reference.git] / common.ent
index a5214504a484ced5cdfa1658885172837dbfe78b..1380d83a49302eaedd9c7926669f622544e83784 100644 (file)
 <!entity file-bts-docs "<file>/usr/share/doc/debian/bug-*</file>">
 <!entity file-python-policy "<file>/usr/share/doc/python/python-policy.txt.gz</file>">
 <!entity file-ocaml-policy "<file>/usr/share/doc/ocaml/ocaml_packaging_policy.gz</file>">
+<!entity file-lisp-controller "<file>/usr/share/doc/common-lisp-controller/README.packaging</file>">
 <!entity file-debian-private-archive "~debian/archive/debian-private/">
 <!entity file-bpp-autotools "<file>/usr/share/doc/autotools-dev/README.Debian.gz</file>">
 
@@ -239,3 +240,16 @@ pool/non-free/n/
 pool/non-free/n/netscape/
      ...
 </example>">
+
+<!entity example-pathfind '<example>pathfind() {
+    OLDIFS="$IFS"
+    IFS=:
+    for p in $PATH; do
+        if [ -x "$p/$*" ]; then
+            IFS="$OLDIFS"
+            return 0
+        fi
+    done
+    IFS="$OLDIFS"
+    return 1
+}</example>'>