[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch release/7.1 updated: * info/terminal.c (terminal_prep_terminal_ho
From: |
Gavin D. Smith |
Subject: |
branch release/7.1 updated: * info/terminal.c (terminal_prep_terminal_hook): Return void not int. Report from Biswapriyo Nath. |
Date: |
Tue, 10 Sep 2024 11:29:48 -0400 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch release/7.1
in repository texinfo.
The following commit(s) were added to refs/heads/release/7.1 by this push:
new edc15b06e8 * info/terminal.c (terminal_prep_terminal_hook): Return
void not int. Report from Biswapriyo Nath.
edc15b06e8 is described below
commit edc15b06e864fce084ad25f8bad8cfa0f60ce9c1
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Tue Sep 10 16:29:21 2024 +0100
* info/terminal.c (terminal_prep_terminal_hook): Return void not
int. Report from Biswapriyo Nath.
---
ChangeLog | 5 +++++
info/terminal.c | 2 +-
info/terminal.h | 2 +-
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index c30de8f5f4..96757d015d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-09-10 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * info/terminal.c (terminal_prep_terminal_hook): Return void not
+ int. Report from Biswapriyo Nath.
+
2024-09-07 Gavin Smith <gavinsmith0123@gmail.com>
Texinfo 7.1.1
diff --git a/info/terminal.c b/info/terminal.c
index 0dde156bb3..92f59a7c7e 100644
--- a/info/terminal.c
+++ b/info/terminal.c
@@ -56,7 +56,7 @@ extern int tputs ();
void (*terminal_initialize_terminal_hook) (char *terminal_name) = NULL;
void (*terminal_get_screen_size_hook) (void) = NULL;
-int (*terminal_prep_terminal_hook) (void) = NULL;
+void (*terminal_prep_terminal_hook) (void) = NULL;
void (*terminal_unprep_terminal_hook) (void) = NULL;
void (*terminal_new_terminal_hook) (char *terminal_name) = NULL;
void (*terminal_goto_xy_hook) (int x, int y) = NULL;
diff --git a/info/terminal.h b/info/terminal.h
index 662e33d8f0..8cf889ac3b 100644
--- a/info/terminal.h
+++ b/info/terminal.h
@@ -61,7 +61,7 @@ extern void (*terminal_get_screen_size_hook) (void);
extern int terminal_prep_terminal (void);
extern void terminal_unprep_terminal (void);
-extern int (*terminal_prep_terminal_hook) (void);
+extern void (*terminal_prep_terminal_hook) (void);
extern void (*terminal_unprep_terminal_hook) (void);
/* Re-initialize the terminal to TERMINAL_NAME. */
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch release/7.1 updated: * info/terminal.c (terminal_prep_terminal_hook): Return void not int. Report from Biswapriyo Nath.,
Gavin D. Smith <=