diff options
| author | Eli Zaretskii | 2020-03-29 19:14:13 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2020-03-29 19:14:13 +0300 |
| commit | f3ccfb19261172f94e5d77c8ed182f74f83045f6 (patch) | |
| tree | dd1777418d113a364dc334aeccd560269f1f7215 /src/decompress.c | |
| parent | 1af03e7e921e1a65aebc34526ca993efe7a1a333 (diff) | |
| download | emacs-f3ccfb19261172f94e5d77c8ed182f74f83045f6.tar.gz emacs-f3ccfb19261172f94e5d77c8ed182f74f83045f6.zip | |
; * src/decompress.c: Fix comment style.
Diffstat (limited to 'src/decompress.c')
| -rw-r--r-- | src/decompress.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/decompress.c b/src/decompress.c index 5d246387e76..8e8f2443111 100644 --- a/src/decompress.c +++ b/src/decompress.c | |||
| @@ -87,7 +87,7 @@ unwind_decompress (void *ddata) | |||
| 87 | 0); | 87 | 0); |
| 88 | update_compositions (data->start, data->start, CHECK_HEAD); | 88 | update_compositions (data->start, data->start, CHECK_HEAD); |
| 89 | /* "Balance" the before-change-functions call, which would | 89 | /* "Balance" the before-change-functions call, which would |
| 90 | otherwise be left "hanging". */ | 90 | otherwise be left "hanging". */ |
| 91 | signal_after_change (data->orig, data->start - data->orig, | 91 | signal_after_change (data->orig, data->start - data->orig, |
| 92 | data->start - data->orig); | 92 | data->start - data->orig); |
| 93 | } | 93 | } |
| @@ -159,7 +159,7 @@ This function can be called only in unibyte buffers. */) | |||
| 159 | istart = XFIXNUM (start); | 159 | istart = XFIXNUM (start); |
| 160 | iend = XFIXNUM (end); | 160 | iend = XFIXNUM (end); |
| 161 | 161 | ||
| 162 | /* Do the following before manipulating the gap. */ | 162 | /* Do the following before manipulating the gap. */ |
| 163 | modify_text (istart, iend); | 163 | modify_text (istart, iend); |
| 164 | 164 | ||
| 165 | move_gap_both (iend, iend); | 165 | move_gap_both (iend, iend); |
| @@ -224,7 +224,7 @@ This function can be called only in unibyte buffers. */) | |||
| 224 | unwind_data.start = 0; | 224 | unwind_data.start = 0; |
| 225 | 225 | ||
| 226 | /* Delete the compressed data. */ | 226 | /* Delete the compressed data. */ |
| 227 | del_range_2 (istart, istart, /* byte and char offsets are the same. */ | 227 | del_range_2 (istart, istart, /* byte and char offsets are the same */ |
| 228 | iend, iend, 0); | 228 | iend, iend, 0); |
| 229 | 229 | ||
| 230 | signal_after_change (istart, iend - istart, unwind_data.nbytes); | 230 | signal_after_change (istart, iend - istart, unwind_data.nbytes); |