[Gd-chatter] [Bug 7356] New: indention of keywords in define method is not correct

bugzilla-daemon at gwydiondylan.org bugzilla-daemon at gwydiondylan.org
Sat May 19 03:27:36 CEST 2007


http://www.gwydiondylan.org/cgi-bin/bugzilla/show_bug.cgi?id=7356

           Summary: indention of keywords in define method is not correct
           Product: tools
           Version: unspecified
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Emacs Mode
        AssignedTo: gd-bugs at chris-page.org
        ReportedBy: hannes at mehnert.org
                CC: gd-chatter at gwydiondylan.org


currently, it is the following:

define function breadth-first-search
 (graph :: <graph>, start-node :: <node>,
  #key visit :: <function> = method(x) end,
  done :: <function> = method(x) end,
  init :: <boolean> = #t)
 => (reachable-nodes :: <stretchy-vector>, used-edges :: <stretchy-vector>);

where it should be:
define function breadth-first-search
 (graph :: <graph>, start-node :: <node>,
  #key visit :: <function> = method(x) end,
       done :: <function> = method(x) end,
       init :: <boolean> = #t)
 => (reachable-nodes :: <stretchy-vector>, used-edges :: <stretchy-vector>);


-- 
Configure bugmail: http://www.gwydiondylan.org/cgi-bin/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.



More information about the chatter mailing list