Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e1528d01
Commit
e1528d01
authored
Jun 18, 2011
by
Paul Eggert
Browse files
* fns.c (Ffillarray): Don't shadow a local.
parent
a9e860e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/fns.c
src/fns.c
+3
-2
No files found.
src/fns.c
View file @
e1528d01
...
...
@@ -2183,8 +2183,9 @@ ARRAY is a vector, string, char-table, or bool-vector. */)
else if (BOOL_VECTOR_P (array))
{
register unsigned char *p = XBOOL_VECTOR (array)->data;
EMACS_INT size = XBOOL_VECTOR (array)->size;
EMACS_INT size_in_chars
EMACS_INT size_in_chars;
size = XBOOL_VECTOR (array)->size;
size_in_chars
= ((size + BOOL_VECTOR_BITS_PER_CHAR - 1)
/ BOOL_VECTOR_BITS_PER_CHAR);
...
...
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