# HG changeset patch # User Steve Losh # Date 1483656233 0 # Node ID 1aaec79f2887bbc909d5f2af6aab8f13d8e97a85 # Parent c3e4c4c8afa01c5055d6b4f9f581a405ed218274 Fix wonky indentation diff -r c3e4c4c8afa0 -r 1aaec79f2887 losh.lisp --- a/losh.lisp Tue Dec 27 00:18:05 2016 -0500 +++ b/losh.lisp Thu Jan 05 22:43:53 2017 +0000 @@ -851,7 +851,7 @@ (defmacro-driver (FOR var PAIRS-OF-LIST list) - "Iterate over the all pairs of the (including (last . first)). + "Iterate over the all pairs of `list` (including `(last . first)`). Examples: diff -r c3e4c4c8afa0 -r 1aaec79f2887 package.lisp --- a/package.lisp Tue Dec 27 00:18:05 2016 -0500 +++ b/package.lisp Thu Jan 05 22:43:53 2017 +0000 @@ -13,10 +13,8 @@ `(defpackage ,name ,@args ,@(loop :for parent-package :in parent-packages - :collect - `(:use ,parent-package) - :collect - `(:export ,@(external-symbols parent-package))))) + :collect `(:use ,parent-package) + :collect `(:export ,@(external-symbols parent-package))))) (defpackage :losh.arrays @@ -255,8 +253,9 @@ (defpackage-inheriting :losh - (:losh.arrays + ( + :losh.arrays :losh.bits :losh.chili-dogs :losh.control-flow