bug#41142: [PATCH] GUILE_PKG bails out when 'pkg-config' is missing

2020-05-27 Thread Mathieu Lirzin
Ludovic Courtès writes: > Mathieu Lirzin skribis: > >> * meta/guile.m4 (GUILE_PKG): Ensure that 'pkg-config' is available. Use >> AC_REQUIRE for PKG_PROG_PKG_CONFIG to avoid unnecessary invocations. > Thanks Ludovic. -- Mathieu Lirzin GPG: F2A3 8D7E EB2B 6640 5761 070D 0ADE E100 9460 4D37

bug#40486: http-get doesn't respect #:verify-certificate?

2020-05-27 Thread Ludovic Courtès
Hi, Jan Synacek skribis: > When I run the following piece of code: > > (use-modules (web client)) > (http-get "https://bugzilla.redhat.com/rest/bug/1; #:verify-certificate? #f) > > I get: > ... > In web/client.scm: > 563:0 1 (http-get "https://bugzilla.redhat.com/rest/bug/1; # _ # …) >

bug#41352: incomprehensible paragraph in info pages

2020-05-27 Thread Ludovic Courtès
Jan Synacek skribis: > In guile-3.0.2 manual, section 6.9.3 Compiled Procedures, there is: > > Compiled procedures, also known as “programs”, respond all procedures > that operate on procedures. In addition, there are a few more accessors > for low-level details on programs. > > The first

bug#41353: (thunk? (const 1))

2020-05-27 Thread Ludovic Courtès
Hi, David Kastrup skribis: > I think this is more a matter of the documentation being not quite right: > > -- Scheme Procedure: thunk? obj > -- C Function: scm_thunk_p (obj) > Return ‘#t’ if OBJ is a thunk—a procedure that does not accept > arguments. > > "if OBJ can serve as a

bug#41354: equal? has no sensible code path for symbols

2020-05-27 Thread David Kastrup
Ludovic Courtès writes: > Hi David, > > David Kastrup skribis: > >> In Scheme, symbols can be compared using eq? for equality. However, >> since they have garbage-collected content attached, they do not meet the >> predicate SCM_IMP in the short-circuit evaluation at the start of equal? >>

bug#41471: [PATCH] doc: Fix a few typos in vm section.

2020-05-27 Thread Ludovic Courtès
Hi Eric, bav...@posteo.net skribis: > From: Eric Bavier > > * doc/ref/vm.texi: Fix some grammar and typos. Applied, thanks! Ludo’.

bug#41354: equal? has no sensible code path for symbols

2020-05-27 Thread Ludovic Courtès
Hi David, David Kastrup skribis: > In Scheme, symbols can be compared using eq? for equality. However, > since they have garbage-collected content attached, they do not meet the > predicate SCM_IMP in the short-circuit evaluation at the start of equal? > This means that unequal symbols

bug#41355: [PATCH] Fix typos in the manual

2020-05-27 Thread Ludovic Courtès
Hi, jsyna...@redhat.com skribis: > From: Jan Synacek > > * doc/ref/api-control.texi: > * doc/ref/r6rs.texi: > * doc/ref/sxml.texi: Fix typos. Applied, thanks! Ludo’.

bug#41142: [PATCH] GUILE_PKG bails out when 'pkg-config' is missing

2020-05-27 Thread Ludovic Courtès
Hi Mathieu, Mathieu Lirzin skribis: > * meta/guile.m4 (GUILE_PKG): Ensure that 'pkg-config' is available. Use > AC_REQUIRE for PKG_PROG_PKG_CONFIG to avoid unnecessary invocations. Applied, thanks! Ludo’.

bug#41126: [PATCH] doc: Added very minimal doc strings to (srfi srfi-9 gnu).

2020-05-27 Thread Ludovic Courtès
Hi Dale, Dale Mellor skribis: > * module/srfi/srfi-9/gnu.scm: Added some doc strings. [...] > (define (set-record-type-printer! type proc) > - "Set PROC as the custom printer for TYPE." > + "- Scheme Procedure: set-record-type-printer! TYPE PROC > + Set PROC as the custom printer for