diff options
| author | Andreas Schwab | 2006-03-05 10:46:41 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2006-03-05 10:46:41 +0000 |
| commit | 6f10509cf6a6b35f454a92903738ecadfb7b037e (patch) | |
| tree | f607c95cd597846bfa8376ab18fafaac80a20cd4 /src | |
| parent | c601a68b38e56947353e131c55568ddc34ee7d90 (diff) | |
| download | emacs-6f10509cf6a6b35f454a92903738ecadfb7b037e.tar.gz emacs-6f10509cf6a6b35f454a92903738ecadfb7b037e.zip | |
(x_catch_errors_unwind): Fix missing return value.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xselect.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 11fe6f910e4..e3b3fbbe0c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-03-05 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * xselect.c (x_catch_errors_unwind): Fix missing return value. | ||
| 4 | |||
| 1 | 2006-03-02 Kim F. Storm <storm@cua.dk> | 5 | 2006-03-02 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * frame.h (struct frame): New member n_tool_bar_rows. | 7 | * 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) | |||
| 620 | BLOCK_INPUT; | 620 | BLOCK_INPUT; |
| 621 | x_uncatch_errors (); | 621 | x_uncatch_errors (); |
| 622 | UNBLOCK_INPUT; | 622 | UNBLOCK_INPUT; |
| 623 | return Qnil; | ||
| 623 | } | 624 | } |
| 624 | 625 | ||
| 625 | 626 | ||