1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 22:11:21 -08:00

; Fix typos

This commit is contained in:
Stefan Kangas 2023-12-10 13:22:04 +01:00
parent 1d5028ad04
commit 06a12b0ccc
77 changed files with 148 additions and 148 deletions

View file

@ -15,7 +15,7 @@ Java is required because the entire Android runtime is based around
Java, and there is no way to write an Android program which runs
without Java.
This text exists to prime other Emacs developers, already familar with
This text exists to prime other Emacs developers, already familiar with
C, on the basic architecture of the Android port, and to teach them
how to read and write the Java code found in this directory.
@ -570,7 +570,7 @@ Let us go back and review the definition of ``startEmacsService'':
context.startService (new Intent (context,
EmacsService.class));
else
/* Display the permanant notification and start Emacs as a
/* Display the permanent notification and start Emacs as a
foreground service. */
context.startForegroundService (new Intent (context,
EmacsService.class));
@ -796,7 +796,7 @@ Next, `max_handle' is saved, and a new handle is allocated for
if (!window)
error ("Out of window handles!");
An error is signalled if Emacs runs out of available handles.
An error is signaled if Emacs runs out of available handles.
if (!class)
{