»ö« Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or rakudo:, or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_logs/perl6 | UTF-8 is our friend!
Set by moritz on 22 December 2015.
00:10 khw left 00:16 nige left 00:17 Zoffix joined
Zoffix You have $/ in { } too 00:17
Altreus: / { ... } / just executes some code inside the regex (and updates $/ and ends Longest Term Matching); / <{ ... }> / executes the code and uses the return value as a regex / <?{ ... }> / executes the code and uses the return value in boolean context to determine whether this zero-width match should succeed or not 00:19
m: say "Zoffix is great" ~~ / Zoffix (.+) <?{ $/[0].contains: any <great awesome nice> }> / 00:20
camelia 「Zoffix is great」
0 => 「 is great」
Zoffix m: say "Zoffix is meh" ~~ / Zoffix (.+) <?{ $/[0].contains: any <great awesome nice> }> /
camelia Nil
Zoffix Altreus: also TAP::Parser is another example of grammary things
jnthn $/[0] is probably more commonly written as $0, fwiw :)
Zoffix Oh man. Right. I always wrote it as $/[0] outside of regex lol :) 00:21
jnthn (They later is sugar for the former)
Zoffix eco: TAP::Parser
buggable Zoffix, Nothing found
Zoffix eco: TAP::Harness
buggable Zoffix, TAP::Harness 'TAP harness for perl6': github.com/perl6/tap-harness6
Zoffix Altreus: ^ that, I meant.
leont Yeah, it's grammary, with a hack to preprocess the input so we get it in the right size chunks (otherwise grammars would trip over incomplete input) 00:23
00:23 khw joined, wamba joined 00:24 Zoffix left, markong left
leont YAML is my going overboard with grammars project, parsing much more of YAML seems to require doing things that aren't clean parsing anymore 00:24
00:28 cdg joined
Altreus wasn't me that asked that but thanks for the other bit :) 00:29
00:32 cdg left
timotimo $0, $1, ... as well as $<foo>, $<bar>, ... are the reason i sometimes bind things that don't have anything to do with string matching to the $/ variable 00:37
jnthn Can't tell if clever or way too clever :P 00:38
00:39 Geth left, Geth joined, ChanServ sets mode: +v Geth
timotimo tbf, .<abc> is the same length as $<abc>, so maybe i should go with that more often. on the other hand, you can just write $<foo> inside a double-quoted string, whereas you'd have to spell out $_.<foo> for the other thing 00:39
well, $_<foo> also works 00:41
jnthn Very true :)
00:42 raschipi joined 00:48 sortiz left 00:54 pecastro left 01:04 aborazmeh joined, aborazmeh left, aborazmeh joined 01:14 mempko joined 01:16 wamba left, setty1 left 01:19 bwisti left 01:20 leont left 01:26 epony left 01:47 benjisomething joined
benjisomething Hey, does anyone here know who runs `perlmaven` 01:48
or `perl6maven`, sorry
01:53 yoleaux joined, ChanServ sets mode: +v yoleaux, epony joined 01:55 epony left 01:56 epony joined
raschipi benjisomething: github.com/szabgab 01:56
yoleaux 19 Jan 2018 20:47Z <Xliff_> raschipi: Oh. LOL. Missed the '_'
benjisomething Ah, thanks 01:57
I was guessing he might be in this IRC, but now I suppose he isn't
raschipi Not right now
benjisomething Does anyone here still use that old editor "Padre" 01:58
made by him
Seems like the website is fairly dead, with the last update coming in 2013 01:59
raschipi szabgab was last active 2 days ago according to the logs: irclog.perlgeek.de/perl6/search/?n...gab&q= 02:00
benjisomething I see 02:01
raschipi benjisomething: People have been talking about it in use last year, so I suppose it works: irclog.perlgeek.de/perl6/search/?n...mp;q=padre 02:04
benjisomething I see, thanks 02:08
raschipi np 02:19
02:26 setty1 joined, benjisomething left 02:29 BenGoldberg joined 02:31 khisanth_ left 02:39 cdg joined 02:43 solarbunny left 02:44 cdg left 02:45 khisanth_ joined 02:46 lucs joined, ilbot3 left 02:57 ilbot3 joined, ChanServ sets mode: +v ilbot3 03:00 squashable6 left, squashable6 joined, ChanServ sets mode: +v squashable6 03:02 mempko left 03:04 AlexDaniel left 03:05 AlexDaniel joined 03:08 eliasr left, khw left 03:20 khw joined 03:30 mempko joined 03:33 Voldenet left 03:34 setty1 left 03:39 Voldenet joined, Voldenet left, Voldenet joined 03:50 cdg joined 03:52 ufobat_ joined 03:55 cdg left, ufobat left 03:57 bloatable6 left, bloatable6 joined 03:58 unicodable6 left, unicodable6 joined 04:02 notbenh left 04:13 notbenh joined 04:34 Cabanossi left 04:35 Cabanoss- joined, Cabanoss- is now known as Cabanossi 04:41 BenGoldberg left 04:51 konsolebox left 04:53 konsolebox joined 04:56 JimmyZ joined 05:02 khw left 05:04 raschipi left 05:06 aborazmeh left 05:07 konsolebox left 05:10 konsolebox joined 05:33 konsolebox left 05:35 konsolebox joined 05:46 sena_kun joined, sena_kun left 05:50 committable6 left, statisfiable6 left, committable6 joined, vichib left, statisfiable6 joined, ChanServ sets mode: +v statisfiable6 06:05 nige joined 06:06 cdg joined 06:11 cdg left 06:16 seeg joined 06:18 konsolebox left
seeg hello, i just learned about perl6 grammars, they remind me of logstash' grok function: www.elastic.co/guide/en/logstash/c...-grok.html 06:18
06:18 konsolebox joined
seeg is it possible in perl6 to combine smaller grammars into a bigger one? i can't find it in the docs 06:19
also this tool for the 'grok' plugin grokdebug.herokuapp.com/ is quite nice as it allows for auto-discovery of the grammar components from raw text, is there something similar in perl6? :)
06:27 Zoffix joined
Zoffix seeg: yeah, grammars are just classes. You can subclass them or make roles and mix them in 06:28
seeg: bottom of this section has a small example of subclassing original "Calculator" grammar and its actions class to add more features to it: docs.perl6.org/language/grammars#Proto_regexes 06:29
seeg ah ok great thanks
Xliff_ seeg: I think that "auto-discovery" is the site running through all of its predefined patterns until it finds the first thing that matches. 06:38
It would be interesting if it applies some heuristic to determine which match is "best"
seeg there are many possibilities here i guess, starting from "get first that matches" to something like "get the most optimal one that tries to match the whole string with minimal number of patterns" 06:40
06:47 Zoffix left 06:50 darutoko joined 06:54 sivoais left 07:04 sivoais joined
buggable New CPAN upload: Terminal-Getpass-0.0.1.tar.gz by TITSUKI cpan.metacpan.org/authors/id/T/TI/...0.1.tar.gz 07:32
New CPAN upload: Terminal-Getpass-0.0.2.tar.gz by TITSUKI cpan.metacpan.org/authors/id/T/TI/...0.2.tar.gz 07:42
07:47 konsolebox left 07:48 konsolebox joined
titsuki I made Terminal::Getpass, but it seems that it doesn't hide its input on OSX environment. Does anyone know how to fix it? 07:49
The code is here: github.com/titsuki/p6-Terminal-Getpass 07:50
08:26 player joined
player Hi. Where modules installed by Zef are located? Thanks. 08:27
08:30 nige left, leah2 left 08:34 cdg joined 08:39 cdg left 08:42 rindolf joined 08:46 leah2 joined
titsuki OK. I found the difference between OSX and UNIX in termios. They use different bit position for ECHO flag. 08:52
08:54 seeg left 08:56 sjoshi joined, player left 08:58 konsolebox left 09:00 konsolebox joined 09:04 domidumont joined 09:05 konsolebox left 09:06 konsolebox joined, Zoffix joined, seeg joined 09:07 vichib joined
Zoffix player, use zef's `locate` command (e.g `zef locate TAP::Harness`). Note that that gives you location of the source code, but the actual module is installed precompiled bytecode; i.e. modifying that source code won't modify the module 09:07
09:10 domidumont left, domidumont joined 09:11 seeg left 09:18 konsolebox left 09:20 konsolebox joined 09:25 konsolebox left, sjoshi left 09:26 konsolebox joined 09:31 konsolebox left 09:32 konsolebox joined 09:36 Zoffix left 09:37 leah2 left 09:39 sjoshi joined, konsolebox left 09:41 konsolebox joined, AlexDaniel left
Geth doc: 6229a9ee64 | (JJ Merelo)++ | doc/Type/Signature.pod6
Changed the example of the :U smiley

