From 5d4050064bf3f2be056a4a887ec11aa14d0d2562 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut <peter_e@gmx.net> Date: Tue, 12 Jul 2016 18:37:34 -0400 Subject: [PATCH] Add serial comma and quoting to message --- src/backend/tsearch/spell.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/tsearch/spell.c b/src/backend/tsearch/spell.c index c43c206c030..835851655f5 100644 --- a/src/backend/tsearch/spell.c +++ b/src/backend/tsearch/spell.c @@ -1263,8 +1263,8 @@ NIImportOOAffixes(IspellDict *Conf, const char *filename) else if (STRNCMP(s, "default") != 0) ereport(ERROR, (errcode(ERRCODE_CONFIG_FILE_ERROR), - errmsg("Ispell dictionary supports only default, " - "long and num flag value"))); + errmsg("Ispell dictionary supports only \"default\", " + "\"long\", and \"num\" flag value"))); } } -- GitLab