From formalin14 at gmail.com Mon Feb 6 01:22:08 2012 From: formalin14 at gmail.com (Achilles Xu) Date: Mon, 6 Feb 2012 17:22:08 +0800 Subject: [osicat-devel] walk-directory does not support unicode filename and diretoryname? Message-ID: It seems walk-directory will skip files and directories whose name is in Unicode, such as Chinese. Is this a bug? Test platform: Mac OS 10.7 Lion, Clozure Common Lisp 1.8 Test Code: (require "asdf") (require "osicat") (defpackage :com.losttemple.zip-db (:use :common-lisp :osicat)) (in-package :com.losttemple.zip-db) (walk-directory (current-directory) #'(lambda (x) (format t "~a~%" (absolute-pathname x))) :test #'(lambda (x) (format t "---~a~%" (absolute-pathname x)) t) :directories :depth-first) (in-package :common-lisp-user) (quit) -- --------------------------- Achilles Xu -------------- next part -------------- An HTML attachment was scrubbed... URL: From khaelin at gmail.com Tue Feb 21 23:29:57 2012 From: khaelin at gmail.com (Nicolas Martyanoff) Date: Wed, 22 Feb 2012 08:29:57 +0100 Subject: [osicat-devel] prctl() support and test-related patches Message-ID: <87linvmikq.fsf@gmail.com> Hi, I added support for the prctl() Linux syscall to Osicat, and made two test-related fixes. The patches are available on my Github Osicat fork [1], more precisely: https://github.com/galdor/osicat/commit/736bb5c10c9c55ed76def0d58da31c1ad1eeff05 https://github.com/galdor/osicat/commit/bede645f2a3d15d825160c7518c295c95bed4271 https://github.com/galdor/osicat/commit/288dc2ee6a6861ea272ea75bb3e346cda6ca85a7 You may be interested in picking them in the official Osicat repository :) [1] https://github.com/galdor/osicat Regards, -- Nicolas Martyanoff http://wandrian.net khaelin at gmail.com