From: Basil L. Contovounesios Date: Wed, 10 Mar 2021 23:28:28 +0000 (+0000) Subject: ; Fix US spelling in last change. X-Git-Tag: emacs-28.0.90~3334 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f695fdfef7d8e9ea4e0e17b69e0a28f952db55d6;p=emacs.git ; Fix US spelling in last change. --- 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. When @code{t} any image transform will have smoothing applied, and if @code{nil} no smoothing will be applied. The exact algorithm used will be platform dependent, but should be equivalent to bilinear -filtering. Disabling smoothing will use a nearest neighbour +filtering. Disabling smoothing will use a nearest neighbor algorithm. 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) compute_image_rotation (img, &rotation); # if defined USE_CAIRO || defined HAVE_XRENDER || defined HAVE_NS - /* We want scale up operations to use a nearest neighbour filter to + /* We want scale up operations to use a nearest neighbor filter to show real pixels instead of munging them, but scale down operations to use a blended filter, to avoid aliasing and the like.