1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-02 21:52:04 -08:00

Spelling fixes

This commit is contained in:
Paul Eggert 2024-06-04 22:13:47 -07:00
parent 636461686f
commit 3dcac22dd4
47 changed files with 65 additions and 65 deletions

View file

@ -20,7 +20,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. -->
<!-- targetSandboxVersion must be 1, for otherwise fascist security
restrictions prevent Emacs from making HTTP connections.
Futhermore, versionCode should remain constant, rather than increase
Furthermore, versionCode should remain constant, rather than increase
with each major release, because it is impossible to downgrade an
installation with a greater value to an older version of Emacs. -->

View file

@ -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

View file

@ -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;

View file

@ -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

View file

@ -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. */

View file

@ -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