LWN.net Logo

It works - you need to check out the develop branch

It works - you need to check out the develop branch

Posted Dec 5, 2012 19:54 UTC (Wed) by HelloWorld (guest, #56129)
In reply to: It works - you need to check out the develop branch by david.a.wheeler
Parent article: GNU Guile 2.0.7 released

Hi, OK, I got the master branch now.

$ ./sweeten <<< '(defun foo (bar baz) ...)'
defun foo (bar baz)
  bar baz
  ...
Yes, that is what I get too, but... how does it make sense? The function arguments are there twice now. I'm not much of a Lisp person, but shouldn't it be either
defun foo (bar baz)
  ...
or
defun foo
  bar baz
  ...
?


(Log in to post comments)

Whups! Bug fixed

Posted Dec 5, 2012 21:34 UTC (Wed) by david.a.wheeler (guest, #72896) [Link]

how does it make sense?

The technical answer is, "because I screwed up" :-). A copy-and-paste error on my part, sorry. I was so focused on getting the first line right that I didn't pay attention to the second line once I got the first line right. I guess I'm still human.

I've fixed the bug and posted it on the git repo. I knew there was a reason to have a development branch :-).

Seems to work

Posted Dec 5, 2012 21:38 UTC (Wed) by HelloWorld (guest, #56129) [Link]

Good job :)

Copyright © 2013, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds