Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1570ae92
Commit
1570ae92
authored
Aug 26, 2013
by
Dmitry Antipov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alloc.c (sweep_vectors): Do not initialize 'block' twice.
parent
c76826d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/alloc.c
src/alloc.c
+1
-1
No files found.
src/alloc.c
View file @
1570ae92
...
...
@@ -2805,7 +2805,7 @@ vector_nbytes (struct Lisp_Vector *v)
static
void
sweep_vectors
(
void
)
{
struct
vector_block
*
block
=
vector_blocks
,
**
bprev
=
&
vector_blocks
;
struct
vector_block
*
block
,
**
bprev
=
&
vector_blocks
;
struct
large_vector
*
lv
,
**
lvprev
=
&
large_vectors
;
struct
Lisp_Vector
*
vector
,
*
next
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment