Changeset 3c6693076116177913e70ff74448aeea19e7baf0
- Timestamp:
- 01/08/10 20:12:46
(3 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1262981566 +0000
- git-parent:
[7e749a22954faeee34e2375c26b6f7d1243562fe]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1262981566 +0000
- Message:
allow dots in the cb name, refs #229
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd9050a4 |
r3c66930 |
|
| 121 | 121 | (*v >= 'a' && *v <= 'z') || |
|---|
| 122 | 122 | (*v >= 'A' && *v <= 'Z') || |
|---|
| 123 | | (*v == '_'))) { |
|---|
| | 123 | (*v == '_') || (*v == '.'))) { |
|---|
| 124 | 124 | cb = NULL; |
|---|
| 125 | 125 | break; |
|---|