The previous one actually did not use the declared parameter. This one is an actual use case for it, even if it does not follow the
  `limit-lines` example so far. Hope it's better now.
09:45
synopsebot Link: doc.perl6.org/type/Signature
09:50 leah2 joined 10:03 yoleaux left, yoleaux joined, ChanServ sets mode: +v yoleaux 10:20 nige joined, nige left 10:37 TEttinger left 10:40 yoleaux left, yoleaux joined, ChanServ sets mode: +v yoleaux 10:46 domidumont left 10:47 wamba joined 10:50 cdg joined 10:55 cdg left 10:59 Zoffix joined
Zoffix \o Any idea what's the reasoning for `readline` to keep attempting to read from STDIN once EOF is reached? Is it just because C's read() would block (I'm guessing) on TTYs and wait for stuff but not do so for non-TTYs? 11:01
Trying to figure out if there's a deeper reason for allow this behaviour; e.g. that in this script you have to press CTRL+D on each loop iteraton: rt.perl.org/Ticket/Attachment/1435...lti-eof.pl
Oops. wc 11:02
11:03 Zoffix left 11:06 setty1 joined
teatime wut. where did Zoffix go 11:12
11:13 Grrrr joined 11:22 konsolebox left
titsuki Does anyone know the way to get macro constant (e.g. #define PI 3.14) in C header with basic feature of NativeCall? 11:22
11:22 markong joined 11:23 konsolebox joined
moritz titsuki: you don't; they are a purely syntactic feature of the header files, and are not reflected in the object files 11:26
11:27 Nanjizal joined
titsuki moriz: Thanks! I'll seek another way. 11:27
*moritz
Nanjizal Is Str the basic String class in Perl6 ?
or basic Type? 11:28
moritz Nanjizal: what do you mean by "basic"? 11:30
11:31 leont joined
Nanjizal Well it says it's immutable but I wanted a mutable structure. I was experimenting with Haxe Compiler and wondering about implementation of a String for Perl. 11:43
It seems many base structures of Perl are immutable by design and then they have mutable ones above? 11:45
moritz the interesting thing about Str is that they are based on grapheme clusters, not on codepoints
there is no real mutable string type
11:48 releasable6 left, releasable6 joined
psch there's something about "we'd have to know that appeneded mutStr are already NFG" and "we'd have to know that parts removed form a full grapheme" that isn't really solvalbe, isn't there? 11:54
my NFG knowledge is still very limited 11:55
m: say "f̉̌͊͂͊̎͒҉͚̯̲̝o􏿽xCC􏿽x8D􏿽xCC􏿽x93􏿽xCD􏿽xAB􏿽xCC􏿽x92􏿽xCC􏿽x91􏿽xCD􏿽xA4􏿽xCC􏿽x8E􏿽xCC􏿽x88􏿽xCD􏿽xA3􏿽xCC􏿽x82􏿽xCC􏿽x8E􏿽xCC􏿽xBF􏿽xCC􏿽x89􏿽xCD􏿽x82􏿽xCD􏿽xA3􏿽xCD􏿽xA8􏿽xCC􏿽x86􏿽xCD􏿽x9F􏿽xCC􏿽x95􏿽xCC􏿽xB5􏿽xCD􏿽xA0􏿽xCC􏿽xBA􏿽xCD􏿽x87􏿽xCC􏿽xA0􏿽xCC􏿽xA4􏿽xCC􏿽xAD􏿽xCC􏿽x99􏿽xCC􏿽x96􏿽xCC􏿽xA4􏿽xCD􏿽x96􏿽xCD􏿽x85o􏿽xCD􏿽x86􏿽xCD􏿽xA9􏿽xCC􏿽x8C􏿽xCD􏿽x8A􏿽xCC􏿽x8E􏿽xCD􏿽xAE􏿽xCC􏿽xBF􏿽xCC􏿽x8A􏿽xCC􏿽x8F􏿽xCC􏿽xBE􏿽xCC􏿽x9B􏿽xCD􏿽x9F􏿽xCC􏿽xB4􏿽xCD􏿽xA1􏿽xCD􏿽x85􏿽xCC􏿽x98􏿽xCC􏿽xA0􏿽xCC􏿽xB2􏿽xCD􏿽x8E􏿽xCD􏿽x8E􏿽xCC􏿽x9C􏿽xCC􏿽xB9􏿽xCC􏿽x98􏿽xCC􏿽xBA􏿽xCC􏿽xB2􏿽xCC􏿽x9C􏿽xCC􏿽xAA􏿽xCC􏿽xAF􏿽xCD􏿽x87􏿽xCC􏿽x9D".chars 11:56
camelia 3
psch m: say +"f̉̌͊͂͊̎͒҉͚̯̲̝o􏿽xCC􏿽x8D􏿽xCC􏿽x93􏿽xCD􏿽xAB􏿽xCC􏿽x92􏿽xCC􏿽x91􏿽xCD􏿽xA4􏿽xCC􏿽x8E􏿽xCC􏿽x88􏿽xCD􏿽xA3􏿽xCC􏿽x82􏿽xCC􏿽x8E􏿽xCC􏿽xBF􏿽xCC􏿽x89􏿽xCD􏿽x82􏿽xCD􏿽xA3􏿽xCD􏿽xA8􏿽xCC􏿽x86􏿽xCD􏿽x9F􏿽xCC􏿽x95􏿽xCC􏿽xB5􏿽xCD􏿽xA0􏿽xCC􏿽xBA􏿽xCD􏿽x87􏿽xCC􏿽xA0􏿽xCC􏿽xA4􏿽xCC􏿽xAD􏿽xCC􏿽x99􏿽xCC􏿽x96􏿽xCC􏿽xA4􏿽xCD􏿽x96􏿽xCD􏿽x85o􏿽xCD􏿽x86􏿽xCD􏿽xA9􏿽xCC􏿽x8C􏿽xCD􏿽x8A􏿽xCC􏿽x8E􏿽xCD􏿽xAE􏿽xCC􏿽xBF􏿽xCC􏿽x8A􏿽xCC􏿽x8F􏿽xCC􏿽xBE􏿽xCC􏿽x9B􏿽xCD􏿽x9F􏿽xCC􏿽xB4􏿽xCD􏿽xA1􏿽xCD􏿽x85􏿽xCC􏿽x98􏿽xCC􏿽xA0􏿽xCC􏿽xB2􏿽xCD􏿽x8E􏿽xCD􏿽x8E􏿽xCC􏿽x9C􏿽xCC􏿽xB9􏿽xCC􏿽x98􏿽xCC􏿽xBA􏿽xCC􏿽xB2􏿽xCC􏿽x9C􏿽xCC􏿽xAA􏿽xCC􏿽xAF􏿽xCD􏿽x87􏿽xCC􏿽x9D".ords 11:58
camelia 75
12:08 eliasr joined
Geth doc/MARTIMM-patch-1: a5d932d64c | (Marcel Timmerman)++ (committed using GitHub Web editor) | doc/Language/regexes.pod6
first call to show_captures has wrong number of arguments in section Backtracking

In the first example where show_captures is defined, the call to it has also $string as its second argument(line 1937). this is not used in the sub signature.
Furthermore a small typo on line 1917 (matched instead of match).
12:14
12:15 AlexDaniel joined
Geth doc: MARTIMM++ created pull request #1735:
first call to show_captures has wrong number of arguments in section Backtracking
12:16
12:20 sjoshi left 12:23 AlexDaniel left 12:35 sjoshi joined 12:36 greppable6 left, benchable6 left, coverable6 left, reportable6 left, greppable6 joined, benchable6 joined, coverable6 joined, reportable6 joined, ChanServ sets mode: +v reportable6 12:39 travis-ci joined
travis-ci Doc build passed. Marcel Timmerman 'first call to show_captures has wrong number of arguments in section Backtracking 12:39
travis-ci.org/perl6/doc/builds/331173194 github.com/perl6/doc/commit/a5d932d64cce
12:39 travis-ci left, konsolebox left 12:41 sjoshi left 12:42 konsolebox joined, sjoshi joined 12:44 yoleaux left 12:45 yoleaux joined, ChanServ sets mode: +v yoleaux 12:59 sjoshi left 13:05 AlexDaniel joined 13:12 sjoshi joined 13:15 vichib left 13:18 konsolebox left 13:19 konsolebox joined 13:24 natrys joined 13:25 leah2 left, stmuk_ joined 13:26 sjoshi left 13:27 sjoshi joined, stmuk left
lizmat is tired after responding to many comments on reddit 13:34
13:35 foobar` left
psch lizmat++ 13:36
reddit is harsh
moritz people are harsh :( 13:42
13:47 Nanjizal left
teatime I could not advocate perl on reddit. reddit is way too harsh. I'd burn out instantly. 13:47
and/or I'm already burned out on arguing about whether perl sucks. (it doesn't.) 13:48
AlexDaniel I'm surprised that people like “rakudo” as a name
teatime took me a while to finally internalize that it's not raduko. otherwise, seems fine to me.
I mean, it's easier to google than Go :) 13:49
stmuk_ I've had troll attacks from rust people posting about go on both reddit & twitter -- so its not just a perl problem 13:50
me posting about go I mean
teatime it's like, two problems, the other one being that reddit can be so infuriating. 13:52
and they would combine into the perfect storm.
lizmat++
14:09 jeromelanteri left 14:11 leah2 joined, leah2 left 14:12 pmurias joined 14:14 leah2 joined, bisectable6 left, bisectable6 joined, ChanServ sets mode: +v bisectable6 14:21 leah2 left 14:25 espadrine left
titsuki I found a way to leverage macro constants in a header file with helper functions!: github.com/krunen/term-termios/pull/11 14:26
14:34 BenGoldberg joined, Nanjizal joined 14:35 leah2 joined 14:47 pmurias left 15:01 pmurias joined 15:05 s0me0n3-unkn0wn left 15:07 Sgeo_ joined 15:09 Sgeo left 15:16 Ben_Goldberg joined, BenGoldberg left, Ben_Goldberg is now known as BenGoldberg 15:49 khw joined 16:02 domidumont joined 16:04 sjoshi left 16:14 pecastro joined
Geth doc: 9f77ed7475 | (Jan-Olof Hendig)++ | doc/Type/WhateverCode.pod6
Remove duplicate line
16:20
synopsebot Link: doc.perl6.org/type/WhateverCode
buggable New CPAN upload: Terminal-Getpass-0.0.3.tar.gz by TITSUKI cpan.metacpan.org/authors/id/T/TI/...0.3.tar.gz 16:22
16:33 Nanjizal left
Geth doc: 6b6060aec6 | (Jan-Olof Hendig)++ | doc/Type/utf8.pod6
Fix typo in example output
16:34
synopsebot Link: doc.perl6.org/type/utf8
16:35 yoleaux left 16:36 yoleaux joined, ChanServ sets mode: +v yoleaux, elementaru joined
leont reddit is reddit. I've seen far worse than the perl ones :-/ 16:47
17:01 natrys left 17:02 sjoshi joined 17:04 zakharyas joined 17:12 pecastro left
teatime TIL that ^D doesn't close the stdin stream, and a program can receive multiple EOF's 17:14
moritz I object to the sentiment behind "reddit is reddit." People should be civil everywhere, and being on a traditionally hostile platform is no excuse for such behavior 17:16
and we shouldn't simply accept that hostility as the new norm 17:17
17:17 combo joined
b2gills lizmat's blog was referenced at sdtimes.com/android/sd-times-news-...ing-round/ 17:19
17:19 yqt joined
lizmat yikes :-) 17:20
dinner& 17:21
geekosaur teatime, ^D just sends what's in the terminal buffer. if it's the start of a line then that will be nothing, resulting in a zero length read that is taken as EOF 17:23
17:28 zakharyas left 17:29 zakharyas joined 17:31 espadrine joined 17:32 Nanjizal joined 17:40 natrys joined 17:46 yoleaux left 17:57 Nanjizal left 17:58 combo left 18:03 darutoko left 18:06 stux|RC left 18:08 zakharyas left 18:13 Nanjizal joined 18:20 zakharyas joined 18:21 zakharyas left, zakharyas joined 18:24 zakharyas left
BenGoldberg moritz, Does that mean that you would also expect people on 4chan to be nice and polite, too? 18:26
moritz BenGoldberg: the word "expectation" has several meanings, I think 18:31
BenGoldberg: if you ask me for my predition on how they behave, I'd say "not nice"
18:32 sjoshi left, Nanjizal left
moritz BenGoldberg: but when talking about expectation in the sense of social norms, my answer is that they should limit their non-niceness to people who have chosen to be part of that community, not "innocent" strangers 18:32
18:33 zakharyas joined, sjoshi joined 18:41 nativecallable6 left, nativecallable6 joined 18:48 cdg joined 18:53 stmuk joined 18:55 stmuk_ left 19:00 leont left
lizmat afk until tomorrow probably& 19:01
19:03 cdg left 19:04 cdg joined 19:05 stux|RC joined 19:09 cdg left
buggable New CPAN upload: Sparrowdo-0.0.37.tar.gz by MELEZHIK cpan.metacpan.org/authors/id/M/ME/....37.tar.gz 19:12
19:26 stmuk_ joined 19:27 stmuk left 19:34 Ven`` joined 19:36 quotable6 left, quotable6 joined 19:40 setty1 left 19:46 yoleaux joined, ChanServ sets mode: +v yoleaux
rindolf moritz: i agree with your sentiments about trying to be better than the social norm 19:46
19:50 yoleaux left, yoleaux joined, ChanServ sets mode: +v yoleaux
preaction especially if Perl.com is linking to you as the place to make comments? 19:53
if r/perl is given official status (which it looks like it is), then r/perl is the official face of the community. so, look at your face, community... 19:55
moritz is perl.com in any way official/authorotative?
DrForr It has a .com in it, so in the minds of people new to the discussion it will be. 19:56
preaction the official announcement says The Perl Foundation is its "custodian"
www.perl.com/article/welcome-back-perl-com/
DrForr Maybe I should get an account there and add my blog postings, just to see how much traffic I can draw. 19:58
preaction the about page says it's "managed by The Perl Foundation"
so, not sure how official something can get in Perl-land, but it seems pretty official to me 19:59
i consider Perl.com an opportunity to have a community news / announcement pipeline. but then i realize that the TPC::NA announcement isn't up there and realize that's probably not happening 20:00
DrForr Maybe someone should submit it? 20:01
20:05 Nanjizal joined 20:07 domidumont left 20:10 Nanjizal left
preaction i would, but i expended all my community energy for the weekend in the reddit thread that shall not be named... 20:12
20:23 dmaestro joined 20:29 yoleaux left 20:30 yoleaux joined, ChanServ sets mode: +v yoleaux 20:38 TEttinger joined
stmuk_ . o O ( I should never publish this blog I'm writing ) 20:39
dmaestro I'm having trouble using modules and namespaces. I've read the relevant docs on perl6.org, but haven't found a rule or example that describes what I'm trying to do. Hoping someone can help me or point me in the right direction. 20:45
Example code at github.com/dmaestro/p6-packages 20:46
I want to share an outer namespace between related modules but get this error: ===SORRY!=== P6M Merging GLOBAL symbols failed: duplicate definition of symbol Shared 20:47
I'm pretty sure I'm violating some rule about namespacing; but there ought to be a way to do this ... 20:48
20:50 evalable6 left 20:51 evalable6 joined, ChanServ sets mode: +v evalable6 20:54 MasterDuke joined 21:02 cdg joined 21:03 Nanjizal joined, stux|RC left 21:04 yoleaux left, yoleaux joined, ChanServ sets mode: +v yoleaux 21:06 cdg left 21:07 stux|RC joined 21:10 Ven`` left 21:20 Nanjizal left 21:29 pecastro joined 21:32 sjoshi left 21:33 sjoshi joined 21:38 foobar` joined 21:44 pecastro left 21:55 trnh joined 21:57 mempko left 21:59 Ben_Goldberg joined, BenGoldberg left, Ben_Goldberg is now known as BenGoldberg 22:02 sjoshi left 22:03 sjoshi joined 22:05 notbenh_ left, SHODAN left, AlexDaniel` left, ilmari left, DarthGandalf left, nekomune left, SHODAN joined, gabiruh_ joined, ecocode joined, KotH joined, ilmari joined, ilmari left, ilmari joined, riatre joined, kent\n joined, pierrot joined, DarthGandalf joined 22:06 lumimies joined, cdg joined, zostay joined, notbenh_ joined 22:07 Garland_g[m] joined, stux|RC left, nativecallable6 left, committable6 left, unicodable6 left 22:08 dg joined, mack[m] joined, quotable6 left, coverable6 left, benchable6 left, greppable6 left, releasable6 left, bloatable6 left 22:09 sjoshi left, AlexDaniel` joined 22:11 stux|RC joined, nekomune joined, cdg left 22:19 natrys left 22:22 squashable6 left, squashable6 joined, ChanServ sets mode: +v squashable6, unicodable6 joined, committable6 joined, ChanServ sets mode: +v committable6, bloatable6 joined 22:25 elementaru left 22:41 mempko joined 22:42 zakharyas left 22:46 mtj_ left 22:48 cdg joined 22:53 cdg left 22:59 mrsolo left, SmokeMachine joined, parisba joined, mrsolo joined 23:01 geekosaur left, mienaikage left 23:03 CIAvash[m] joined, geekosaur joined 23:04 mienaikage joined 23:05 wictory[m] joined 23:07 pecastro joined 23:11 yqt left 23:13 cdg joined
Geth doc: 5812800509 | (Marcel Timmerman)++ (committed by Zoffix Znet) | doc/Language/regexes.pod6
first call to show_captures has wrong number of arguments in section Backtracking (#1735)

In the first example where show_captures is defined, the call to it has also $string as its second argument(line 1937). this is not used in the sub signature.
Furthermore a small typo on line 1917 (matched instead of match).
23:16
synopsebot Link: doc.perl6.org/language/regexes
23:16 lizmat left
Geth doc: b95b5c6cf5 | (Zoffix Znet)++ (committed using GitHub Web editor) | doc/Language/regexes.pod6
Apply code suggestions

From github.com/perl6/doc/pull/1735#dis...r162783203
23:18
23:18 cdg left 23:19 lizmat joined 23:28 pecastro left 23:40 pecastro joined 23:50 trnh left