This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository e16.

View the commit online.

commit ffaf268e62265673b088031126cc0a459fb4223d
Author: Kim Woelders <k...@woelders.dk>
AuthorDate: Mon Dec 14 17:35:40 2020 +0100

    config: Trivial macro name change
---
 src/config.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/config.c b/src/config.c
index 91646b98..f4fc45f3 100644
--- a/src/config.c
+++ b/src/config.c
@@ -37,7 +37,7 @@
 #include "tooltips.h"
 #include "windowmatch.h"
 
-#define MAX_E_CFG_VERSION 2	/* Max. supported configuration version */
+#define E_CFG_VER_MAX     2	/* Max. supported theme config version */
 
 void
 SkipTillEnd(FILE * fs)
@@ -303,7 +303,7 @@ ConfigFileRead(FILE * fs)
 
 	if (i2 == CONFIG_OPEN)
 	  {
-	     if (e_cfg_ver > MAX_E_CFG_VERSION)
+	     if (e_cfg_ver > E_CFG_VER_MAX)
 	       {
 		  AlertX(_("Theme versioning ERROR"),
 			 _("Restart with Defaults"), " ",
@@ -322,7 +322,7 @@ ConfigFileRead(FILE * fs)
 			   "it may be that you haven't upgraded Enlightenment for\n"
 			   "a while and this theme takes advantages of new\n"
 			   "features in Enlightenment in new versions.\n"),
-			 e_cfg_ver, MAX_E_CFG_VERSION);
+			 e_cfg_ver, E_CFG_VER_MAX);
 		  SessionExit(EEXIT_THEME, "DEFAULT");
 	       }
 	     else

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to