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
1b65564c
Commit
1b65564c
authored
May 21, 2002
by
Ken Raeburn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
now, when the address is needed.
parent
171a7d5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/w32fns.c
src/w32fns.c
+1
-1
No files found.
src/ChangeLog
View file @
1b65564c
2002-05-21 Ken Raeburn <raeburn@gnu.org>
* w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
now, when the address is needed.
2002-05-21 Colin Walters <walters@gnu.org>
* Makefile.in (shortlisp): Add font-core.el.
...
...
src/w32fns.c
View file @
1b65564c
...
...
@@ -7252,7 +7252,7 @@ enum_font_maybe_add_to_list (lpef, logfont, match_charset, width)
if (NILP (Fmember (font_name, lpef->list)))
{
*lpef->tail = Fcons (Fcons (build_string (buf), width), Qnil);
lpef->tail = &(XCDR (*lpef->tail));
lpef->tail = &(XCDR
_AS_LVALUE
(*lpef->tail));
lpef->numFonts++;
}
}
...
...
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