diff options
author | Andreas Schwab <schwab@suse.de> | 2006-03-05 10:46:41 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2006-03-05 10:46:41 +0000 |
commit | 6f10509cf6a6b35f454a92903738ecadfb7b037e (patch) | |
tree | f607c95cd597846bfa8376ab18fafaac80a20cd4 /src/xselect.c | |
parent | c601a68b38e56947353e131c55568ddc34ee7d90 (diff) | |
download | emacs-6f10509cf6a6b35f454a92903738ecadfb7b037e.tar.gz |
(x_catch_errors_unwind): Fix missing return value.
Diffstat (limited to 'src/xselect.c')
-rw-r--r-- | src/xselect.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |