diff options
| author | Eli Zaretskii | 2016-09-07 20:37:31 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-09-07 20:37:31 +0300 |
| commit | 139289426d1b2c90335cec86c5ac19c51bf08bfc (patch) | |
| tree | 988ecff2b2669fa56b1889b4716ebc1173040115 | |
| parent | 304a5c8ef9a7ff86b85ee2b32834f72eb86e17f4 (diff) | |
| download | emacs-139289426d1b2c90335cec86c5ac19c51bf08bfc.tar.gz emacs-139289426d1b2c90335cec86c5ac19c51bf08bfc.zip | |
; * etc/DEBUG: Minor copyedits.
| -rw-r--r-- | etc/DEBUG | 12 |
1 files changed, 8 insertions, 4 deletions
| @@ -208,10 +208,14 @@ is Fredraw_display, which you can invoke at will interactively with | |||
| 208 | It is also useful to have a guaranteed way to return to the debugger | 208 | It is also useful to have a guaranteed way to return to the debugger |
| 209 | at any arbitrary time. When using X, this is easy: type C-z at the | 209 | at any arbitrary time. When using X, this is easy: type C-z at the |
| 210 | window where you are interacting with GDB, and it will stop Emacs just | 210 | window where you are interacting with GDB, and it will stop Emacs just |
| 211 | as it would stop any ordinary program. When Emacs is displaying on a | 211 | as it would stop any ordinary program. (This doesn't work if GDB was |
| 212 | text terminal, things are not so easy, so we describe the various | 212 | attached to a running Emacs process; in that case, you will need to |
| 213 | alternatives below (however, those of them that use signals only work | 213 | type C-z to the shell window from which Emacs was started, or use the |
| 214 | on Posix systems). | 214 | "kill -TSTP" method described below.) |
| 215 | |||
| 216 | When Emacs is displaying on a text terminal, things are not so easy, | ||
| 217 | so we describe the various alternatives below (however, those of them | ||
| 218 | that use signals only work on Posix systems). | ||
| 215 | 219 | ||
| 216 | The src/.gdbinit file in the Emacs distribution arranges for SIGINT | 220 | The src/.gdbinit file in the Emacs distribution arranges for SIGINT |
| 217 | (C-g in Emacs on a text-mode frame) to be passed to Emacs and not give | 221 | (C-g in Emacs on a text-mode frame) to be passed to Emacs and not give |