diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-05-23 23:23:46 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-05-23 23:23:46 +0200 |
commit | ef777b73dcd53f7341c32fdf04b39906c86087f3 (patch) | |
tree | 2f115b5cf083dea6424e5b069666568a4468b407 /scheme/plt/geiser/utils.rkt | |
parent | 94f76a1565f09d189d9f2cef6d3df7860321709e (diff) | |
download | geiser-guile-ef777b73dcd53f7341c32fdf04b39906c86087f3.tar.gz geiser-guile-ef777b73dcd53f7341c32fdf04b39906c86087f3.tar.bz2 |
PLT: Completing the .ss -> .rkt transition.
Diffstat (limited to 'scheme/plt/geiser/utils.rkt')
-rw-r--r-- | scheme/plt/geiser/utils.rkt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scheme/plt/geiser/utils.rkt b/scheme/plt/geiser/utils.rkt index ff8e695..f6c739c 100644 --- a/scheme/plt/geiser/utils.rkt +++ b/scheme/plt/geiser/utils.rkt @@ -1,6 +1,6 @@ -;;; utils.ss -- generic utilities +;;; utils.rkt -- generic utilities -;; Copyright (C) 2009 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -24,4 +24,4 @@ (define keyword->symbol (compose string->symbol keyword->string)) (define (symbol->keyword sym) (string->keyword (format "~a" sym))) -;;; utils.ss ends here +;;; utils.rkt ends here |