diff options
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/window.c b/src/window.c index 77e155675dd..879777d25e1 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -4961,9 +4961,9 @@ window_scroll_pixel_based (window, n, whole, noerror) | |||
| 4961 | else if (noerror) | 4961 | else if (noerror) |
| 4962 | return; | 4962 | return; |
| 4963 | else if (n < 0) /* could happen with empty buffers */ | 4963 | else if (n < 0) /* could happen with empty buffers */ |
| 4964 | Fsignal (Qbeginning_of_buffer, Qnil); | 4964 | xsignal0 (Qbeginning_of_buffer); |
| 4965 | else | 4965 | else |
| 4966 | Fsignal (Qend_of_buffer, Qnil); | 4966 | xsignal0 (Qend_of_buffer); |
| 4967 | } | 4967 | } |
| 4968 | else | 4968 | else |
| 4969 | { | 4969 | { |
| @@ -4974,7 +4974,7 @@ window_scroll_pixel_based (window, n, whole, noerror) | |||
| 4974 | else if (noerror) | 4974 | else if (noerror) |
| 4975 | return; | 4975 | return; |
| 4976 | else | 4976 | else |
| 4977 | Fsignal (Qbeginning_of_buffer, Qnil); | 4977 | xsignal0 (Qbeginning_of_buffer); |
| 4978 | } | 4978 | } |
| 4979 | 4979 | ||
| 4980 | /* If control gets here, then we vscrolled. */ | 4980 | /* If control gets here, then we vscrolled. */ |
| @@ -5175,7 +5175,7 @@ window_scroll_line_based (window, n, whole, noerror) | |||
| 5175 | if (noerror) | 5175 | if (noerror) |
| 5176 | return; | 5176 | return; |
| 5177 | else | 5177 | else |
| 5178 | Fsignal (Qbeginning_of_buffer, Qnil); | 5178 | xsignal0 (Qbeginning_of_buffer); |
| 5179 | } | 5179 | } |
| 5180 | 5180 | ||
| 5181 | if (pos < ZV) | 5181 | if (pos < ZV) |
| @@ -5261,7 +5261,7 @@ window_scroll_line_based (window, n, whole, noerror) | |||
| 5261 | if (noerror) | 5261 | if (noerror) |
| 5262 | return; | 5262 | return; |
| 5263 | else | 5263 | else |
| 5264 | Fsignal (Qend_of_buffer, Qnil); | 5264 | xsignal0 (Qend_of_buffer); |
| 5265 | } | 5265 | } |
| 5266 | } | 5266 | } |
| 5267 | 5267 | ||