aboutsummaryrefslogtreecommitdiffstats
path: root/admin/notes/java
diff options
context:
space:
mode:
Diffstat (limited to 'admin/notes/java')
-rw-r--r--admin/notes/java6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/notes/java b/admin/notes/java
index 125ac0aad67..6a66d1aa765 100644
--- a/admin/notes/java
+++ b/admin/notes/java
@@ -15,7 +15,7 @@ Java is required because the entire Android runtime is based around
15Java, and there is no way to write an Android program which runs 15Java, and there is no way to write an Android program which runs
16without Java. 16without Java.
17 17
18This text exists to prime other Emacs developers, already familar with 18This text exists to prime other Emacs developers, already familiar with
19C, on the basic architecture of the Android port, and to teach them 19C, on the basic architecture of the Android port, and to teach them
20how to read and write the Java code found in this directory. 20how to read and write the Java code found in this directory.
21 21
@@ -570,7 +570,7 @@ Let us go back and review the definition of ``startEmacsService'':
570 context.startService (new Intent (context, 570 context.startService (new Intent (context,
571 EmacsService.class)); 571 EmacsService.class));
572 else 572 else
573 /* Display the permanant notification and start Emacs as a 573 /* Display the permanent notification and start Emacs as a
574 foreground service. */ 574 foreground service. */
575 context.startForegroundService (new Intent (context, 575 context.startForegroundService (new Intent (context,
576 EmacsService.class)); 576 EmacsService.class));
@@ -796,7 +796,7 @@ Next, `max_handle' is saved, and a new handle is allocated for
796 if (!window) 796 if (!window)
797 error ("Out of window handles!"); 797 error ("Out of window handles!");
798 798
799An error is signalled if Emacs runs out of available handles. 799An error is signaled if Emacs runs out of available handles.
800 800
801 if (!class) 801 if (!class)
802 { 802 {