From 91e1aa523d1d08d903f42055c3021e2006b9d20a Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 12 Aug 2002 14:34:51 +0000 Subject: [PATCH] (assoc_to_string): Wrap strings in _() if they need translation. --- src/assoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.50.0