mescc: bump default maximum for M1-strings to 80.

* module/mes/M1.mes (object->M1): bump default maximum for M1-strings to 80.
This commit is contained in:
Jan Nieuwenhuizen 2017-08-26 13:40:30 +02:00
parent 913fd66e5b
commit 28f056fdde

View file

@ -144,7 +144,7 @@
(data (cdr o))
(data (filter-map labelize data))
(len (length data))
(string-max (or (and=> (getenv "M1_STRING_MAX") string->number) 0)))
(string-max (or (and=> (getenv "M1_STRING_MAX") string->number) 80)))
(format #t "\n:~a\n" label)
(cond ((and (< len string-max)
(char? (car data))