summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2022-06-14 03:46:53 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2022-06-14 04:10:32 -0400
commit0f77f9f6a8974257a21e5fc0b8327b838c2a4849 (patch)
tree7427f6c51dddc6fad14d373dcbafb0abc1d187e3
parent9bebcedeb378f9fd6ea26767b11dae551b94dc54 (diff)
downloadxorg-lib-libXt-0f77f9f6a8974257a21e5fc0b8327b838c2a4849.tar.gz
add _X_NORETURN to agree with header-file
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
-rw-r--r--man/XtAppError.man4
-rw-r--r--man/XtAppErrorMsg.man4
-rw-r--r--man/XtError.man4
-rw-r--r--man/XtErrorMsg.man4
4 files changed, 8 insertions, 8 deletions
diff --git a/man/XtAppError.man b/man/XtAppError.man
index f0d2b41..6231cbf 100644
--- a/man/XtAppError.man
+++ b/man/XtAppError.man
@@ -41,9 +41,9 @@ XtAppError, XtAppSetErrorHandler, XtAppSetWarningHandler, XtAppWarning \- low-le
.SH SYNTAX
#include <X11/Intrinsic.h>
.HP
-void XtAppError(XtAppContext \fIapp_context\fP, const char *\fImessage\fP);
+_X_NORETURN void XtAppError(XtAppContext \fIapp_context\fP, const char *\fImessage\fP);
.HP
-XtErrorHandler XtAppSetErrorHandler(XtAppContext \fIapp_context\fP, XtErrorHandler
+XtErrorHandler XtAppSetErrorHandler(XtAppContext \fIapp_context\fP, _X_NORETURN XtErrorHandler
\fIhandler\fP);
.HP
XtErrorHandler XtAppSetWarningHandler(XtAppContext \fIapp_context\fP, XtErrorHandler
diff --git a/man/XtAppErrorMsg.man b/man/XtAppErrorMsg.man
index 9a59779..7f1e957 100644
--- a/man/XtAppErrorMsg.man
+++ b/man/XtAppErrorMsg.man
@@ -41,11 +41,11 @@ XtAppErrorMsg, XtAppSetErrorMsgHandler, XtAppSetWarningMsgHandler, XtAppWarningM
.SH SYNTAX
#include <X11/Intrinsic.h>
.HP
-void XtAppErrorMsg(XtAppContext \fIapp_context\fP, const char *\fIname\fP,
+_X_NORETURN void XtAppErrorMsg(XtAppContext \fIapp_context\fP, const char *\fIname\fP,
const char *\fItype\fP, const char *\fIclass\fP, const char *\fIdefaultMsg\fP,
String *\fIparams\fP, Cardinal *\fInum_params\fP);
.HP
-XtErrorMsgHandler XtAppSetErrorMsgHandler(XtAppContext \fIapp_context\fP, XtErrorMsgHandler
+XtErrorMsgHandler XtAppSetErrorMsgHandler(XtAppContext \fIapp_context\fP, _X_NORETURN XtErrorMsgHandler
\fImsg_handler\fP);
.HP
XtErrorMsgHandler XtAppSetWarningMsgHandler(XtAppContext \fIapp_context\fP,
diff --git a/man/XtError.man b/man/XtError.man
index 1c7e819..9dd8d02 100644
--- a/man/XtError.man
+++ b/man/XtError.man
@@ -39,9 +39,9 @@ XtError, XtSetErrorHandler, XtSetWarningHandler, XtWarning \- low-level error ha
.SH SYNTAX
#include <X11/Intrinsic.h>
.HP
-void XtError(const char *\fImessage\fP);
+_X_NORETURN void XtError(const char *\fImessage\fP);
.HP
-void XtSetErrorHandler(XtErrorHandler \fIhandler\fP);
+void XtSetErrorHandler(_X_NORETURN XtErrorHandler \fIhandler\fP);
.HP
void XtSetWarningHandler(XtErrorHandler \fIhandler\fP);
.HP
diff --git a/man/XtErrorMsg.man b/man/XtErrorMsg.man
index 6f7371f..e2f745a 100644
--- a/man/XtErrorMsg.man
+++ b/man/XtErrorMsg.man
@@ -40,13 +40,13 @@ XtErrorMsg, XtSetErrorMsgHandler, XtWarningMsg, XtSetWarningMsgHandler \- high-l
.SH SYNTAX
#include <X11/Intrinsic.h>
.HP
-void XtErrorMsg(const char *\fIname\fP,
+_X_NORETURN void XtErrorMsg(const char *\fIname\fP,
const char *\fItype\fP,
const char *\fIclass\fP,
const char *\fIdefaultMsg\fP,
String *\fIparams\fP, Cardinal *\fInum_params\fP);
.HP
-void XtSetErrorMsgHandler(XtErrorMsgHandler \fImsg_handler\fP);
+void XtSetErrorMsgHandler(_X_NORETURN XtErrorMsgHandler \fImsg_handler\fP);
.HP
void XtSetWarningMsgHandler(XtErrorMsgHandler \fImsg_handler\fP);
.HP