1aaec79f2887

Fix wonky indentation
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 05 Jan 2017 22:43:53 +0000
parents c3e4c4c8afa0
children 3913e79377c1
branches/tags (none)
files losh.lisp package.lisp

Changes

--- 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:
 
--- 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