[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * info/filesys.h (infopath_string), info/infopath
From: |
Patrice Dumas |
Subject: |
branch master updated: * info/filesys.h (infopath_string), info/infopath.c (infopath_string): remove extern in infopath_string filesys.h declaration. Add void in infopath_string argument. |
Date: |
Sun, 16 Jun 2024 08:59:27 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new d688538d6f * info/filesys.h (infopath_string), info/infopath.c
(infopath_string): remove extern in infopath_string filesys.h declaration. Add
void in infopath_string argument.
d688538d6f is described below
commit d688538d6fd2399e18cee3b4a168f99b693c9ab4
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Jun 16 14:59:18 2024 +0200
* info/filesys.h (infopath_string), info/infopath.c (infopath_string):
remove extern in infopath_string filesys.h declaration. Add void in
infopath_string argument.
---
ChangeLog | 6 ++++++
info/filesys.h | 2 +-
info/infopath.c | 2 +-
3 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 5a0fc90e20..a9c2b5626f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-06-16 Patrice Dumas <pertusus@free.fr>
+
+ * info/filesys.h (infopath_string), info/infopath.c (infopath_string):
+ remove extern in infopath_string filesys.h declaration. Add void in
+ infopath_string argument.
+
2024-06-11 Gavin Smith <gavinsmith0123@gmail.com>
* info/infomap.c (locate_init_file) [__MINGW32__]:
diff --git a/info/filesys.h b/info/filesys.h
index d3b22ed08a..b9c5021f72 100644
--- a/info/filesys.h
+++ b/info/filesys.h
@@ -21,7 +21,7 @@
#define INFO_FILESYS_H
/* Return a string describing the search path. */
-extern char *infopath_string ();
+char *infopath_string (void);
/* Initialize INFOPATH */
void infopath_init (void);
diff --git a/info/infopath.c b/info/infopath.c
index 1776084c65..d18e4c78d0 100644
--- a/info/infopath.c
+++ b/info/infopath.c
@@ -82,7 +82,7 @@ infopath_init ()
/* Return value to be freed by caller. */
char *
-infopath_string ()
+infopath_string (void)
{
struct text_buffer path;
int dir_idx;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * info/filesys.h (infopath_string), info/infopath.c (infopath_string): remove extern in infopath_string filesys.h declaration. Add void in infopath_string argument.,
Patrice Dumas <=