Re: read syntax vectors immutable

2017-06-23 Thread j kalbhenn
thanks for the clarification (also to others who responded), very insightful.

read syntax vectors immutable

2017-06-22 Thread j kalbhenn
vectors created using read syntax are apparently immutable with guile 2.2.2: -- (define a #(0)) (if (vector? a) (vector-set! a 0 1)) In procedure vector-set!: Wrong type argument in position 1 (expecting mutable vector): #(0) -- is this documented somewhere in the guile manual or part of the sc

Re: Automatic code formatting?

2014-08-16 Thread J Kalbhenn
i use and maintain a formatter which formats like explained here: http://sph.io/content/1dd7 it provides a command-line program which i have bound in emacs to a key for on-demand formatting. On 2014-08-16 06:28, Bernardo Ezequiel Contreras wrote: > hi all, > i would like to know how do you autom

guile-dbi: guile-dbd-sqlite3 update

2014-07-20 Thread J Kalbhenn
the source code for guile-dbd-sqlite3 (at https://github.com/jkalbhenn/guile-dbd-sqlite3) has been improved since the last version has been packaged for http://download.gna.org/guile-dbi/ and a new version could be provided there. changes: * fixed that dbi-close did not close the sqlite file *