summaryrefslogtreecommitdiff
path: root/THANKS
Commit message (Collapse)AuthorAgeFilesLines
* (scheme base) member: return #f, not (), for no matchRob Browning2021-01-171-0/+2
| | | | | | | | | * module/scheme/base.scm (member): Match the r7rs requirement, as assoc already does. Thanks to Erik Dominikus for reporting the problem. Closes: 43304
* Replace a line which was accidentally removed.Asher Gordon2021-01-171-0/+1
| | | | | | | | | | | | The line, part of the sentence above it in a comment, was accidentally removed in commit b8d757732fae7c396d58327185f94e5d90846445 "Rationalize include order in C files". * libguile/guile.c: restore missing line. [rlb@defaultvalue.org: augment commit message; add THANKS] Closes: 42331
* doc: Fix composition describing scm_reverse_list_to_stringRob Browning2021-01-171-0/+1
| | | | | | | | * libguile/srfi-13.c (scm_reverse_list_to_string): Replace string->list with list->string in the composition explaning how it works. Thanks to Andrey Ivanov for reporting the problem. Closes: 34457
* THANKS: Christopher Allan Webber -> Christopher Lemmer Webber.Mark H Weaver2019-06-181-1/+1
| | | | * THANKS: Update name and re-sort.
* Update THANKS.Mark H Weaver2019-06-181-2/+17
| | | | | | | | | * THANKS: Thank Christopher Allan Webber, Christopher Baines, and Timothy Sample for contributions. Thank Andrea Azzarone, Михаил Бахтерев, Jonathan Brielmaier, Josh Datko, Massimiliano Gubinelli, Arun Isaac, Shea Levy, Chris Marusich, Jan Smydke, Tom de Vries, Jeffrey Walton, and Zefram for fixes. Move Michael Talbot-Wilson and Michael Tuexen to their proper place to fix the sorting.
* Thank David and Kouhei.Ludovic Courtès2016-05-221-0/+2
|
* Thank Ricardo.Ludovic Courtès2016-05-221-0/+1
|
* Fix strerror error handling when given a non-integer argument.Mark H Weaver2014-11-111-0/+1
| | | | | | | | | Fixes <http://bugs.gnu.org/18065>. Reported and fixed by Glenn Michaels <gmichaels@Safe-mail.net>. * libguile/error.c (scm_strerror): Convert the argument to a C integer outside of the critical section, to avoid deadlock on error. * THANKS: Add Glenn Michaels to the fixes section.
* scm_boot_guile: Gracefully handle the case where argc == 0.Mark H Weaver2014-10-101-0/+1
| | | | | | | | | Fixes <http://bugs.gnu.org/18680>. Reported by Nala Ginrut <nalaginrut@gmail.com>. * libguile/init.c (scm_boot_guile): Do not canonicalize argv[0] unless argc > 0. * THANKS: Add Nala Ginrut to the fixes section.
* Thank Per Bothner.Mark H Weaver2014-10-071-0/+1
| | | | * THANKS: Add Per Bothner to the "libraries" section (for SRFI-64).
* docs: Fix documented return type of 'scm_c_export'.Mark H Weaver2014-10-011-0/+1
| | | | | | | | | Fixes <http://bugs.gnu.org/17869>. Reported and fixed by Alexei Matveev <alexei.matveev@gmail.com>. * doc/ref/api-modules.texi (Accessing Modules from C): Change documented return type of 'scm_c_export' to 'void' to reflect reality. * THANKS: Add Alexei Matveev to the fixes section.
* Thank Franck.Ludovic Courtès2014-08-261-0/+1
|
* Mark system async functions as SCM_API.Mark H Weaver2014-06-011-0/+1
| | | | | | | | | | | Fixes <http://bugs.gnu.org/17661>. Reported and fixed by Chris Vine <chris@cvine.freeserve.co.uk>. * libguile/async.h (scm_c_call_with_blocked_asyncs) (scm_c_call_with_unblocked_asyncs, scm_dynwind_block_asyncs) (scm_dynwind_unblock_asyncs): Mark as SCM_API. * THANKS: Add Chris Vine to fixes section.
* Thank Paul.Ludovic Courtès2014-03-121-0/+1
|
* SRFI-18: Export 'current-thread'.Mark H Weaver2014-02-271-0/+1
| | | | | | | | Fixes <http://debbugs.gnu.org/16890>. Reported by Xin Wang <dram.wang@gmail.com>. * module/srfi/srfi-18.scm: Reexport 'current-thread'. * THANKS: Add "Xin Wang" to fixes section.
* Write out HTTP Basic auth headers correctly.Mark H Weaver2014-01-211-0/+1
| | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/14370>. Reported by Atom X Zane <atomx@deadlyhead.com>. * module/web/http.scm (write-credentials): Handle the Basic auth scheme correctly. * test-suite/tests/web-http.test (pass-if-round-trip): Use 'pass-if-equal' for better error reporting. ("request headers"): Add tests. * THANKS: Add "Atom X Zane" to bug fix section.
* Thank Sree Harsha.Ludovic Courtès2014-01-171-0/+1
|
* Thank Aleix.Ludovic Courtès2013-12-211-0/+1
|
* THANKS Tom Tromey.Mark H Weaver2013-12-131-0/+1
| | | | * THANKS: Add Tom Tromey to fixes section.
* THANKS David ThompsonMark H Weaver2013-11-181-0/+1
| | | | * THANKS: Add David Thompson to list of contributors.
* Fix minor mistakes in documentation.Mark H Weaver2013-09-301-1/+1
| | | | | | | | | | | | | | Fixes <http://bugs.gnu.org/15487>. Reported by Josep Portella Florit <jpf@primfilat.com>. * doc/ref/api-i18n.texi (i18n Introduction, Text Collation, Internationalization, Internationalization): LC_MESSAGE --> LC_MESSAGES. * doc/ref/api-procedures.texi (Compiled Procedures): program-lambda-alist --> program-lambda-list. * THANKS: Fix alignment of Josep Portella Florit.
* Fix truncated documentation for 'put-char'.Mark H Weaver2013-09-131-0/+1
| | | | | | | | | | Fixes <http://bugs.gnu.org/15152>. Reported by Josep Portella Florit <jpf@primfilat.com>. * doc/ref/api-io.texi (R6RS Textual Output): Fix truncated docs for 'put-char'. * THANKS: Add Josep Portella Florit to fixes section.
* THANKS Alexandru CojocaruMark H Weaver2013-09-101-0/+1
| | | | * THANKS: Add Alexandru Cojocaru to fixes section.
* Fix bug in remqueue in threads.c when removing last element.Mark H Weaver2013-06-171-0/+1
| | | | | | | | | Reported and debugged by Andrew Gaylard <ag@computer.org>. * libguile/threads.c (remqueue): When removing the last element from a queue with more than one element, set (car q) to the previous element. * THANKS: Thank Andrew Gaylard.
* Update `THANKS'.Ludovic Courtès2013-04-091-0/+2
|
* Minor 'THANKS' fix.Mark H Weaver2013-04-091-1/+1
|
* Fix alignment in 'THANKS'.Mark H Weaver2013-04-091-1/+1
|
* Update bug report section of 'THANKS'.Mark H Weaver2013-04-091-0/+4
|
* Update 'THANKS'.Mark H Weaver2013-04-091-0/+8
|
* Use BT Templeton's preferred name.Chris K. Jester-Young2013-03-271-1/+1
| | | | * THANKS: Use BT Templeton's preferred name.
* Thanks Chris K. Jester-Young.Mark H Weaver2013-03-271-0/+1
| | | | * THANKS: Add Chris K Jester-Young to the list of contributors.
* Fix duplicate removal of with-fluids.Mark H Weaver2013-02-281-0/+1
| | | | | | | | | | | | | Based on a patch by David Kastrup <dak@gnu.org>. Fixes <http://bugs.gnu.org/13838>. * libguile/fluids.c (scm_i_make_with_fluids): Remove the duplicate binding instead of the last binding. * test-suite/tests/fluids.test: Add test, and fix existing duplicate tests. * THANKS: Thanks David Kastrup.
* Thanks Jozef Chraplewski.Mark H Weaver2012-12-071-0/+1
| | | | * THANKS: Jozef Chraplewski.
* Update thanksIan Price2012-11-261-0/+1
| | | | * THANKS: Add Sjoerd Van Leent
* Thanks Daniel Hartwig.Mark H Weaver2012-10-121-0/+1
| | | | * THANKS (Contributors since the last release): Add Daniel Hartwig.
* Update `THANKS'.Ludovic Courtès2012-07-021-0/+1
|
* doc: Remove reference to `closure?', now deprecated.Ludovic Courtès2012-07-021-0/+1
| | | | | | | Fixed <http://bugs.gnu.org/11611>. * doc/ref/api-procedures.texi (Procedure Properties): Remove reference to `closure?'. Suggested by David Jaquay <djaquay@gmail.com>.
* Update `THANKS'.Ludovic Courtès2012-06-201-0/+1
|
* Thank Klaus.Ludovic Courtès2012-04-221-0/+1
|
* Thanks, Aidan.Ludovic Courtès2011-03-101-0/+1
|
* update THANKSAndy Wingo2011-02-141-9/+26
| | | | | * THANKS: Update, adding all people who have their name on a patch in Git. Add a section on authors of other free software libraries.
* update thanksAndy Wingo2011-02-141-0/+1
| | | | * THANKS: Add Ian Price
* Thank RalfNeil Jerram2011-02-141-0/+1
| | | | * THANKS: Thank Ralf.
* fix THANKSAndy Wingo2011-01-271-1/+1
| | | | * THANKS: Fix.
* fix error handling in variable-ref family of instructionsAndy Wingo2011-01-271-0/+1
| | | | | | | | | | * libguile/vm-i-system.c (variable-ref, variable-set, variable-bound?): Check that the argument is actually a variable. Thanks to Kevin Holmes for the report. * libguile/vm-engine.c (vm_engine): Error handling down here. * THANKS: Update.
* fix THANKSAndy Wingo2011-01-261-1/+1
| | | | * THANKS: Fix Hans' surname.
* fix error-handling of apply to non-listAndy Wingo2011-01-261-0/+1
| | | | | | * libguile/vm-engine.c (vm_error_apply_to_non_list): Sync registers before erroring. Fix type of finish_args. Thanks to Hans Aberg for the report.
* fix format ~f documentation for width combined with overflowcharAndy Wingo2011-01-261-0/+1
| | | | | | | | * doc/ref/misc-modules.texi (Formatted Output): Adapt ~f documentation to indicate that the output will always have a decimal point. Thanks to Fu-gangqiang for the report. * THANKS: Update.
* Augment `THANKS'.Ludovic Courtès2011-01-231-0/+1
|
* Manual page fixesNeil Jerram2011-01-151-0/+1
| | | | | | | | | Thanks to Mark Harig for pointing these out. * doc/guile.1: Remove mention of the tutorial, since it no longer exists (as a separate document). Document the -q option. * THANKS: Add Mark Harig.