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
commit8e6208c5d2c91d70f2338d1c3d788e194c6c9d52 (patch)
tree8f5bfe00dcb80384d562fad62d2166df9b06bec0 /src/unexec.c
parent34035df32674d5a6a4eb4112dfa5ea69b4dec64f (diff)
downloademacs-8e6208c5d2c91d70f2338d1c3d788e194c6c9d52.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