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
9426aba4
Commit
9426aba4
authored
Apr 15, 2012
by
Paul Eggert
Browse files
* alloc.c (which_symbols): Fix alignment issue / type clash.
parent
d55c12ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/alloc.c
src/alloc.c
+3
-2
No files found.
src/ChangeLog
View file @
9426aba4
2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
* alloc.c (which_symbols): Fix alignment issue / type clash.
2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
* lisp.h (struct Lisp_Symbol): Remove explicit padding.
...
...
src/alloc.c
View file @
9426aba4
...
...
@@ -6320,11 +6320,12 @@ which_symbols (Lisp_Object obj, EMACS_INT find_max)
{
for
(
sblk
=
symbol_block
;
sblk
;
sblk
=
sblk
->
next
)
{
struct
Lisp_Symbol
*
sym
=
sblk
->
symbols
;
union
aligned_
Lisp_Symbol
*
aligned_
sym
=
sblk
->
symbols
;
int
bn
;
for
(
bn
=
0
;
bn
<
SYMBOL_BLOCK_SIZE
;
bn
++
,
sym
++
)
for
(
bn
=
0
;
bn
<
SYMBOL_BLOCK_SIZE
;
bn
++
,
aligned_
sym
++
)
{
struct
Lisp_Symbol
*
sym
=
&
aligned_sym
->
s
;
Lisp_Object
val
;
Lisp_Object
tem
;
...
...
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