diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/coding.c b/src/coding.c index f6310369ad3..cb13793daba 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -1051,9 +1051,10 @@ coding_set_source (struct coding_system *coding) | |||
| 1051 | coding->source = SDATA (coding->src_object) + coding->src_pos_byte; | 1051 | coding->source = SDATA (coding->src_object) + coding->src_pos_byte; |
| 1052 | } | 1052 | } |
| 1053 | else | 1053 | else |
| 1054 | /* Otherwise, the source is C string and is never relocated | 1054 | { |
| 1055 | automatically. Thus we don't have to update anything. */ | 1055 | /* Otherwise, the source is C string and is never relocated |
| 1056 | ; | 1056 | automatically. Thus we don't have to update anything. */ |
| 1057 | } | ||
| 1057 | } | 1058 | } |
| 1058 | 1059 | ||
| 1059 | static void | 1060 | static void |
| @@ -1079,9 +1080,10 @@ coding_set_destination (struct coding_system *coding) | |||
| 1079 | } | 1080 | } |
| 1080 | } | 1081 | } |
| 1081 | else | 1082 | else |
| 1082 | /* Otherwise, the destination is C string and is never relocated | 1083 | { |
| 1083 | automatically. Thus we don't have to update anything. */ | 1084 | /* Otherwise, the destination is C string and is never relocated |
| 1084 | ; | 1085 | automatically. Thus we don't have to update anything. */ |
| 1086 | } | ||
| 1085 | } | 1087 | } |
| 1086 | 1088 | ||
| 1087 | 1089 | ||