This file is indexed.

/usr/share/doc/perl-doc-html/perl5219delta.html is in perl-doc-html 5.22.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>perl5219delta - perldoc.perl.org</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  <meta http-equiv="Content-Language" content="en-gb">
  <link rel="search" type="application/opensearchdescription+xml" title="Search perldoc.perl.org" href="/static/search.xml"/>
  <link href="static/css-20100830.css" rel="stylesheet" rev="stylesheet" type="text/css" media="screen">
  <link href="static/exploreperl.css" rel="stylesheet" rev="stylesheet" type="text/css">
</head>

<body onLoad="perldoc.startup();" onPageShow="if (event.persisted) perldoc.startup();">
    <div id="page">
      
      <div id="header">
	<div id="homepage_link">
	  <a href="index.html"></a>
	</div>
	<div id="strapline">
	  Perl Programming Documentation
	</div>
	<div id="download_link" class="download">
	  <a href="http://www.perl.org/get.html">Download Perl</a>
	</div>
	<div id="explore_link" class="download">
	  <a id="explore_anchor" href="#">Explore</a>
	</div>
      </div>
      
      <div id="body">
        <div id="left_column">
          <div class="side_group">
            
	    <div class="side_panel doc_panel">
              <p>Manual</p>
              <ul>
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">History / Changes</a>
                <li><a href="index-licence.html">License</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Reference</p>
              <ul>
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Special Variables</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platform Specific</a>
              </ul>
            </div>
            <div class="side_panel doc_panel">
              <p>Modules</p>
              <ul>
		<li>
		
                
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		    
		  
		
                  
		
                  
		
                  
		    
		  
		
                  
		
                  
		
		
                    <a href="index-modules-A.html">A</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-B.html">B</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-C.html">C</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-D.html">D</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-E.html">E</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-F.html">F</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-G.html">G</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-H.html">H</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-I.html">I</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-L.html">L</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-M.html">M</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-N.html">N</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-O.html">O</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-P.html">P</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-S.html">S</a>
                    
                      
                        <li>
                      
                    
                
                    <a href="index-modules-T.html">T</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-U.html">U</a>
                    
                      
                        &bull;
                      
                    
                
                    <a href="index-modules-X.html">X</a>
                    
                
              </ul>
            </div>
            
	      <div class="side_panel doc_panel">
		<p>Tools</p>
		<ul>
		  <li><a href="preferences.html">Preferences</a>
		</ul>
	      </div>
            
          </div>
        </div>
        <div id="centre_column">
          <div id="content_header">
            <div id="title_bar">
              <div id="page_name">
                <h1>perl5219delta</h1>
              </div>
              <div id="perl_version">
                Perl 5 version 22.0 documentation
              </div>
              <div class="page_links" id="page_links_top">
                <a href="#" onClick="toolbar.goToTop();return false;">Go to top</a>
		
              </div>
	      <div class="page_links" id="page_links_bottom">
		
                  <a href="#" id="page_index_toggle">Show page index</a> &bull;
		
                <a href="#" id="recent_pages_toggle">Show recent pages</a>		
	      </div>
	      <div id="search_form">
		<form action="search.html" method="GET" id="search">
		  <input type="text" name="q" id="search_box" alt="Search">
		</form>
	      </div>
            </div>
            <div id="breadcrumbs">
                
    <a href="index.html">Home</a> &gt;
    
      
        <a href="index-history.html">History / Changes</a> &gt;
      
    
    perl5219delta
  

            </div>
          </div>
          <div id="content_body">
	    <!--[if lt IE 7]>
 <div class="noscript">
   <p>
     <strong>It looks like you're using Internet Explorer 6. This is a very old
     browser which does not offer full support for modern websites.</strong>
   </p>
   <p>
     Unfortunately this means that this website will not work on
     your computer.
   </p>
   <p>
     Don't miss out though! To view the site (and get a better experience from
     many other websites), simply upgrade to
     <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet
Explorer 8</a>
     or download an alternative browser such as
     <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>,
     <a href="http://www.apple.com/safari/download/">Safari</a>, or
     <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
   </p>
   <p>
     All of these browsers are free. If you're using a PC at work, you may
     need to contact your IT administrator.
   </p>
 </div>
<![endif]-->
	    <noscript>
	      <div class="noscript">
	      <p>
                <strong>Please note: Many features of this site require JavaScript. You appear to have JavaScript disabled,
	        or are running a non-JavaScript capable web browser.</strong>
	      </p>
	      <p>
		To get the best experience, please enable JavaScript or download a modern web browser such as <a href="http://www.microsoft.com/windows/Internet-explorer/default.aspx">Internet Explorer 8</a>, <a href="http://www.mozilla.com/en-US/firefox/firefox.html">Firefox</a>, <a href="http://www.apple.com/safari/download/">Safari</a>, or <a href="http://www.google.co.uk/chrome">Google Chrome</a>.
              </p>
	      </div>
	    </noscript>

	    <div id="recent_pages" class="hud_container">
	      <div id="recent_pages_header" class="hud_header">
		<div id="recent_pages_close" class="hud_close"><a href="#" onClick="recentPages.hide();return false;"></a></div>
		<div id="recent_pages_title" class="hud_title"><span class="hud_span_top">Recently read</span></div>
		<div id="recent_pages_topright" class="hud_topright"></div>
	      </div>
	      <div id="recent_pages_content" class="hud_content">
	      </div>
	      <div id="recent_pages_footer" class="hud_footer">
		<div id="recent_pages_bottomleft" class="hud_bottomleft"></div>
		<div id="recent_pages_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
		<div id="recent_pages_resize" class="hud_resize"></div>
	      </div>
	    </div>
  
	    <div id="from_search"></div>
            <h1>perl5219delta</h1>


  <!--    -->
<ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#Notice">Notice</a><li><a href="#Core-Enhancements">Core Enhancements</a><ul><li><a href="#qr%2f%5cb%7bgcb%7d%2f-is-now-handled-in-regular-expressions">qr/\b{gcb}/ is now handled in regular expressions</a><li><a href="#qr%2f%5cb%7bwb%7d%2f-is-now-handled-in-regular-expressions">qr/\b{wb}/ is now handled in regular expressions</a><li><a href="#qr%2f%5cb%7bsb%7d%2f-is-now-handled-in-regular-expressions">qr/\b{sb}/ is now handled in regular expressions</a><li><a href="#New-bitwise-operators">New bitwise operators</a><li><a href="#no-re-covers-more-and-is-lexical">no re covers more and is lexical</a></ul><li><a href="#Incompatible-Changes">Incompatible Changes</a><li><a href="#Modules-and-Pragmata">Modules and Pragmata</a><ul><li><a href="#Updated-Modules-and-Pragmata">Updated Modules and Pragmata</a></ul><li><a href="#Documentation">Documentation</a><ul><li><a href="#New-Documentation">New Documentation</a><li><a href="#Changes-to-Existing-Documentation">Changes to Existing Documentation</a></ul><li><a href="#Diagnostics">Diagnostics</a><ul><li><a href="#New-Diagnostics">New Diagnostics</a><li><a href="#Changes-to-Existing-Diagnostics">Changes to Existing Diagnostics</a></ul><li><a href="#Utility-Changes">Utility Changes</a><ul><li><a href="#the-h2ph-manpage">the h2ph manpage</a><li><a href="#the-encguess-manpage">the encguess manpage</a></ul><li><a href="#Configuration-and-Compilation">Configuration and Compilation</a><li><a href="#Testing">Testing</a><li><a href="#Deprecations">Deprecations</a><ul><li><a href="#Support-for-new-warnings-categories-outside-of-%22all%22">Support for new warnings categories outside of "all"</a></ul><li><a href="#Platform-Support">Platform Support</a><ul><li><a href="#Platform-Specific-Notes">Platform-Specific Notes</a></ul><li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a><li><a href="#Acknowledgements">Acknowledgements</a><li><a href="#Reporting-Bugs">Reporting Bugs</a><li><a href="#SEE-ALSO">SEE ALSO</a></ul><a name="NAME"></a><h1>NAME</h1>
<p>perl5219delta - what is new for perl v5.21.9</p>
<a name="DESCRIPTION"></a><h1>DESCRIPTION</h1>
<p>This document describes differences between the 5.21.8 release and the 5.21.9
release.</p>
<p>If you are upgrading from an earlier release such as 5.21.7, first read
<a href="perl5218delta.html">perl5218delta</a>, which describes differences between 5.21.7 and 5.21.8.</p>
<a name="Notice"></a><h1>Notice</h1>
<p>With this release we are now in the user-visible changes portion of the code
freeze as we prepare for the next stable release of Perl 5.</p>
<a name="Core-Enhancements"></a><h1>Core Enhancements</h1>
<a name="qr%2f%5cb%7bgcb%7d%2f-is-now-handled-in-regular-expressions"></a><h2>qr/\b{gcb}/ is now handled in regular expressions</h2>
<p><code class="inline"><span class="w">gcb</span></code>
 stands for Grapheme Cluster Boundary.  It is a Unicode property
that finds the boundary between sequences of characters that look like a
single character to a native speaker of a language.  Perl has long had
the ability to deal with these through the <code class="inline">\<span class="w">X</span></code>
 regular escape
sequence.  Now, there is an alternative way of handling these.  See
<a href="perlrebackslash.html#%5cb%7b%7d%2c-%5cb%2c-%5cB%7b%7d%2c-%5cB">\b{}, \b, \B{}, \B in perlrebackslash</a> for details.</p>
<a name="qr%2f%5cb%7bwb%7d%2f-is-now-handled-in-regular-expressions"></a><h2>qr/\b{wb}/ is now handled in regular expressions</h2>
<p><code class="inline"><span class="w">wb</span></code>
 stands for Word Boundary.  It is a Unicode property
that finds the boundary between words.  This is similar to the plain
<code class="inline">\<span class="w">b</span></code>
 (without braces) but is more suitable for natural language
processing.  It knows, for example that apostrophes can occur in the
middle of words.  See <a href="perlrebackslash.html#%5cb%7b%7d%2c-%5cb%2c-%5cB%7b%7d%2c-%5cB">\b{}, \b, \B{}, \B in perlrebackslash</a> for details.</p>
<a name="qr%2f%5cb%7bsb%7d%2f-is-now-handled-in-regular-expressions"></a><h2>qr/\b{sb}/ is now handled in regular expressions</h2>
<p><code class="inline"><span class="w">sb</span></code>
 stands for Sentence Boundary.  It is a Unicode property
