mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-18 11:50:38 -08:00
* coding.c (encode_designation_at_bol): Don't use uninitialized
local variable (Bug#9318).
This commit is contained in:
parent
fa46310344
commit
75a3b399a3
2 changed files with 6 additions and 1 deletions
|
|
@ -4356,7 +4356,7 @@ encode_designation_at_bol (struct coding_system *coding,
|
|||
int *charbuf, int *charbuf_end,
|
||||
unsigned char *dst)
|
||||
{
|
||||
unsigned char *orig;
|
||||
unsigned char *orig = dst;
|
||||
struct charset *charset;
|
||||
/* Table of charsets to be designated to each graphic register. */
|
||||
int r[4];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue