Tcl Source Code

Ticket Change Details
Login
Overview

Artifact ID: 18425a2c56a9bcd0ff2d85fab44cb61a07bf66dc
Ticket: 8663689908d3304a74fee525cd04aa4162e86391
regexp \\w missing characters
User & Date: dgp 2016-07-22 21:18:47
Changes

  1. closer changed to: "nobody"
  2. icomment:
    
    Tcl docs (re_syntax.n) say that the "CLASS-SHORTHAND ESCAPES"
    are defined:
    
     \w        [[:alnum:]_] (note underscore)
    
    By this description, \u203f ought to match
    regexp {\w} only if it matches {[[:alnum:]]}.
    
    % info patch
    8.6.6
    % regexp {\w} \u203f
    1
    % regexp {[[:alnum:]]} \u203f
    0
    
    Something in this collection of facts isn't right.
    
  3. login: "dgp"
  4. mimetype: "text/plain"
  5. priority changed to: "9 Immediate"
  6. resolution changed to: "Remind"
  7. status changed to: "Open"