Changeset 11205
- Timestamp:
- Oct 23, 2008, 9:53:10 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/level-1/linux-files.lisp
r11176 r11205 52 52 ;; encoding (though FreeBSD seems to be moving towards 53 53 ;; precomposed UTF-8.). 54 ;; In any case, the use of %GET-CSTRING here is wrong ...55 54 #-(or darwin-target windows-target) 56 (%get-cstring pointer)) 55 (let* ((encoding-name (pathname-encoding-name))) 56 (if encoding-name 57 (get-encoded-cstring encoding-name pointer) 58 (%get-cstring pointer)))) 57 59 58 60 (defun nanoseconds (n)
Note: See TracChangeset
for help on using the changeset viewer.