~bakpakin/janet

47f246ba66846312303e1ec34747a4b6541b35a3 — Calvin Rose 4 years ago 417d9a1 + b6b70d5 1.8
Merge pull request #329 from pepe/master

Fix typo flie
1 files changed, 4 insertions(+), 4 deletions(-)

M src/boot/boot.janet
M src/boot/boot.janet => src/boot/boot.janet +4 -4
@@ 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