Thread (5 messages) flat view 5 messages, 4 authors, 2016-06-15

Re: Git-mediawiki : Encoding problems in perl

From: Jeff King <hidden>
Date: 2016-06-15 22:51:26

On Wed, Jun 08, 2011 at 06:15:15PM +0200, Jérémie NIKAES wrote:
2011/6/8 Matthieu Moy [off-list ref]:
quoted
there should probably have been a $/ = 1; or some other perl magic to
make sure we don't read only the first line there:
Yes, it indeed currently reads only the first line. I'm going to see
what kind of magic I need to use.
You need to set $/ to undef. Use "local" to prevent it from polluting
other parts of the code, like:

  my $var = do { local $/; <$handle> };

-Peff
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help