aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-02-02 16:14:19 +0000
committerEli Zaretskii2001-02-02 16:14:19 +0000
commit8e92a96a37cbc5b8062976fe4b249665c7e5ca70 (patch)
tree6e667500df1eee880476018b4bcc9a3084ee897a
parent79fb38c035098e11ef7784b32a5576acd9834090 (diff)
downloademacs-8e92a96a37cbc5b8062976fe4b249665c7e5ca70.tar.gz
emacs-8e92a96a37cbc5b8062976fe4b249665c7e5ca70.zip
Fix a couple of typos.
-rw-r--r--etc/DEBUG14
1 files changed, 7 insertions, 7 deletions
diff --git a/etc/DEBUG b/etc/DEBUG
index f78656cb3b4..9fb021cf6a2 100644
--- a/etc/DEBUG
+++ b/etc/DEBUG
@@ -368,9 +368,9 @@ the machine where you started GDB and use the debugger from there.
368** Running Emacs with Purify 368** Running Emacs with Purify
369 369
370Some people who are willing to use non-free software use Purify. We 370Some people who are willing to use non-free software use Purify. We
371can't ethically ask you to you become a Purify user; but if you have 371can't ethically ask you to become a Purify user; but if you have it,
372it, and you test Emacs with it, we will not refuse to look at the 372and you test Emacs with it, we will not refuse to look at the results
373results you find. 373you find.
374 374
375Emacs compiled with Purify won't run without some hacking. Here are 375Emacs compiled with Purify won't run without some hacking. Here are
376some of the changes you might find necessary (SYSTEM-NAME and 376some of the changes you might find necessary (SYSTEM-NAME and
@@ -387,7 +387,7 @@ subdirectories of `src'):
387 than with 2.95 or later versions. 387 than with 2.95 or later versions.
388 388
389 - Type "make" then "make -k install". You might need to run 389 - Type "make" then "make -k install". You might need to run
390 "make -k install twice. 390 "make -k install" twice.
391 391
392 - cd src; purify -chain-length=40 gcc <link command line for temacs> 392 - cd src; purify -chain-length=40 gcc <link command line for temacs>
393 393
@@ -396,7 +396,7 @@ subdirectories of `src'):
396Note that Purify might print lots of false alarms for bitfields used 396Note that Purify might print lots of false alarms for bitfields used
397by Emacs in some data structures. If you want to get rid of the false 397by Emacs in some data structures. If you want to get rid of the false
398alarms, you will have to hack the definitions of these data structures 398alarms, you will have to hack the definitions of these data structures
399on the respective headers to remove the ":N" bitfield definitions 399on the respective headers to remove the `:N' bitfield definitions
400(which will cause each such field to use a full int). 400(which will cause each such field to use a full int).
401 401
402** Debugging problems which happen in GC 402** Debugging problems which happen in GC
@@ -415,8 +415,8 @@ Use the `last_marked' array and the source to reconstruct the sequence
415that objects were marked. 415that objects were marked.
416 416
417Once you discover the corrupted Lisp object or data structure, it is 417Once you discover the corrupted Lisp object or data structure, it is
418useful to look at it in a fresh session and compare its contents with 418useful to look at it in a fresh Emacs session and compare its contents
419a session that you are debugging. 419with a session that you are debugging.
420 420
421** Some suggestions for debugging on MS Windows: 421** Some suggestions for debugging on MS Windows:
422 422