diff options
| author | Andrea Corallo | 2020-06-13 08:04:09 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-06-13 08:05:48 +0200 |
| commit | 88a116d3778982265bdccdd7196a8d76a45736f1 (patch) | |
| tree | c2da138d95b76e0e4cf5b55fdf75f523f344b54c /src/alloc.c | |
| parent | a6cc16d04ca98bcf38c7ebf4d0c5bf68b6b37369 (diff) | |
| download | emacs-88a116d3778982265bdccdd7196a8d76a45736f1.tar.gz emacs-88a116d3778982265bdccdd7196a8d76a45736f1.zip | |
* src/alloc.c (cleanup_vector): Fix --enable-check-lisp-object-type build.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 750ffbd2dd8..514810b83fa 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3161,7 +3161,7 @@ cleanup_vector (struct Lisp_Vector *vector) | |||
| 3161 | { | 3161 | { |
| 3162 | struct Lisp_Subr *subr = | 3162 | struct Lisp_Subr *subr = |
| 3163 | PSEUDOVEC_STRUCT (vector, Lisp_Subr); | 3163 | PSEUDOVEC_STRUCT (vector, Lisp_Subr); |
| 3164 | if (subr->native_comp_u[0]) | 3164 | if (!NILP (subr->native_comp_u[0])) |
| 3165 | { | 3165 | { |
| 3166 | xfree (subr->symbol_name); | 3166 | xfree (subr->symbol_name); |
| 3167 | xfree (subr->native_c_name[0]); | 3167 | xfree (subr->native_c_name[0]); |