diff options
| author | Gerd Moellmann | 1999-07-26 11:50:17 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-07-26 11:50:17 +0000 |
| commit | 54c85a234b53591351903d9d51786bd53e8d8761 (patch) | |
| tree | 9a0fd50b0f7a5e0781d31907c3435d857f1974de /src | |
| parent | d6fc0a22556e390827bf330c821a0876bb6903a6 (diff) | |
| download | emacs-54c85a234b53591351903d9d51786bd53e8d8761.tar.gz emacs-54c85a234b53591351903d9d51786bd53e8d8761.zip | |
(get_next_display_element): Display DEL as `^?'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index c74e3f95ce4..21c4400145b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -3282,7 +3282,7 @@ get_next_display_element (it) | |||
| 3282 | || (it->c != '\n' | 3282 | || (it->c != '\n' |
| 3283 | && it->c != '\t' | 3283 | && it->c != '\t' |
| 3284 | && it->c != '\r'))) | 3284 | && it->c != '\r'))) |
| 3285 | || (it->c >= 128 | 3285 | || (it->c >= 127 |
| 3286 | && it->len == 1)) | 3286 | && it->len == 1)) |
| 3287 | { | 3287 | { |
| 3288 | /* IT->c is a control character which must be displayed | 3288 | /* IT->c is a control character which must be displayed |
| @@ -3292,7 +3292,7 @@ get_next_display_element (it) | |||
| 3292 | display. Then, set IT->dpvec to these glyphs. */ | 3292 | display. Then, set IT->dpvec to these glyphs. */ |
| 3293 | GLYPH g; | 3293 | GLYPH g; |
| 3294 | 3294 | ||
| 3295 | if (it->c < ' ' && it->ctl_arrow_p) | 3295 | if (it->c < 128 && it->ctl_arrow_p) |
| 3296 | { | 3296 | { |
| 3297 | /* Set IT->ctl_chars[0] to the glyph for `^'. */ | 3297 | /* Set IT->ctl_chars[0] to the glyph for `^'. */ |
| 3298 | if (it->dp | 3298 | if (it->dp |