(linenum→info "unix/slp.c:2238")

gauche/0.8.12/lib/srfi-29.scm

    1: ;;;
    2: ;;; srfi-29.scm - Localization
    3: ;;;  
    4: ;;;  $Id: srfi-29.scm,v 1.1 2004/01/25 11:11:22 shirok Exp $
    5: ;;;
    6: 
    7: ;; srfi-29 defines the 'format' function in a way incompatible to
    8: ;; Gauche's (and CommonLisp's).   Srfi-29's ~N@* only affects
    9: ;; the following directive.   CommonLisp and Gauche's ~N@* affects
   10: ;; the rest of directives.
   11: ;;
   12: ;; So I splitted srfi-29's 'format' functionality from the rest.
   13: ;; If you wish complete compatibility to srfi-29, just load srfi-29,
   14: ;; which overrides Gauche's native 'format'.
   15: ;; If you only wish srfi-29's bundle API, but want to keep Gauche's
   16: ;; native 'format', use srfi.bundle instead.
   17: 
   18: (define-module srfi-29
   19:   (extend srfi-29.bundle srfi-29.format))
   20: 
   21: (provide "srfi-29")
Syntax (Markdown)