X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=guile18%2Fice-9%2Fslib.scm;fp=guile18%2Fice-9%2Fslib.scm;h=a2b526562fb51b5c097ac7df40fcefcaf4087363;hb=139c38d9204dd07f6b235f83bae644faedbc63fd;hp=0000000000000000000000000000000000000000;hpb=652ed35a2013489d0a14fede6307cd2595abb2c4;p=lilypond.git diff --git a/guile18/ice-9/slib.scm b/guile18/ice-9/slib.scm new file mode 100644 index 0000000000..a2b526562f --- /dev/null +++ b/guile18/ice-9/slib.scm @@ -0,0 +1,42 @@ +;;;; slib.scm --- definitions needed to get SLIB to work with Guile +;;;; +;;;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2006, 2007 Free Software Foundation, Inc. +;;;; +;;;; This library is free software; you can redistribute it and/or +;;;; modify it under the terms of the GNU Lesser General Public +;;;; License as published by the Free Software Foundation; either +;;;; version 2.1 of the License, or (at your option) any later version. +;;;; +;;;; This library is distributed in the hope that it will be useful, +;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;;;; Lesser General Public License for more details. +;;;; +;;;; You should have received a copy of the GNU Lesser General Public +;;;; License along with this library; if not, write to the Free Software +;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +;;;; +(define-module (ice-9 slib) + :export (slib:load slib:load-source defmacro:load + implementation-vicinity library-vicinity home-vicinity + scheme-implementation-type scheme-implementation-version + output-port-width output-port-height array-indexes + make-random-state + -1+ ? >=? + require slib:error slib:exit slib:warn slib:eval + defmacro:eval logical:logand logical:logior logical:logxor + logical:lognot logical:ash logical:logcount logical:integer-length + logical:bit-extract logical:integer-expt logical:ipow-by-squaring + slib:eval-load slib:tab slib:form-feed difftime offset-time + software-type) + :no-backtrace) + + +;; Initialize SLIB. +(load-from-path "slib/guile.init") + +;; SLIB redefines a few core symbols based on their default definition. +;; Thus, we only replace them at this point so that their previous definition +;; is visible when `guile.init' is loaded. +(module-replace! (current-module) + '(delete-file open-file provide provided? system))