diff options
| author | Basil L. Contovounesios | 2021-03-10 23:28:28 +0000 |
|---|---|---|
| committer | Basil L. Contovounesios | 2021-03-10 23:28:28 +0000 |
| commit | f695fdfef7d8e9ea4e0e17b69e0a28f952db55d6 (patch) | |
| tree | 41a3ad5ce0021fbcf05e14e544ebc24a3b9faca9 | |
| parent | c93447eac6f801d7ff97ed6dad368dc49d55cc46 (diff) | |
| download | emacs-f695fdfef7d8e9ea4e0e17b69e0a28f952db55d6.tar.gz emacs-f695fdfef7d8e9ea4e0e17b69e0a28f952db55d6.zip | |
; Fix US spelling in last change.
| -rw-r--r-- | doc/lispref/display.texi | 2 | ||||
| -rw-r--r-- | src/image.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 3d91ed27642..6dfbabb2b63 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -5396,7 +5396,7 @@ is performed after scaling and cropping. | |||
| 5396 | When @code{t} any image transform will have smoothing applied, and if | 5396 | When @code{t} any image transform will have smoothing applied, and if |
| 5397 | @code{nil} no smoothing will be applied. The exact algorithm used | 5397 | @code{nil} no smoothing will be applied. The exact algorithm used |
| 5398 | will be platform dependent, but should be equivalent to bilinear | 5398 | will be platform dependent, but should be equivalent to bilinear |
| 5399 | filtering. Disabling smoothing will use a nearest neighbour | 5399 | filtering. Disabling smoothing will use a nearest neighbor |
| 5400 | algorithm. | 5400 | algorithm. |
| 5401 | 5401 | ||
| 5402 | The default, if this property is not specified, will be for | 5402 | The default, if this property is not specified, will be for |
diff --git a/src/image.c b/src/image.c index 95ae573354d..485e08a66e0 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -2225,7 +2225,7 @@ image_set_transform (struct frame *f, struct image *img) | |||
| 2225 | compute_image_rotation (img, &rotation); | 2225 | compute_image_rotation (img, &rotation); |
| 2226 | 2226 | ||
| 2227 | # if defined USE_CAIRO || defined HAVE_XRENDER || defined HAVE_NS | 2227 | # if defined USE_CAIRO || defined HAVE_XRENDER || defined HAVE_NS |
| 2228 | /* We want scale up operations to use a nearest neighbour filter to | 2228 | /* We want scale up operations to use a nearest neighbor filter to |
| 2229 | show real pixels instead of munging them, but scale down | 2229 | show real pixels instead of munging them, but scale down |
| 2230 | operations to use a blended filter, to avoid aliasing and the like. | 2230 | operations to use a blended filter, to avoid aliasing and the like. |
| 2231 | 2231 | ||