* Test the validity of a character in a command. It must contains only * alpha characters and eventually a @ if makeAtletter activated */
| 475 | * alpha characters and eventually a @ if makeAtletter activated |
| 476 | */ |
| 477 | inline bool isValidCharacterInCommand(wchar_t ch) const { |
| 478 | return isalpha(ch) || (_atIsLetter != 0 && ch == '@'); |
| 479 | } |
| 480 | }; |
| 481 | |
| 482 | } // namespace tex |
nothing calls this directly
no outgoing calls
no test coverage detected