Bug 12792: C4::Reserves breaks my vim syntax color
authorJonathan Druart <jonathan.druart@biblibre.com>
Wed, 20 Aug 2014 11:42:35 +0000 (13:42 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Wed, 14 Jan 2015 15:42:32 +0000 (12:42 -0300)
commit0f406a840a09b381dc12a4e9704846b126b0c214
tree05be7ae159487dc7b3309292f7ee0e57a1393d31
parent28513edb943c255b191c94e0fbc0fe14368e6985
Bug 12792: C4::Reserves breaks my vim syntax color

C4/Reserves.pm is unreadable with my vim configuration.
It appears I am the only one having this problem.
For an incomprehensible reason, a string constructs with
  qq/my string/;
completely breaks the syntax color for all the rest of the file (~2300l).
If I replace it with
  qq{my string};
all is fine!

Test plan:
launch
  git show HEAD
and verify this patch won't break anything.

Additionally, prove t/db_dependent/Reserves.t
This will trigger the three functions that were modified.
The prove currently fails on test 8, but the other succeeding
tests prove that this change is fine.

Signed-off-by: Mark Tompsett <mtompset@hotmail.com>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
All tests pass on my installation.
No problems found.

Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Reserves.pm