From: Paul Eggert Date: Mon, 12 Aug 2002 14:34:51 +0000 (+0000) Subject: (assoc_to_string): Wrap strings in _() if they need translation. X-Git-Tag: BISON-1_49b~24 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/91e1aa523d1d08d903f42055c3021e2006b9d20a (assoc_to_string): Wrap strings in _() if they need translation. --- diff --git a/src/assoc.c b/src/assoc.c index 226a3519..80a2b43c 100644 --- a/src/assoc.c +++ b/src/assoc.c @@ -28,7 +28,7 @@ assoc_to_string (assoc_t assoc) switch (assoc) { case undef_assoc: - return "undefined associativity"; + return _("undefined associativity"); case right_assoc: return "%right";