From: NeilBrown Date: Tue, 28 May 2019 05:49:36 +0000 (+1000) Subject: scanner: fix typo in testing ignored flagged X-Git-Url: https://ocean-lang.org/code/?p=ocean;a=commitdiff_plain;h=7786086017ca5381eaae9b4bd07e7ef7d337a32c scanner: fix typo in testing ignored flagged Use '&' to test a bit, not '&&' !!! Signed-off-by: NeilBrown --- diff --git a/csrc/scanner.mdc b/csrc/scanner.mdc index 9a1ea71..e90690a 100644 --- a/csrc/scanner.mdc +++ b/csrc/scanner.mdc @@ -368,7 +368,7 @@ Known marks are included in the same list as the list of known words. prev = ch; save_unget_state(state); ch = get_char(state); - if (!(ignored && (1<