From: Andreas Schwab Date: Sun, 5 Mar 2006 10:46:41 +0000 (+0000) Subject: (x_catch_errors_unwind): Fix missing return value. X-Git-Tag: emacs-pretest-22.0.90~3787 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6f10509cf6a6b35f454a92903738ecadfb7b037e;p=emacs.git (x_catch_errors_unwind): Fix missing return value. --- 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; }