swedebu...@riseup.net skribis: > During compilation after applying my patch above I get this error. > > GUILEC guix/build-system/python.go > ice-9/boot-9.scm:106:20: In procedure #<procedure 8bbb4e0 at > ice-9/boot-9.scm:97:6 (thrown-k . args)>: > ice-9/boot-9.scm:106:20: In procedure scm_i_lreadparen: > guix/build-system/python.scm:216:1: end of file
This (admittedly suboptimal) error suggests that Guile was looking for a closing parenthesis that never came. Presumably the patch adds an opening parenthesis but forgets to close it. Editors such as Emacs and Vim have support to highlight parentheses or even enter them automatically; I suggest using that to simplify work with Scheme code. For Emacs, see <https://www.gnu.org/software/guix/manual/html_node/The-Perfect-Setup.html>. Thanks, Ludo’.