Changeset 9518a85 for functions.c


Ignore:
Timestamp:
Feb 11, 2011, 1:22:31 AM (13 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
Branches:
master, release-1.10, release-1.8, release-1.9
Children:
96828e4
Parents:
fba2a65
git-author:
Anders Kaseorg <andersk@mit.edu> (02/11/11 01:15:58)
git-committer:
Anders Kaseorg <andersk@mit.edu> (02/11/11 01:22:31)
Message:
owl_function_classinstfilt: Do not turn [ '"] into .

This transformation was not invertible, and narrowing to some
instances made it impossible to narrow to other instances that map to
the same filter name.  We have already fixed most of the quoting
problems that resulted in [ '"] getting mishandled.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • functions.c

    r3f82515 r9518a85  
    23172317    }
    23182318  }
    2319   /* turn spaces, single quotes, and double quotes into dots */
    2320   owl_text_tr(filtname, ' ', '.');
    2321   owl_text_tr(filtname, '\'', '.');
    2322   owl_text_tr(filtname, '"', '.');
    23232319 
    23242320  /* if it already exists then go with it.  This lets users override */
Note: See TracChangeset for help on using the changeset viewer.