https://bugzilla.wikimedia.org/show_bug.cgi?id=17119





--- Comment #1 from seth <[email protected]>  2009-01-22 
22:13:25 UTC ---
1. Oh, &amp;nbsp; is parsed here in bugzilla..., sorry I did not know that.
2. and additional to that you could do a little speed-up by grouping the
singe-char alternatives by char classes. So the possible solutions would be

  '/(.) ([?:;!%]|\\302\\273)/' => '\\1&amp;nbsp;\\2',
or
  '/(.) (?=[?:;!%]|\\302\\273)/' => '\\1&amp;nbsp;',
or
  '/(?<=.) (?=[?:;!%]|\\302\\273)/' => '&amp;nbsp;',


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to