From: Vincent Pit Date: Mon, 24 Oct 2011 19:42:20 +0000 (+0200) Subject: Remove trailing whitespace X-Git-Tag: v0.47~20 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=69d59682d7e861e55be7a1b125c2e60e797a7d74 Remove trailing whitespace --- diff --git a/Magic.xs b/Magic.xs index 6136d4b..afb7713 100644 --- a/Magic.xs +++ b/Magic.xs @@ -759,7 +759,7 @@ STATIC SV *vmg_data_get(pTHX_ SV *sv, const SV *wiz) { #define vmg_data_get(S, W) vmg_data_get(aTHX_ (S), (W)) const MAGIC *mg = vmg_find(sv, wiz); return mg ? mg->mg_obj : NULL; -} +} /* ... Magic cast/dispell .................................................. */ diff --git a/t/11-multiple.t b/t/11-multiple.t index 07b1899..7c92b78 100644 --- a/t/11-multiple.t +++ b/t/11-multiple.t @@ -125,7 +125,7 @@ SKIP: { $s = $h{b}; is($s, 2, 'fetch magic after dispelled 1 doesn\'t clobber'); for (0, 2) { is($c[$_], 2, "fetch magic $_ after dispelled 1"); } - + $h{b} = 4; for (0, 2) { is($c[$_], 1, "store magic $_ after dispelled 1"); } is($h{b}, 4, 'store magic after dispelled 1 doesn\'t clobber');