texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * info/infomap.c (locate_init_file) [__MINGW32__]


From: Gavin D. Smith
Subject: branch master updated: * info/infomap.c (locate_init_file) [__MINGW32__]: Add missing semicolon. From Bruno.
Date: Tue, 11 Jun 2024 12:32:21 -0400

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

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 296970c09f * info/infomap.c (locate_init_file) [__MINGW32__]: Add 
missing semicolon.  From Bruno.
296970c09f is described below

commit 296970c09f82f74b16b80b38f29c23d6487dec3c
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Tue Jun 11 17:32:05 2024 +0100

    * info/infomap.c (locate_init_file) [__MINGW32__]:
    Add missing semicolon.  From Bruno.
---
 ChangeLog      | 5 +++++
 info/infomap.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 7035654d57..07de64ed03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-06-11  Gavin Smith <gavinsmith0123@gmail.com>
+
+       * info/infomap.c (locate_init_file) [__MINGW32__]:
+       Add missing semicolon.  From Bruno.
+
 2024-06-11  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/XS/main/utils.c (non_perl_malloc): add.
diff --git a/info/infomap.c b/info/infomap.c
index e052cb5ea6..6a90e86431 100644
--- a/info/infomap.c
+++ b/info/infomap.c
@@ -584,7 +584,7 @@ locate_init_file (void)
       homedir = getenv ("HOME");
 #ifdef __MINGW32__
       if (!homedir)
-        homedir = getenv ("USERPROFILE")
+        homedir = getenv ("USERPROFILE");
 #endif
       if (homedir)
         {
@@ -612,7 +612,7 @@ locate_init_file (void)
     homedir = getenv ("HOME");
 #ifdef __MINGW32__
     if (!homedir)
-      homedir = getenv ("USERPROFILE")
+      homedir = getenv ("USERPROFILE");
 #endif
 
   if (homedir)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]