swissChili | 04d9416 | 2022-07-30 21:46:49 -0700 | [diff] [blame] | 1 | #!/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 | ||||
6 | do | ||||
7 | if grep "$fun" lisp_reference.tex > /dev/null; then | ||||
8 | # nothing | ||||
9 | true | ||||
10 | else | ||||
11 | echo "$fun" | ||||
12 | fi | ||||
13 | done |