texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: use correct empty argument list declarations


From: Gavin D. Smith
Subject: branch master updated: use correct empty argument list declarations
Date: Sun, 05 Sep 2021 03:19:05 -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 78af096  use correct empty argument list declarations
78af096 is described below

commit 78af096d9fa4fdbdfe1e0dd5ec9e651ccadf9beb
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sun Sep 5 08:18:23 2021 +0100

    use correct empty argument list declarations
---
 tp/Texinfo/XS/parsetexi/context_stack.h | 2 +-
 tp/Texinfo/XS/parsetexi/parser.h        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tp/Texinfo/XS/parsetexi/context_stack.h 
b/tp/Texinfo/XS/parsetexi/context_stack.h
index 9b4f933..3eec1c8 100644
--- a/tp/Texinfo/XS/parsetexi/context_stack.h
+++ b/tp/Texinfo/XS/parsetexi/context_stack.h
@@ -42,7 +42,7 @@ enum context {
    || (c) == ct_inlineraw)
 
 void push_context (enum context c);
-enum context pop_context ();
+enum context pop_context (void);
 enum context current_context (void);
 void reset_context_stack (void);
 
diff --git a/tp/Texinfo/XS/parsetexi/parser.h b/tp/Texinfo/XS/parsetexi/parser.h
index a44d4a0..c61cf0c 100644
--- a/tp/Texinfo/XS/parsetexi/parser.h
+++ b/tp/Texinfo/XS/parsetexi/parser.h
@@ -157,7 +157,7 @@ int format_expanded_p (char *format);
 int is_end_current_command (ELEMENT *current, char **line,
                             enum command_id *end_cmd);
 void set_documentlanguage (char *);
-void set_accept_internalvalue ();
+void set_accept_internalvalue (void);
 char *element_type_name (ELEMENT *e);
 
 /* Return values */



reply via email to

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