diff options
| author | Stefan Kangas | 2023-12-10 13:22:04 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-12-10 13:22:04 +0100 |
| commit | 06a12b0cccbda419752f3388346be7d302ebcbeb (patch) | |
| tree | 69c3a4c23638553993a7580cae4a4d597fd8e258 /admin/notes/java | |
| parent | 1d5028ad0414cad458aac1102d3612e4956068c5 (diff) | |
| download | emacs-06a12b0cccbda419752f3388346be7d302ebcbeb.tar.gz emacs-06a12b0cccbda419752f3388346be7d302ebcbeb.zip | |
; Fix typos
Diffstat (limited to 'admin/notes/java')
| -rw-r--r-- | admin/notes/java | 6 |
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 | |||
| 15 | Java, and there is no way to write an Android program which runs | 15 | Java, and there is no way to write an Android program which runs |
| 16 | without Java. | 16 | without Java. |
| 17 | 17 | ||
| 18 | This text exists to prime other Emacs developers, already familar with | 18 | This text exists to prime other Emacs developers, already familiar with |
| 19 | C, on the basic architecture of the Android port, and to teach them | 19 | C, on the basic architecture of the Android port, and to teach them |
| 20 | how to read and write the Java code found in this directory. | 20 | how 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 | ||
| 799 | An error is signalled if Emacs runs out of available handles. | 799 | An error is signaled if Emacs runs out of available handles. |
| 800 | 800 | ||
| 801 | if (!class) | 801 | if (!class) |
| 802 | { | 802 | { |