From b6b70d54ef69572fbdca7ddc0afeef02172d366b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Pospi=CC=81s=CC=8Cil?= Date: Tue, 31 Mar 2020 15:31:27 +0200 Subject: [PATCH] Fix typo flie --- src/boot/boot.janet | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 468da4a5..114d0d5a 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -2586,22 +2586,22 @@ (print "#define JANET_BUILD \"" janet/build "\"") (print ```#define JANET_AMALG```) - (defn do-one-flie + (defn do-one-file [fname] (print "\n/* " fname " */") (print "#line 0 \"" fname "\"\n") (def source (slurp fname)) (print (string/replace-all "\r" "" source))) - (do-one-flie feature-header) + (do-one-file feature-header) (print ```#include "janet.h"```) (each h local-headers - (do-one-flie h)) + (do-one-file h)) (each s core-sources - (do-one-flie s)) + (do-one-file s)) # Create C source file that contains images a uint8_t buffer. This # can be compiled and linked statically into the main janet library