Mercurial > hgrepos > Python > libs > pygments-lexer-pseudocode2
comparison pygments_lexer_pseudocode2/algpseudocode.py @ 103:af97692501ea
FIX: Typo: "non" -> "none"
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 04 May 2026 16:20:44 +0200 |
| parents | d8368294413a |
| children | ffe6ea2cf69b |
comparison
equal
deleted
inserted
replaced
| 102:d8368294413a | 103:af97692501ea |
|---|---|
| 395 suffix=r"\b"), | 395 suffix=r"\b"), |
| 396 Operator.Word), | 396 Operator.Word), |
| 397 ], | 397 ], |
| 398 "keyword-constants": [ | 398 "keyword-constants": [ |
| 399 (words(("True", "TRUE", "true", "False", "FALSE", "false", | 399 (words(("True", "TRUE", "true", "False", "FALSE", "false", |
| 400 "None", "NONE", "non", "Nil", "NIL", "nil", | 400 "None", "NONE", "none", "Nil", "NIL", "nil", |
| 401 "Null", "NULL", "null", | 401 "Null", "NULL", "null", |
| 402 "Empty", "EMPTY", "empty"), | 402 "Empty", "EMPTY", "empty"), |
| 403 prefix=r"(?<!\.)", | 403 prefix=r"(?<!\.)", |
| 404 suffix=r"\b"), | 404 suffix=r"\b"), |
| 405 Keyword.Constant), | 405 Keyword.Constant), |
