diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2018-02-17 22:15:28 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2018-02-17 22:15:28 +0000 |
commit | fe6fddb9d83c099ee407bced8d59e11e351ecd58 (patch) | |
tree | 929eb5db84fbab96d3cb0ae33c74e8834c2525b9 | |
parent | 63bc046ddf2a2ff6694d0a3757ef28ec4ca7b5f3 (diff) | |
download | Nim-fe6fddb9d83c099ee407bced8d59e11e351ecd58.tar.gz |
Fixes #4265.
-rw-r--r-- | changelog.md | 2 | ||||
-rw-r--r-- | lib/pure/strtabs.nim | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md index 73d7e7d9b..194e098a8 100644 --- a/changelog.md +++ b/changelog.md @@ -257,6 +257,8 @@ bar() - The ``securehash`` module is now deprecated. Instead import ``std / sha1``. - ``db_mysql`` module: ``DbConn`` is now a ``distinct`` type that doesn't expose the details of the underlying ``PMySQL`` type. +- ``strtabs.getOrDefault`` now returns ``nil`` instead of ``""``. See + [#4265](https://github.com/nim-lang/Nim/issues/4265) for more info. - Standard library modules can now also be imported via the ``std`` pseudo-directory. This is useful in order to distinguish between standard library and nimble package imports: diff --git a/lib/pure/strtabs.nim b/lib/pure/strtabs.nim index 75c5e171d..942c2eb72 100644 --- a/lib/pure/strtabs.nim +++ b/lib/pure/strtabs.nim @@ -129,7 +129,7 @@ proc mget*(t: StringTableRef, key: string): var string {.deprecated.} = ## ``KeyError`` exception is raised. Use ```[]``` instead. get(t, key) -proc getOrDefault*(t: StringTableRef; key: string, default: string = ""): string = +proc getOrDefault*(t: StringTableRef; key: string, default: string = nil): string = var index = rawGet(t, key) if index >= 0: result = t.data[index].val else: result = default |