Re: Error in error?

2022-09-21 Thread sidhu1f
g/guile-lib/doc/ref/debugging.assert/). In assert.scm (version 0.2.7), the error procedure invocation on line 62 uses "~a". So should this invocation be replaced by scm-error instead? My thanks to authors of both responses. Regards sidhu1f On Sat, Aug 20, 2022 at 2:10 AM Maxime Devos

Error in error?

2022-08-18 Thread sidhu1f
According to the guile (version 3.0.7) reference manual, (error "foo ~a" 'bar) should output "foo bar" but instead the output is "foo ~a bar". Am I missing something or is there a bug in error? Regards sidhu1f

Re: Using R7RS symbol syntax in guile

2017-05-05 Thread sidhu1f
the > macro expansion of the file. However for the use-module part > guile will load the module at expansion time. > > Regards > Stefan > > > On Fri, Apr 28, 2017 at 4:14 PM, sidhu1f <sidh...@gmail.com> wrote: >> >> Could someone please explain the following s

Using R7RS symbol syntax in guile

2017-04-28 Thread sidhu1f
Could someone please explain the following seemingly counterintuitive behavior regarding the r7rs syntax for symbols (symbol #foo is expressed as |#foo| using r7rs syntax, more info in sec.6.6.6.6 of guile ref. manual). When I invoke 'guile -s' on a file containing: (read-enable 'r7rs-symbols)

Re: Converting SXML to XML

2017-01-21 Thread sidhu1f
Patch attached, it was created as mentioned at http://www.gnu.org/software/guile/contribute/. Patch applicable to guile versions 2.0.13 and 2.1.6 as the file simple.scm is identical in both. Let me know if any modifications are required. Regards sidhu1f From

Re: Converting SXML to XML

2017-01-19 Thread sidhu1f
On Wed, 18 Jan 2017 16:12:21 +0530, sidhu1f wrote: > Tried converting SXML to XML using sxml->xml function in (sxml simple) > module, but it cannot handle SXML '*COMMENT*' construct, among others. > Didn't find a conversion function in (saxml ssax) either. > > Is there

Converting SXML to XML

2017-01-18 Thread sidhu1f
ort to develop a convertor (ideally, ssax based) that one could contribute to? Regards sidhu1f