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
088c8c37
Commit
088c8c37
authored
Sep 18, 2007
by
Stefan Monnier
Browse files
(Fplist_put): Preserve uneven tail data.
parent
fa5cea67
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/fns.c
src/fns.c
+1
-1
No files found.
src/ChangeLog
View file @
088c8c37
2007-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
* fns.c (Fplist_put): Preserve uneven tail data.
2007-09-16 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
...
...
src/fns.c
View file @
088c8c37
...
...
@@ -2060,7 +2060,7 @@ The PLIST is modified by side effects. */)
prev
=
tail
;
QUIT
;
}
newcell
=
Fcons
(
prop
,
Fcons
(
val
,
Qnil
));
newcell
=
Fcons
(
prop
,
Fcons
(
val
,
NILP
(
prev
)
?
plist
:
XCDR
(
XCDR
(
prev
))
));
if
(
NILP
(
prev
))
return
newcell
;
else
...
...
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