blob: b2623ab5fa949605b26442249c206362fe72b6dd [file] [log] [blame]
#!/bin/sh
# Prints a list of the functions that are not yet documented.
../../src/lisp/lisp all-functions.lisp | while read -r fun
do
if grep "$fun" lisp_reference.tex > /dev/null; then
# nothing
true
else
echo "$fun"
fi
done