X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Ffile-cache.scm;h=4ca9ee056d3b1dd1b5927be28303e4f8b3fdb931;hb=HEAD;hp=7deea1a28eef9a973d70c480c32ad039c9710088;hpb=55ac733b69643a6bc6a83b706c65cb56efd388ef;p=lilypond.git diff --git a/scm/file-cache.scm b/scm/file-cache.scm index 7deea1a28e..4ca9ee056d 100644 --- a/scm/file-cache.scm +++ b/scm/file-cache.scm @@ -1,6 +1,6 @@ ;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; Copyright (C) 2005--2011 Han-Wen Nienhuys +;;;; Copyright (C) 2005--2015 Han-Wen Nienhuys ;;;; ;;;; LilyPond is free software: you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by @@ -22,7 +22,7 @@ ((contents (hash-ref cache-hash-tab filename #f))) (if (not (string? contents)) - (begin - (set! contents (ly:gulp-file filename)) - (hash-set! cache-hash-tab filename contents))) + (begin + (set! contents (ly:gulp-file filename)) + (hash-set! cache-hash-tab filename contents))) contents))