From bd4435abcc272cab7f97bd483410fac5ab14cc5f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 5 Sep 1997 07:01:19 +0000 Subject: [PATCH] Don't use ANSI string literal concatenation (everything is K&R compatible). --- Modules/reopmodule.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/reopmodule.c b/Modules/reopmodule.c index 9473191c5e..de5c63d3ce 100644 --- a/Modules/reopmodule.c +++ b/Modules/reopmodule.c @@ -608,8 +608,8 @@ reop_expand_escape(self, args) /* 2-digit form, so it's a memory reference */ if (context==CHARCLASS) { - PyErr_SetString(ReopError, "cannot reference a register " - "from inside a character class"); + PyErr_SetString(ReopError, + "cannot reference a register from inside a character class"); return NULL; } value= 10*(pattern[index ]-'0') + @@ -628,8 +628,8 @@ reop_expand_escape(self, args) /* Single-digit form, like \2, so it's a memory reference */ if (context==CHARCLASS) { - PyErr_SetString(ReopError, "cannot reference a register " - "from inside a character class"); + PyErr_SetString(ReopError, + "cannot reference a register from inside a character class"); return NULL; } return Py_BuildValue("iii", MEMORY_REFERENCE, -- 2.40.0