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
3046c3f9
Commit
3046c3f9
authored
Aug 04, 2006
by
Eli Zaretskii
Browse files
(w32_query_font): Fix last change: use stricmp.
parent
04146a36
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/w32fns.c
src/w32fns.c
+1
-1
No files found.
src/ChangeLog
View file @
3046c3f9
2006-08-04 Eli Zaretskii <eliz@gnu.org>
* w32fns.c (w32_query_font): Fix last change: use stricmp.
2006-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
* editfns.c (Fsubst_char_in_region): Redo the setup work after running
...
...
src/w32fns.c
View file @
3046c3f9
...
...
@@ -6236,7 +6236,7 @@ w32_query_font (struct frame *f, char *fontname)
for (i = 0; i < one_w32_display_info.n_fonts ;i++, pfi++)
{
if (str
case
cmp(pfi->name, fontname) == 0) return pfi;
if (str
i
cmp(pfi->name, fontname) == 0) return pfi;
}
return NULL;
...
...
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