Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 1630)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Resolution Summary Owner Reporter
#1250 fixed gdbm attempts to emit an import library out of the import source file Alex Shinn Mario Domenech Goulart
Description

The import file doesn't contain a module. Attempting to emit an import library out of files that don't declare a module was not an error until 7cdf0eb7, but now it is.

See http://salmonella-linux-x86-64.call-cc.org/master-debugbuild/gcc/linux/x86-64/2016/01/02/salmonella-report/install/gdbm.html for the full error message.

#1252 fixed utf8-srfi-13 string-index-right treats bounds differently to srfi-13 Alex Shinn Caolan McMahon
Description
(use srfi-13)
(string-index-right "foo" #\@ 0 0)
;; => #f

(use utf8-srfi-13)
(string-index-right "foo" #\@ 0 0)

Error: index out of range
"foo"
-1

	Call history:

	<syntax>	  (string-index-right "foo" #\@ 0 0)
	<eval>	  (string-index-right "foo" #\@ 0 0)	<--
#1253 fixed utf8-srfi-13 string-map! does not update in-place Alex Shinn Caolan McMahon
Description
(use srfi-13)
(define str "foo")
(string-map! (lambda (c) #\x) str) ;; => "xxx"
str ;; => "xxx"
(use utf8-srfi-13)
(define str "foo")
(string-map! (lambda (c) #\x) str) ;; => "xxx"
str ;; => "foo"
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.