Skip to content

Commit

Permalink
Fix KQL handling of carriage return (#32150)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasolson committed Feb 28, 2019
1 parent 03fe1f0 commit 23fe22c
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 54 deletions.
107 changes: 54 additions & 53 deletions packages/kbn-es-query/src/kuery/ast/kuery.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/kbn-es-query/src/kuery/ast/kuery.peg
Expand Up @@ -252,7 +252,7 @@ OptionalSpace

EscapedWhitespace
= '\\t' { return '\t'; }
/ '\\r' { return '\t'; }
/ '\\r' { return '\r'; }
/ '\\n' { return '\n'; }

EscapedSpecialCharacter
Expand Down

0 comments on commit 23fe22c

Please sign in to comment.