to aid in parsing natural language sentences.
See <a href="perlrebackslash.html#%5cb%7b%7d%2c-%5cb%2c-%5cB%7b%7d%2c-%5cB">\b{}, \b, \B{}, \B in perlrebackslash</a> for details.</p>
<a name="New-bitwise-operators"></a><h2>New bitwise operators</h2>
<p>A new experimental facility has been added that makes the four standard
bitwise operators (<code class="inline"><span class="i">&amp; |</span> ^ ~</code>
) treat their operands consistently as
numbers, and introduces four new dotted operators (<code class="inline"><span class="i">&amp;.</span> |. ^. ~.</code>
) that
treat their operands consistently as strings.  The same applies to the
assignment variants (<code class="inline">&amp;= |= ^= <span class="i">&amp;.</span>= |.= ^.=</code>
).</p>
<p>To use this, enable the "bitwise" feature and disable the
"experimental::bitwise" warnings category.  See <a href="perlop.html#Bitwise-String-Operators">Bitwise String Operators in perlop</a> for details.  [rt.perl.org #123466]</p>
<a name="no-re-covers-more-and-is-lexical"></a><h2><code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">re</span></code>
 covers more and is lexical</h2>
<p>Previously running <code class="inline"><a class="l_k" href="functions/no.html">no</a> <span class="w">re</span></code>
 would only turn off a few things. Now it
turns off all the enabled things. For example, previously, you
couldn't turn off debugging, once enabled, inside the same block.</p>
<a name="Incompatible-Changes"></a><h1>Incompatible Changes</h1>
<p>There are no changes intentionally incompatible with 5.21.8.
If any exist, they are bugs, and we request that you submit a
report.  See <a href="#Reporting-Bugs">Reporting Bugs</a> below.</p>
<a name="Modules-and-Pragmata"></a><h1>Modules and Pragmata</h1>
<a name="Updated-Modules-and-Pragmata"></a><h2>Updated Modules and Pragmata</h2>
<ul>
<li>
<p><a href="attributes.html">attributes</a> has been upgraded from version 0.25 to 0.26.</p>
</li>
<li>
<p><a href="B.html">B</a> has been upgraded from version 1.55 to 1.56.</p>
</li>
<li>
<p><a href="B/Debug.html">B::Debug</a> has been upgraded from version 1.22 to 1.23.</p>
</li>
<li>
<p><a href="B/Deparse.html">B::Deparse</a> has been upgraded from version 1.32 to 1.33.</p>
<ul>
<li>
<p>Deparse now provides a defined state sub in inner subs.</p>
</li>
<li>
<p>Since version Perl 5.21.6, Deparse would croak on special constants, but
this has now been fixed.</p>
</li>
</ul>
</li>
<li>
<p><a href="Benchmark.html">Benchmark</a> has been upgraded from version 1.19 to 1.20.</p>
</li>
<li>
<p><a href="bigint.html">bigint</a>, <a href="bignum.html">bignum</a>, <a href="bigrat.html">bigrat</a> have been upgraded to version 0.39.</p>
<p>Document in CAVEATS that using strings as numbers won't always invoke
the big number overloading, and how to invoke it.  [rt.perl.org #123064]</p>
</li>
<li>
<p><a href="bignum.html">bignum</a> has been upgraded from version 0.38 to 0.39.</p>
</li>
<li>
<p><a href="Carp.html">Carp</a> has been upgraded from version 1.34 to 1.35.</p>
<ul>
<li>
<p>Carp now handles non-ASCII platforms better.</p>
</li>
<li>
<p>Off-by-one error fix for Perl &lt; 5.14.</p>
</li>
</ul>
</li>
<li>
<p><a href="Config/Perl/V.html">Config::Perl::V</a> has been upgraded from version 0.22 to 0.23.</p>
</li>
<li>
<p><a href="constant.html">constant</a> has been upgraded from version 1.32 to 1.33.</p>
</li>
<li>
<p><a href="CPAN/Meta/Requirements.html">CPAN::Meta::Requirements</a> has been upgraded from version 2.131 to 2.132</p>
</li>
<li>
<p><a href="Data/Dumper.html">Data::Dumper</a> has been upgraded from version 2.156 to 2.157.</p>
</li>
<li>
<p><a href="Devel/Peek.html">Devel::Peek</a> has been upgraded from version 1.21 to 1.22.</p>
</li>
<li>
<p><a href="DynaLoader.html">DynaLoader</a> has been upgraded from version 1.30 to 1.31.</p>
</li>
<li>
<p><a href="Encode.html">Encode</a> has been upgraded from version 2.67 to 2.70.</p>
<p>Building in C++ mode on Windows now works.</p>
</li>
<li>
<p><a href="encoding.html">encoding</a> has been upgraded from version 2.12 to 2.13.</p>
</li>
<li>
<p><a href="Errno.html">Errno</a> has been upgraded from version 1.22 to 1.23.</p>
<p>Add <code class="inline">-<span class="w">P</span></code>
 to the preprocessor command-line on GCC 5.  GCC added extra
line directives, breaking parsing of error code definitions.  [rt.perl.org
#123784]</p>
</li>
<li>
<p><a href="ExtUtils/Miniperl.html">ExtUtils::Miniperl</a> has been upgraded from version 1.03 to 1.04.</p>
</li>
<li>
<p><a href="feature.html">feature</a> has been upgraded from version 1.39 to 1.40.</p>
</li>
<li>
<p><a href="HTTP/Tiny.html">HTTP::Tiny</a> has been upgraded from version 0.053 to 0.054.</p>
</li>
<li>
<p><a href="Opcode.html">Opcode</a> has been upgraded from version 1.31 to 1.32.</p>
</li>
<li>
<p><a href="overload.html">overload</a> has been upgraded from version 1.24 to 1.25.</p>
</li>
<li>
<p><a href="Perl/OSType.html">Perl::OSType</a> has been upgraded from version 1.007 to 1.008.</p>
</li>
<li>
<p><a href="perlfaq.html">perlfaq</a> has been upgraded from version 5.0150046 to 5.021009.</p>
</li>
<li>
<p><a href="PerlIO/scalar.html">PerlIO::scalar</a> has been upgraded from version 0.21 to 0.22.</p>
<p>Attempting to write at file positions impossible for the platform now
fail early rather than wrapping at 4GB.</p>
</li>
<li>
<p><a href="Pod/Parser.html">Pod::Parser</a> has been upgraded from version 1.62 to 1.63.</p>
</li>
<li>
<p><a href="Pod/Perldoc.html">Pod::Perldoc</a> has been upgraded from version 3.24 to 3.25.</p>
</li>
<li>
<p><a href="POSIX.html">POSIX</a> has been upgraded from version 1.49 to 1.51.</p>
</li>
<li>
<p><a href="re.html">re</a> has been upgraded from version 0.30 to 0.31.</p>
</li>
<li>
<p><a href="Socket.html">Socket</a> has been upgraded from version 2.016 to 2.018.</p>
</li>
<li>
<p><a href="Storable.html">Storable</a> has been upgraded from version 2.52 to 2.53.</p>
</li>
<li>
<p><a href="Test/Simple.html">Test::Simple</a> has been upgraded from version 1.301001_097 to 1.301001_098.</p>
</li>
<li>
<p><a href="threads/shared.html">threads::shared</a> has been upgraded from version 1.47 to 1.48.</p>
</li>
<li>
<p><a href="Unicode/Collate.html">Unicode::Collate</a> has been upgraded from version 1.10 to 1.11.</p>
</li>
<li>
<p><a href="Unicode/UCD.html">Unicode::UCD</a> has been upgraded from version 0.59 to 0.61.</p>
<ul>
<li>
<p>A new function <a href="Unicode/UCD.html#prop_values()">property_values()</a>
has been added to return a given property's possible values.</p>
</li>
<li>
<p>A new function <a href="Unicode/UCD.html#charprop()">charprop()</a>
has been added to return the value of a given property for a given code
point.</p>
</li>
<li>
<p>A new function <a href="Unicode/UCD.html#charprops_all()">charprops_all()</a>
has been added to return the values of all Unicode properties for a
given code point.</p>
</li>
<li>
<p>A bug has been fixed so that <a href="Unicode/UCD.html#prop_aliases()">propaliases()</a>
returns the correct short and long names for the Perl extensions where
it was incorrect.</p>
</li>
<li>
<p>A bug has been fixed so that
<a href="Unicode/UCD.html#prop_value_aliases()">prop_value_aliases()</a>
returns <code class="inline"><a class="l_k" href="functions/undef.html">undef</a></code> instead of a wrong result for properties that are Perl
extensions.</p>
</li>
<li>
<p>This module now works on EBCDIC platforms.</p>
</li>
</ul>
</li>
<li>
<p><a href="http://search.cpan.org/perldoc/VMS::Stdio">VMS::Stdio</a> has been upgraded from version 2.4 to 2.41.</p>
</li>
<li>
<p><a href="warnings.html">warnings</a> has been upgraded from version 1.30 to 1.31.</p>
</li>
<li>
<p><a href="http://search.cpan.org/perldoc/Win32">Win32</a> has been upgraded from version 0.49 to 0.51.</p>
<p>GetOSName() now supports Windows 8.1, and building in C++ mode now works.</p>
</li>
<li>
<p><a href="http://search.cpan.org/perldoc/Win32API::File">Win32API::File</a> has been upgraded from version 0.1201 to 0.1202</p>
<p>Building in C++ mode now works.</p>
</li>
</ul>
<a name="Documentation"></a><h1>Documentation</h1>
<a name="New-Documentation"></a><h2>New Documentation</h2>
<a name="the-perlrebackslash-manpage"></a><h3><a href="perlrebackslash.html">perlrebackslash</a></h3>
<ul>
<li>
<p>Added documentation of <code class="inline">\<span class="i">b</span><span class="s">{</span><span class="w">sb</span><span class="s">}</span></code>
, <code class="inline">\<span class="i">b</span><span class="s">{</span><span class="w">wb</span><span class="s">}</span></code>
, <code class="inline">\<span class="i">b</span><span class="s">{</span><span class="w">gcb</span><span class="s">}</span></code>
, and <code class="inline">\<span class="i">b</span><span class="s">{</span><span class="w">g</span><span class="s">}</span></code>
.</p>
</li>
</ul>
<a name="the-perlrequick-manpage"></a><h3><a href="perlrequick.html">perlrequick</a></h3>
<ul>
<li>
<p>Added example for <code class="inline">\<span class="i">b</span><span class="s">{</span><span class="w">wb</span><span class="s">}</span></code>
.</p>
</li>
</ul>
<a name="the-perlretut-manpage"></a><h3><a href="perlretut.html">perlretut</a></h3>
<ul>
<li>
<p>Added example for <code class="inline">\<span class="i">b</span><span class="s">{</span><span class="w">wb</span><span class="s">}</span></code>
.</p>
</li>
</ul>
<a name="Changes-to-Existing-Documentation"></a><h2>Changes to Existing Documentation</h2>
<a name="the-perlunicode-manpage"></a><h3><a href="perlunicode.html">perlunicode</a></h3>
<ul>
<li>
<p>Update <b>Default Word Boundaries</b> under
<a href="perlunicode.html#Unicode-Regular-Expression-Support-Level">Unicode Regular Expression Support Level in perlunicode</a>'s
<b>Extended Unicode Support</b>.</p>
</li>
</ul>
<a name="the-perlunicook-manpage"></a><h3><a href="perlunicook.html">perlunicook</a></h3>
<ul>
<li>
<p>Clarify that autodie &gt;= 2.26 works with <code class="inline"><a class="l_k" href="functions/use.html">use</a> <a class="l_k" href="functions/open.html">open</a></code>
.</p>
</li>
<li>
<p>Correct warning message for <code class="inline"><a class="l_k" href="functions/use.html">use</a> <span class="w">autodie</span></code>
 and <code class="inline"><a class="l_k" href="functions/use.html">use</a> <a class="l_k" href="functions/open.html">open</a></code>
.</p>
</li>
</ul>
<a name="the-perlfaq-manpage"></a><h3><a href="perlfaq.html">perlfaq</a></h3>
<ul>
<li>
<p><a href="perlfaq.html">perlfaq</a> has been synchronized with version 5.021009 from CPAN.</p>
</li>
</ul>
<a name="the-perlop-manpage"></a><h3><a href="perlop.html">perlop</a></h3>
<ul>
<li>
<p>Correct the version number which removes <code class="inline"><a class="l_k" href="functions/m.html">m?PATTERN?</a></code>. It was Perl 5.22.0.</p>
</li>
</ul>
<a name="the-perlvar-manpage"></a><h3><a href="perlvar.html">perlvar</a></h3>
<ul>
<li>
<p>Further clarify version number representations and usage.</p>
</li>
</ul>
<a name="the-perlmodstyle-manpage"></a><h3><a href="perlmodstyle.html">perlmodstyle</a></h3>
<ul>
<li>
<p>Instead of pointing to the module list, we are now pointing to
<a href="http://search.cpan.org/perldoc/http:#%2fprepan.org%2f">PrePAN</a>.</p>
</li>
</ul>
<a name="Diagnostics"></a><h1>Diagnostics</h1>
<p>The following additions or changes have been made to diagnostic output,
including warnings and fatal error messages.  For the complete list of
diagnostic messages, see <a href="perldiag.html">perldiag</a>.</p>
<a name="New-Diagnostics"></a><h2>New Diagnostics</h2>
<a name="New-Warnings"></a><h3>New Warnings</h3>
<ul>
<li>
<p><a href="perldiag.html#'%25s'-is-an-unknown-bound-type-in-regex%3b-marked-by-%3c---HERE-in-m%2f%25s%2f">'%s' is an unknown bound type in regex</a></p>
<p>You used <code class="inline">\<span class="i">b</span><span class="s">{</span>...<span class="s">}</span></code>
 or <code class="inline">\<span class="i">B</span><span class="s">{</span>...<span class="s">}</span></code>
 and the <code class="inline">...</code>
 is not known to
Perl.  The current valid ones are given in
<a href="perlrebackslash.html#%5cb%7b%7d%2c-%5cb%2c-%5cB%7b%7d%2c-%5cB">\b{}, \b, \B{}, \B in perlrebackslash</a>.</p>
</li>
<li>
<p><a href="perldiag.html#Use-of-%5cb%7b%7d-for-non-UTF-8-locale-is-wrong.-Assuming-a-UTF-8-locale">Use of \b{} for non-UTF-8 locale is wrong. Assuming a UTF-8 locale</a></p>
<p>You are matching a regular expression using locale rules,
and a Unicode boundary is being matched, but the locale is not a Unicode
one.  This doesn't make sense.  Perl will continue, assuming a Unicode
(UTF-8) locale, but the results could well be wrong except if the locale
happens to be ISO-8859-1 (Latin1) where this message is spurious and can
be ignored.</p>
</li>
<li>
<p><a href="perldiag.html#Using-%2fu-for-'%25s'-instead-of-%2f%25s-in-regex%3b-marked-by-%3c---HERE-in-m%2f%25s%2f">Using /u for '%s' instead of /%s in regex; marked by &lt;-- HERE in m/%s/</a></p>
<p>You used a Unicode boundary (<code class="inline">\<span class="i">b</span><span class="s">{</span>...<span class="s">}</span></code>
 or <code class="inline">\<span class="i">B</span><span class="s">{</span>...<span class="s">}</span></code>
) in a
portion of a regular expression where the character set modifiers <code class="inline"><span class="q">/a</span></code>

or <code class="inline"><span class="q">/aa</span></code>
 are in effect.  These two modifiers indicate an ASCII
interpretation, and this doesn't make sense for a Unicode definition.
The generated regular expression will compile so that the boundary uses
all of Unicode.  No other portion of the regular expression is affected.</p>
</li>
<li>
<p><a href="perldiag.html#The-bitwise-feature-is-experimental">The bitwise feature is experimental</a></p>
<p>This warning is emitted if you use bitwise
operators (<code class="inline"><span class="i">&amp; |</span> ^ ~ <span class="i">&amp;.</span> |. ^. ~.</code>
) with the "bitwise" feature enabled.
Simply suppress the warning if you want to use the feature, but know
that in doing so you are taking the risk of using an experimental
feature which may change or be removed in a future Perl version:</p>
<pre class="verbatim"><ol><li>    <a class="l_k" href="functions/no.html">no</a> <span class="w">warnings</span> <span class="q">&quot;experimental::bitwise&quot;</span><span class="sc">;</span></li><li>    <a class="l_k" href="functions/use.html">use</a> <span class="w">feature</span> <span class="q">&quot;bitwise&quot;</span><span class="sc">;</span></li><li>    <span class="i">$x</span> |.= <span class="i">$y</span><span class="sc">;</span></li></ol></pre></li>
</ul>
<a name="Changes-to-Existing-Diagnostics"></a><h2>Changes to Existing Diagnostics</h2>
<ul>
<li>
<p><b>Unusual use of %s in void context</b> has been removed. It might
come back in a future release.</p>
</li>
<li>
<p><a href="perldiag.html#Argument-%22%25s%22-isn't-numeric%25s">Argument %s isn't numeric%s</a>
now adds the following note:</p>
<pre class="verbatim"><ol><li>    <span class="w">Note</span> <span class="w">that</span> <a class="l_k" href="functions/for.html">for</a> <span class="w">the</span> <span class="w">C</span><span class="q">&lt;Inf&gt;</span> <a class="l_k" href="functions/and.html">and</a> <span class="w">C</span><span class="q">&lt;NaN&gt;</span> <span class="s">(</span><span class="w">infinity</span> <a class="l_k" href="functions/and.html">and</a> <a class="l_k" href="functions/not.html">not</a>-<span class="w">a</span>-<span class="w">number</span><span class="s">)</span> <span class="w">the</span></li><li>    <span class="w">definition</span> <span class="w">of</span> <span class="q">&quot;numeric&quot;</span> <span class="w">is</span> <span class="w">somewhat</span> <span class="w">unusual</span><span class="co">:</span> <span class="w">the</span> <span class="w">strings</span> <span class="i">themselves</span></li><li>    <span class="s">(</span><span class="w">like</span> <span class="q">&quot;Inf&quot;</span><span class="s">)</span> <span class="w">are</span> <span class="w">considered</span> <span class="w">numeric</span><span class="cm">,</span> <a class="l_k" href="functions/and.html">and</a> <span class="w">anything</span> <span class="w">following</span> <span class="w">them</span> <span class="w">is</span></li><li>    <span class="w">considered</span> <span class="w">non</span>-<span class="w">numeric</span>.</li></ol></pre></li>
<li>
<p><b>Possible precedence problem on bitwise %c operator</b> reworded as
<a href="perldiag.html#Possible-precedence-problem-on-bitwise-%25s-operator">Possible precedence problem on bitwise %s operator</a>.</p>
</li>
</ul>
<a name="Utility-Changes"></a><h1>Utility Changes</h1>
<a name="the-h2ph-manpage"></a><h2><a href="h2ph.html">h2ph</a></h2>
<ul>
<li>
<p><i>h2ph</i> now handles hexadecimal constants in the compiler's predefined
macro definitions, as visible in <code class="inline"><span class="i">$Config</span>{<span class="w">cppsymbols</span>}</code>
.  [rt.perl.org
#123784]</p>
</li>
</ul>
<a name="the-encguess-manpage"></a><h2><a href="encguess.html">encguess</a></h2>
<ul>
<li>
<p>No longer depends on non-core module anymore.</p>
</li>
</ul>
<a name="Configuration-and-Compilation"></a><h1>Configuration and Compilation</h1>
<ul>
<li>
<p><i>Configure</i> now checks for <i>lrintl</i>, <i>lroundl</i>, <i>llrintl</i>, and <i>llroundl</i>.</p>
</li>
</ul>
<a name="Testing"></a><h1>Testing</h1>
<ul>
<li>
<p>Added <i>t/op/dump.t</i> for testing <code class="inline"><a class="l_k" href="functions/dump.html">dump</a></code>.</p>
</li>
</ul>
<a name="Deprecations"></a><h1>Deprecations</h1>
<a name="Support-for-new-warnings-categories-outside-of-%22all%22"></a><h2>Support for new warnings categories outside of "all"</h2>
<p>The new option for warnings outside the <b>all</b> category in the <a href="warnings.html">warnings</a>
pragma has been removed for now.</p>
<p>For more context, you can refer to the following
<a href="http://search.cpan.org/perldoc/http:#%2fwww.nntp.perl.org%2fgroup%2fperl.perl5.porters%2f2015%2f01%2fmsg225066.html">discussion thread</a>.</p>
<a name="Platform-Support"></a><h1>Platform Support</h1>
<a name="Platform-Specific-Notes"></a><h2>Platform-Specific Notes</h2>
<a name="Win32"></a><h3>Win32</h3>
<ul>
<li>
<p>Perl can now be built in C++ mode on Windows by setting the makefile macro
<code class="inline"><span class="w">USE_CPLUSPLUS</span></code>
 to the value "define".</p>
</li>
<li>
<p>List form pipe open no longer falls back to the shell.</p>
</li>
<li>
<p>In release 5.21.8 compiling on VC with dmake was broken. Fixed.</p>
</li>
<li>
<p>New <code class="inline"><span class="w">DebugSymbols</span></code>
 and <code class="inline"><span class="w">DebugFull</span></code>
 configuration options added to
Windows makefiles.</p>
</li>
<li>
<p><a href="B.html">B</a> now compiles again on Windows.</p>
</li>
</ul>
<a name="Solaris"></a><h3>Solaris</h3>
<p>Look for the Sun Studio compiler in both <i>/opt/solstudio*</i> and
<i>/opt/solarisstudio*</i>.</p>
<a name="VMS"></a><h3>VMS</h3>
<ul>
<li>
<p>When spawning a subprocess without waiting, the return value is now
the correct PID.</p>
</li>
<li>
<p>Fix a prototype so linking doesn't fail under the VMS C++ compiler.</p>
</li>
</ul>
<a name="Selected-Bug-Fixes"></a><h1>Selected Bug Fixes</h1>
<ul>
<li>
<p>Patterns starting with <code class="inline"><span class="q">/.*/</span></code>
 are now fast again. [rt.perl.org #123743]</p>
</li>
<li>
<p>The original visible value of <code class="inline"><span class="i">$/</span></code>
 is now preserved when it is set to
an invalid value.  Previously if you set <code class="inline"><span class="i">$/</span></code>
 to a reference to an
array, for example, perl would produce a runtime error and not set
<code class="inline"><span class="w">PL_rs</span></code>
, but perl code that checked <code class="inline"><span class="i">$/</span></code>
 would see the array
reference.  [rt.perl.org #123218]</p>
</li>
<li>
<p>In a regular expression pattern, a POSIX class, like <code class="inline"><span class="s">[</span><span class="co">:</span><span class="w">ascii</span><span class="co">:</span><span class="s">]</span></code>
, must
be inside a bracketed character class, like <code class="inline"><span class="q">/qr[[:ascii:]]</span></code>
.  A
warning is issued when something looking like a POSIX class is not
inside a bracketed class.  That warning wasn't getting generated when
the POSIX class was negated: <code class="inline"><span class="s">[</span><span class="co">:</span>^<span class="w">ascii</span><span class="co">:</span><span class="s">]</span></code>
.  This is now fixed.</p>
</li>
<li>
<p>Fix a couple of other size calculation overflows.  [rt.perl.org #123554]</p>
</li>
<li>
<p>A bug introduced in 5.21.6, <code class="inline"><a class="l_k" href="functions/dump.html">dump</a> <span class="w">LABEL</span></code>
 acted the same as <code class="inline"><a class="l_k" href="functions/goto.html">goto</a>
<span class="j">LABEL</span></code>
.  This has been fixed.  [rt.perl.org #123836]</p>
</li>
<li>
<p>Perl 5.14.0 introduced a bug whereby <code class="inline"><a class="l_k" href="functions/eval.html">eval</a> <span class="s">{</span> <span class="j">LABEL:</span> <span class="s">}</span></code>
 would crash.  This
has been fixed.  [rt.perl.org #123652]</p>
</li>
<li>
<p>Various crashes due to the parser getting confused by syntax errors have
been fixed.  [rt.perl.org #123617] [rt.perl.org #123737]
[rt.perl.org #123753] [rt.perl.org #123677]</p>
</li>
<li>
<p>Code like <code class="inline"><span class="q">/$a[/</span></code>
 used to read the next line of input and treat it as
though it came immediately after the opening bracket.  Some invalid code
consequently would parse and run, but some code caused crashes, so this is
now disallowed.  [rt.perl.org #123712]</p>
</li>
<li>
<p>Fix argument underflow for <code class="inline"><a class="l_k" href="functions/pack.html">pack</a></code>.  [rt.perl.org #123874]</p>
</li>
<li>
<p>Fix handling of non-strict <code class="inline">\<span class="w">x</span><span class="s">{</span><span class="s">}</span></code>
. Now <code class="inline">\<span class="w">x</span><span class="s">{</span><span class="s">}</span></code>
 is equivalent to <code class="inline">\<span class="i">x</span><span class="s">{</span><span class="n">0</span><span class="s">}</span></code>

instead of faulting.</p>
</li>
<li>
<p><code class="inline"><a class="l_k" href="functions/stat.html">stat</a> -t</code>
 is now no longer treated as stackable, just like <code class="inline">-t <a class="l_k" href="functions/stat.html">stat</a></code>
.
[rt.perl.org #123816]</p>
</li>
<li>
<p>The following no longer causes a SEGV: <code class="inline"><a class="l_k" href="functions/qr.html">qr{x+(y(?0))*}</a></code>.</p>
</li>
<li>
<p>Fixed infinite loop in parsing backrefs in regexp patterns.</p>
</li>
<li>
<p>Several minor bug fixes in behavior of Inf and NaN, including
warnings when stringifying Inf-like or NaN-like strings. For example,
"NaNcy" doesn't numify to NaN anymore.</p>
</li>
<li>
<p>Only stringy classnames are now shared. This fixes some failures in <a href="http://search.cpan.org/perldoc/autobox">autobox</a>.  [rt.cpan.org #100819]</p>
</li>
</ul>
<a name="Acknowledgements"></a><h1>Acknowledgements</h1>
<p>Perl 5.21.9 represents approximately 4 weeks of development since Perl 5.21.8
and contains approximately 170,000 lines of changes across 520 files from 32
authors.</p>
<p>Excluding auto-generated files, documentation and release tools, there were
approximately 160,000 lines of changes to 270 .pm, .t, .c and .h files.</p>
<p>Perl continues to flourish into its third decade thanks to a vibrant community
of users and developers. The following people are known to have contributed the
improvements that became Perl 5.21.9:</p>
<p>Chad Granum, Chris 'BinGOs' Williams, Craig A. Berry, Dagfinn Ilmari
Manns&#xe5;ker, Daniel Dragan, David Golden, David Mitchell, Father Chrysostomos,
H.Merijn Brand, Hugo van der Sanden, James E Keenan, James Raspass, Jarkko
Hietaniemi, Karen Etheridge, Karl Williamson, Kent Fredric, Lajos Veres, Leon
Timmermans, Lukas Mai, Mathieu Arnold, Matthew Horsfall, Peter Martini, Petr
P&#xed;sa&#x159;, Randy Stauner, Ricardo Signes, Sawyer X, Shlomi Fish, Sisyphus, Steve
Hay, Tony Cook, Yves Orton, &#xc6;var Arnfj&#xf6;r&#xf0; Bjarmason.</p>
<p>The list above is almost certainly incomplete as it is automatically generated
from version control history. In particular, it does not include the names of
the (very much appreciated) contributors who reported issues to the Perl bug
tracker.</p>
<p>Many of the changes included in this version originated in the CPAN modules
included in Perl's core. We're grateful to the entire CPAN community for
helping Perl to flourish.</p>
<p>For a more complete list of all of Perl's historical contributors, please see
the <i>AUTHORS</i> file in the Perl source distribution.</p>
<a name="Reporting-Bugs"></a><h1>Reporting Bugs</h1>
<p>If you find what you think is a bug, you might check the articles recently
posted to the comp.lang.perl.misc newsgroup and the perl bug database at
https://rt.perl.org/ .  There may also be information at
<a href="http://www.perl.org/">http://www.perl.org/</a> , the Perl Home Page.</p>
<p>If you believe you have an unreported bug, please run the <a href="perlbug.html">perlbug</a> program
included with your release.  Be sure to trim your bug down to a tiny but
sufficient test case.  Your bug report, along with the output of <code class="inline"><span class="w">perl</span> -<span class="w">V</span></code>
,
will be sent off to perlbug@perl.org to be analysed by the Perl porting team.</p>
<p>If the bug you are reporting has security implications, which make it
inappropriate to send to a publicly archived mailing list, then please send it
to perl5-security-report@perl.org.  This points to a closed subscription
unarchived mailing list, which includes all the core committers, who will be
able to help assess the impact of issues, figure out a resolution, and help
co-ordinate the release of patches to mitigate or fix the problem across all
platforms on which Perl is supported.  Please only use this address for
security issues in the Perl core, not for modules independently distributed on
CPAN.</p>
<a name="SEE-ALSO"></a><h1>SEE ALSO</h1>
<p>The <i>Changes</i> file for an explanation of how to view exhaustive details on
what changed.</p>
<p>The <i>INSTALL</i> file for how to build Perl.</p>
<p>The <i>README</i> file for general stuff.</p>
<p>The <i>Artistic</i> and <i>Copying</i> files for copyright information.</p>




  <div id="page_index" class="hud_container">
    <div id="page_index_header" class="hud_header">
      <div id="page_index_close" class="hud_close"><a href="#" onClick="pageIndex.hide();return false;"></a></div>
      <div id="page_index_title" class="hud_title"><span class="hud_span_top">Page index</span></div>
      <div id="page_index_topright" class="hud_topright"></div>
    </div>
    <div id="page_index_content" class="hud_content">
      <ul><li><a href="#NAME">NAME</a><li><a href="#DESCRIPTION">DESCRIPTION</a><li><a href="#Notice">Notice</a><li><a href="#Core-Enhancements">Core Enhancements</a><ul><li><a href="#qr%2f%5cb%7bgcb%7d%2f-is-now-handled-in-regular-expressions">qr/\b{gcb}/ is now handled in regular expressions</a><li><a href="#qr%2f%5cb%7bwb%7d%2f-is-now-handled-in-regular-expressions">qr/\b{wb}/ is now handled in regular expressions</a><li><a href="#qr%2f%5cb%7bsb%7d%2f-is-now-handled-in-regular-expressions">qr/\b{sb}/ is now handled in regular expressions</a><li><a href="#New-bitwise-operators">New bitwise operators</a><li><a href="#no-re-covers-more-and-is-lexical">no re covers more and is lexical</a></ul><li><a href="#Incompatible-Changes">Incompatible Changes</a><li><a href="#Modules-and-Pragmata">Modules and Pragmata</a><ul><li><a href="#Updated-Modules-and-Pragmata">Updated Modules and Pragmata</a></ul><li><a href="#Documentation">Documentation</a><ul><li><a href="#New-Documentation">New Documentation</a><li><a href="#Changes-to-Existing-Documentation">Changes to Existing Documentation</a></ul><li><a href="#Diagnostics">Diagnostics</a><ul><li><a href="#New-Diagnostics">New Diagnostics</a><li><a href="#Changes-to-Existing-Diagnostics">Changes to Existing Diagnostics</a></ul><li><a href="#Utility-Changes">Utility Changes</a><ul><li><a href="#the-h2ph-manpage">the h2ph manpage</a><li><a href="#the-encguess-manpage">the encguess manpage</a></ul><li><a href="#Configuration-and-Compilation">Configuration and Compilation</a><li><a href="#Testing">Testing</a><li><a href="#Deprecations">Deprecations</a><ul><li><a href="#Support-for-new-warnings-categories-outside-of-%22all%22">Support for new warnings categories outside of "all"</a></ul><li><a href="#Platform-Support">Platform Support</a><ul><li><a href="#Platform-Specific-Notes">Platform-Specific Notes</a></ul><li><a href="#Selected-Bug-Fixes">Selected Bug Fixes</a><li><a href="#Acknowledgements">Acknowledgements</a><li><a href="#Reporting-Bugs">Reporting Bugs</a><li><a href="#SEE-ALSO">SEE ALSO</a></ul>
    </div>
    <div id="page_index_footer" class="hud_footer">
      <div id="page_index_bottomleft" class="hud_bottomleft"></div>
      <div id="page_index_bottom" class="hud_bottom"><span class="hud_span_bottom"></span></div>
      <div id="page_index_resize" class="hud_resize"></div>
    </div>
  </div>


	    &nbsp;
          </div>
          <div id="content_footer">
          </div>
        </div>
        <div class="clear"></div>
      </div>
      
    <div id="footer">
      <div id="footer_content">
        <div id="footer_strapline">
          perldoc.perl.org - Official documentation for the Perl programming language
        </div>
        <div id="footer_links">
          <div id="address">
            <p class="name">Contact details</p>
            <p class="address">
	      Site maintained by <a href="mailto:jj@jonallen.info">Jon Allen (JJ)</a><br>
	    </p>
            <p class="contact">
              Documentation maintained by the <a href="http://lists.cpan.org/showlist.cgi?name=perl5-porters">Perl 5 Porters</a>
            </p>
          </div>
          <ul class="f1">
            <li>Manual
              <ul class="f2">
                <li><a href="index-overview.html">Overview</a>
                <li><a href="index-tutorials.html">Tutorials</a>
                <li><a href="index-faq.html">FAQs</a>
                <li><a href="index-history.html">Changes</a>
              </ul>
            <li>Reference
              <ul class="f2">
                <li><a href="index-language.html">Language</a>
                <li><a href="index-functions.html">Functions</a>
                <li><a href="perlop.html">Operators</a>
                <li><a href="perlvar.html">Variables</a>
              </ul>
            <li>Modules
              <ul class="f2">
                <li><a href="index-modules-A.html">Modules</a>
                <li><a href="index-pragmas.html">Pragmas</a>
                <li><a href="index-utilities.html">Utilities</a>
              </ul>
            <li>Misc
              <ul class="f2">
                <li><a href="index-licence.html">License</a>
                <li><a href="index-internals.html">Internals</a>
                <li><a href="index-platforms.html">Platforms</a>
              </ul>          </ul>
          <div class="clear"></div>
        </div>
      </div>
      <div id="footer_end">
      </div>
    </div>
      
    </div>
      <script language="JavaScript" type="text/javascript" src="static/exploreperl.js"></script>
      <script language="JavaScript" src="static/combined-20100403.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
  perldoc.setPath(0);
  perldoc.pageName    = 'perl5219delta';
  perldoc.pageAddress = 'perl5219delta.html';
  perldoc.contentPage = 1;
  explorePerl.render();
  explorePerl.addEvents('explore_anchor');
</script>
    
  </body>
</html>