Overview
Comment: | captured comments in modules.scm |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v2.01-local-mtfiles | v2.01-try-1 |
Files: | files | file ages | folders |
SHA1: |
e428cef775534b468c0a26f575a0bcd1 |
User & Date: | bjbarcla on 2019-01-03 12:42:37 |
Other Links: | branch diff | manifest | tags |
Context
2019-01-03
| ||
18:17 | undid ugly (define debug:print debug:dprint) check-in: 7616160fe5 user: bjbarcla tags: v2.01-local-mtfiles, v2.01-try-1 | |
12:42 | captured comments in modules.scm check-in: e428cef775 user: bjbarcla tags: v2.01-local-mtfiles, v2.01-try-1 | |
2018-12-27
| ||
13:50 | moved modules dependencies into modules.scm which is included by common_records.scm; removed converted modules (mtconfigf, margs, mtdebug) from individual scm files check-in: 95af9088f1 user: bjbarcla tags: v2.01-local-mtfiles, v2.01-try-1 | |
Changes
Modified modules.scm from [2e7738388c] to [a769f56f5f].
︙ | ︙ | |||
16 17 18 19 20 21 22 | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (use (prefix mtargs args:)) (use (prefix mtdebug debug:)) (use (prefix mtconfigf configf:)) | | | | 16 17 18 19 20 21 22 23 24 | ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (use (prefix mtargs args:)) (use (prefix mtdebug debug:)) (use (prefix mtconfigf configf:)) (define debug:print debug:dprint) ;; cannot name it print in mtdebug module (define args:any? args:any-defined?) ;; canot name it any? in mtargs module |