From 6f10509cf6a6b35f454a92903738ecadfb7b037e Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 5 Mar 2006 10:46:41 +0000 Subject: [PATCH] (x_catch_errors_unwind): Fix missing return value. --- src/ChangeLog | 4 ++++ src/xselect.c | 1 + 2 files changed, 5 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 11fe6f910e4..e3b3fbbe0c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-03-05 Andreas Schwab + + * xselect.c (x_catch_errors_unwind): Fix missing return value. + 2006-03-02 Kim F. Storm * frame.h (struct frame): New member n_tool_bar_rows. diff --git a/src/xselect.c b/src/xselect.c index 30739c74331..9c2c221c021 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -620,6 +620,7 @@ x_catch_errors_unwind (dummy) BLOCK_INPUT; x_uncatch_errors (); UNBLOCK_INPUT; + return Qnil; } -- 2.39.2