From: Nicholas Clark Date: Mon, 6 Dec 2004 13:41:45 +0000 (+0000) Subject: Remove spurious semicolons X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d9a22066ef928f4f3759cbd5455cf5ca596af7b4;p=p5sagit%2Fp5-mst-13.2.git Remove spurious semicolons (As these 2 are spare, I guess I should send them to Mark Rhodes (former office mate) as he often said that he kept mislaying his) p4raw-id: //depot/perl@23614 --- diff --git a/gv.h b/gv.h index dfc74ca..6e14f44 100644 --- a/gv.h +++ b/gv.h @@ -154,5 +154,5 @@ Return the SV from the GV. #define GV_ADDINEVAL 0x08 /* add, as though we're doing so within an eval */ #define GV_NOINIT 0x10 /* add, but don't init symbol, if type != PVGV */ -#define gv_fullname3(sv,gv,prefix) gv_fullname4(sv,gv,prefix,TRUE); -#define gv_efullname3(sv,gv,prefix) gv_efullname4(sv,gv,prefix,TRUE); +#define gv_fullname3(sv,gv,prefix) gv_fullname4(sv,gv,prefix,TRUE) +#define gv_efullname3(sv,gv,prefix) gv_efullname4(sv,gv,prefix,TRUE)