(assoc_to_string): Wrap strings in _() if they need translation.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Aug 2002 14:34:51 +0000 (14:34 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Aug 2002 14:34:51 +0000 (14:34 +0000)
src/assoc.c

index 226a351..80a2b43 100644 (file)
@@ -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";