Prepare for separate blame to print.

This commit is contained in:
Dominik Pantůček 2023-05-15 13:47:31 +02:00
parent 73c45ab9db
commit b343f4726e
2 changed files with 21 additions and 0 deletions

View file

@ -127,6 +127,8 @@
(-action- 'print-info))
(-print () "Print given member file"
(-action- 'print-member-file))
(-blame () "Print annotated member file"
(-action- 'blame-member-file))
(-fees () "Prints fees table"
(-needs-bank- #t)
(-action- 'fees))
@ -272,6 +274,12 @@
(print-member-source mr))
(else
(print "No member specified!"))))
((blame-member-file)
(cond (mr
(newline)
(print-member-blame mr))
(else
(print "No member specified!"))))
((print-idstats)
(newline)
(print-members-ids-stats MB)