From 3dcac22dd4225fdec0b97408da38f74de2a77bef Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 4 Jun 2024 22:13:47 -0700 Subject: Spelling fixes --- java/AndroidManifest.xml.in | 2 +- java/INSTALL | 2 +- java/org/gnu/emacs/EmacsDesktopNotification.java | 2 +- java/org/gnu/emacs/EmacsGC.java | 2 +- java/org/gnu/emacs/EmacsTileObject.java | 2 +- java/org/gnu/emacs/EmacsWindowManager.java | 6 +++--- 6 files changed, 8 insertions(+), 8 deletions(-) (limited to 'java') diff --git a/java/AndroidManifest.xml.in b/java/AndroidManifest.xml.in index ff811ddf3f1..644f154b53b 100644 --- a/java/AndroidManifest.xml.in +++ b/java/AndroidManifest.xml.in @@ -20,7 +20,7 @@ along with GNU Emacs. If not, see . --> diff --git a/java/INSTALL b/java/INSTALL index 94bf0b01a96..a4cc97e7710 100644 --- a/java/INSTALL +++ b/java/INSTALL @@ -170,7 +170,7 @@ In normal circumstances, Emacs should automatically detect and configure one of the C++ standard libraries part of the NDK when such a library is required to build a dependency specified under `--with-ndk-path'. -Nevertheless, this process is not infalliable, and with certain versions +Nevertheless, this process is not infallible, and with certain versions of the NDK is liable to fail to locate a C++ compiler, requiring that you run the `make_standalone_toolchain.py' script in the NDK distribution to create a ``standalone toolchain'' and substitute the diff --git a/java/org/gnu/emacs/EmacsDesktopNotification.java b/java/org/gnu/emacs/EmacsDesktopNotification.java index 72569631a8c..2bbfd867afa 100644 --- a/java/org/gnu/emacs/EmacsDesktopNotification.java +++ b/java/org/gnu/emacs/EmacsDesktopNotification.java @@ -83,7 +83,7 @@ public final class EmacsDesktopNotification notification. */ public final String[] actions, titles; - /* Delay in miliseconds after which this notification should be + /* Delay in milliseconds after which this notification should be automatically dismissed. */ public final long delay; diff --git a/java/org/gnu/emacs/EmacsGC.java b/java/org/gnu/emacs/EmacsGC.java index d400c23e067..0b0f09c7ab9 100644 --- a/java/org/gnu/emacs/EmacsGC.java +++ b/java/org/gnu/emacs/EmacsGC.java @@ -55,7 +55,7 @@ public final class EmacsGC extends EmacsHandleObject public EmacsPixmap clip_mask, stipple; public Paint gcPaint; - /* Drawable object for rendering the stiple bitmap. */ + /* Drawable object for rendering the stipple bitmap. */ public EmacsTileObject tileObject; /* ID incremented every time the clipping rectangles of any GC diff --git a/java/org/gnu/emacs/EmacsTileObject.java b/java/org/gnu/emacs/EmacsTileObject.java index a79ae826d51..93b09f5a8bc 100644 --- a/java/org/gnu/emacs/EmacsTileObject.java +++ b/java/org/gnu/emacs/EmacsTileObject.java @@ -27,7 +27,7 @@ import android.graphics.Paint; import android.graphics.Rect; import android.graphics.Shader.TileMode; -/* This is a crude facsimilie of the BitmapDrawable class implementing +/* This is a crude facsimile of the BitmapDrawable class implementing just enough of its functionality to support displaying stipples in EmacsGC. */ diff --git a/java/org/gnu/emacs/EmacsWindowManager.java b/java/org/gnu/emacs/EmacsWindowManager.java index 23dc71dbd29..03487e853fb 100644 --- a/java/org/gnu/emacs/EmacsWindowManager.java +++ b/java/org/gnu/emacs/EmacsWindowManager.java @@ -137,7 +137,7 @@ public final class EmacsWindowManager /* Don't attach this window to CONSUMER if incompatible. */ && isWindowEligible (consumer, window)) { - /* Permantly bind this window to the consumer. */ + /* Permanently bind this window to the consumer. */ window.attachmentToken = consumer.getAttachmentToken (); window.previouslyAttached = true; consumer.attachWindow (window); @@ -166,7 +166,7 @@ public final class EmacsWindowManager if (consumer.getAttachedWindow () == null && isWindowEligible (consumer, window)) { - /* Permantly bind this window to the consumer. */ + /* Permanently bind this window to the consumer. */ window.attachmentToken = consumer.getAttachmentToken (); window.previouslyAttached = true; consumer.attachWindow (window); @@ -186,7 +186,7 @@ public final class EmacsWindowManager intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); /* Intent.FLAG_ACTIVITY_NEW_DOCUMENT is lamentably unavailable on - older systems than Lolipop. */ + older systems than Lollipop. */ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { intent.addFlags (Intent.FLAG_ACTIVITY_NEW_DOCUMENT -- cgit v1.2.1