diff options
| author | Eli Zaretskii | 2001-02-02 16:14:19 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-02-02 16:14:19 +0000 |
| commit | 8e92a96a37cbc5b8062976fe4b249665c7e5ca70 (patch) | |
| tree | 6e667500df1eee880476018b4bcc9a3084ee897a | |
| parent | 79fb38c035098e11ef7784b32a5576acd9834090 (diff) | |
| download | emacs-8e92a96a37cbc5b8062976fe4b249665c7e5ca70.tar.gz emacs-8e92a96a37cbc5b8062976fe4b249665c7e5ca70.zip | |
Fix a couple of typos.
| -rw-r--r-- | etc/DEBUG | 14 |
1 files changed, 7 insertions, 7 deletions
| @@ -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 | ||
| 370 | Some people who are willing to use non-free software use Purify. We | 370 | Some people who are willing to use non-free software use Purify. We |
| 371 | can't ethically ask you to you become a Purify user; but if you have | 371 | can't ethically ask you to become a Purify user; but if you have it, |
| 372 | it, and you test Emacs with it, we will not refuse to look at the | 372 | and you test Emacs with it, we will not refuse to look at the results |
| 373 | results you find. | 373 | you find. |
| 374 | 374 | ||
| 375 | Emacs compiled with Purify won't run without some hacking. Here are | 375 | Emacs compiled with Purify won't run without some hacking. Here are |
| 376 | some of the changes you might find necessary (SYSTEM-NAME and | 376 | some 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'): | |||
| 396 | Note that Purify might print lots of false alarms for bitfields used | 396 | Note that Purify might print lots of false alarms for bitfields used |
| 397 | by Emacs in some data structures. If you want to get rid of the false | 397 | by Emacs in some data structures. If you want to get rid of the false |
| 398 | alarms, you will have to hack the definitions of these data structures | 398 | alarms, you will have to hack the definitions of these data structures |
| 399 | on the respective headers to remove the ":N" bitfield definitions | 399 | on 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 | |||
| 415 | that objects were marked. | 415 | that objects were marked. |
| 416 | 416 | ||
| 417 | Once you discover the corrupted Lisp object or data structure, it is | 417 | Once you discover the corrupted Lisp object or data structure, it is |
| 418 | useful to look at it in a fresh session and compare its contents with | 418 | useful to look at it in a fresh Emacs session and compare its contents |
| 419 | a session that you are debugging. | 419 | with 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 | ||