Skip to content

Commit

Permalink
BUG FIX: 'proc' definitions must have a space between the function na…
Browse files Browse the repository at this point in the history
…me and the first curly bracket [#11]
  • Loading branch information
HenrikBengtsson committed Apr 29, 2024
1 parent c230eb6 commit 8ccc314
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/seguid.tcl
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
proc seguid{text form} {
proc seguid {text form} {
calculate_seguid $text s $form
}

proc lsseguid{text form} {
proc lsseguid {text form} {
calculate_seguid $text lss $form
}

proc csseguid{text form} {
proc csseguid {text form} {
calculate_seguid $text css $form
}

proc ldseguid{text form} {
proc ldseguid {text form} {
calculate_seguid $text lds $form
}

proc cdseguid{text form} {
proc cdseguid {text form} {
calculate_seguid $text cds $form
}

Expand Down Expand Up @@ -197,4 +197,4 @@ proc validate {text alphabet} {
}
}
return "ok"
}
}

0 comments on commit 8ccc314

Please sign in to comment.