summaryrefslogtreecommitdiff
path: root/src/unexec.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-05 10:03:17 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-05 10:03:17 +0000
commit5bd22ef8faca6c75d525ca858303ea7389257cb1 (patch)
treee8552da69ae0f28b512fd096b0759f7a7b72c03c /src/unexec.c
parented4c7adf5b51fa14a04dbe148f0536e2f9fb64c5 (diff)
downloademacs-5bd22ef8faca6c75d525ca858303ea7389257cb1.tar.gz
Comment fixes.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexec.c b/src/unexec.c
index 8387fd044e9..6b6136beadd 100644
--- a/src/unexec.c
+++ b/src/unexec.c
@@ -915,8 +915,8 @@ copy_text_and_data (new, a_out)
* runs, it copies the table to where these parameters live during
* execution. This data is in text space, so it cannot be modified here
* before saving the executable, so the data is written manually. In
- * addition, the table does not have a label, and the nearest accessable
- * label (mcount) is not prefixed with a '_', thus making it inaccessable
+ * addition, the table does not have a label, and the nearest accessible
+ * label (mcount) is not prefixed with a '_', thus making it inaccessible
* from within C programs. To overcome this, emacs's executable is passed
* through the command 'nm %s | fgrep mcount' into a pipe, and the
* resultant output is then used to find the address of 'mcount'. As far as