From: Andreas Schwab Date: Sun, 5 Mar 2006 10:46:41 +0000 (+0000) Subject: (x_catch_errors_unwind): Fix missing return value. X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/6f10509cf6a6b35f454a92903738ecadfb7b037e?hp=c601a68b38e56947353e131c55568ddc34ee7d90 (x_catch_errors_unwind): Fix missing return value. --- diff --git a/src/ChangeLog b/src/ChangeLog index 11fe6f910e..e3b3fbbe0c 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 30739c7433..9c2c221c02 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; }