diff options
| author | Dan Nicolaescu <dann@ics.uci.edu> | 2004-12-28 18:22:55 +0000 |
|---|---|---|
| committer | Dan Nicolaescu <dann@ics.uci.edu> | 2004-12-28 18:22:55 +0000 |
| commit | 4b9829242b7a60b00e0b138d8cb0e71f7d9af46a (patch) | |
| tree | 0982d8844b46f796d24014bb1788e6a1bb10948e /src | |
| parent | 93fdf45f6514ddd7643583ed35b191d2776f1553 (diff) | |
| download | emacs-4b9829242b7a60b00e0b138d8cb0e71f7d9af46a.tar.gz | |
(decode_coding): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/coding.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d68b775967d..c6367f760c1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2004-12-28 Dan Nicolaescu <dann@ics.uci.edu> + + * coding.c (decode_coding): Fix previous change. + 2004-12-28 Richard M. Stallman <rms@gnu.org> * xdisp.c (back_to_previous_visible_line_start): diff --git a/src/coding.c b/src/coding.c index f87d02d5758..400210f4cd4 100644 --- a/src/coding.c +++ b/src/coding.c @@ -4870,7 +4870,7 @@ decode_eol_post_ccl (coding, ptr, bytes) int decode_coding (coding, source, destination, src_bytes, dst_bytes) struct coding_system *coding; - const const unsigned char *source; + const unsigned char *source; unsigned char *destination; int src_bytes, dst_bytes; { |
