summaryrefslogtreecommitdiff
path: root/java/org/gnu/emacs/EmacsWindowManager.java
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2024-06-04 22:13:47 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2024-06-04 22:16:28 -0700
commit3dcac22dd4225fdec0b97408da38f74de2a77bef (patch)
treec79a8563efbed67aae0bba5d46b628c1e8a5b69b /java/org/gnu/emacs/EmacsWindowManager.java
parent636461686f1d36388d4523cbb10eb7ec3bbbd63e (diff)
Spelling fixes
Diffstat (limited to 'java/org/gnu/emacs/EmacsWindowManager.java')
-rw-r--r--java/org/gnu/emacs/EmacsWindowManager.java6
1 files changed, 3 insertions, 3 deletions
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