blob: b2623ab5fa949605b26442249c206362fe72b6dd [file] [log] [blame]
swissChili04d94162022-07-30 21:46:49 -07001#!/bin/sh
2
3# Prints a list of the functions that are not yet documented.
4
5../../src/lisp/lisp all-functions.lisp | while read -r fun
6do
7 if grep "$fun" lisp_reference.tex > /dev/null; then
8 # nothing
9 true
10 else
11 echo "$fun"
12 fi
13done