/usr/share/gauche-0.9/0.9.5/lib/srfi-29.scm is in gauche 0.9.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ;;;
;;; srfi-29.scm - Localization
;;;
;; srfi-29 defines the 'format' function in a way incompatible to
;; Gauche's (and CommonLisp's). Srfi-29's ~N@* only affects
;; the following directive. CommonLisp and Gauche's ~N@* affects
;; the rest of directives.
;;
;; So I splitted srfi-29's 'format' functionality from the rest.
;; If you wish complete compatibility to srfi-29, just load srfi-29,
;; which overrides Gauche's native 'format'.
;; If you only wish srfi-29's bundle API, but want to keep Gauche's
;; native 'format', use srfi.bundle instead.
(define-module srfi-29
(extend srfi-29.bundle srfi-29.format))
|