From 1e793e696a6ab731d47b8640b0778ee9b429fdb2 Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont Date: Sun, 12 Jan 2014 17:34:05 +0100 Subject: [PATCH] Fix indentation of *exports* --- hy/core/language.hy | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hy/core/language.hy b/hy/core/language.hy index 0ccd3c6..786d4de 100644 --- a/hy/core/language.hy +++ b/hy/core/language.hy @@ -302,9 +302,9 @@ (_numeric_check n) (= n 0)) -(def *exports* '[calling-module-name coll? cycle dec distinct disassemble - drop drop-while empty? even? filter flatten float? gensym - inc instance? integer integer? iterable? iterate - iterator? macroexpand macroexpand-1 neg? nil? none? - nth numeric? odd? pos? remove repeat repeatedly second - string string? take take-nth take-while zero?]) +(def *exports* '[calling-module-name coll? cycle dec distinct + disassemble drop drop-while empty? even? filter flatten + float? gensym inc instance? integer integer? iterable? + iterate iterator? macroexpand macroexpand-1 neg? nil? + none? nth numeric? odd? pos? remove repeat repeatedly + second string string? take take-nth take-while zero?])