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
f6204a24
Commit
f6204a24
authored
May 14, 2008
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(internal_equal): Handle PREV_FONT.
parent
581f7ac7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/fns.c
src/fns.c
+4
-3
No files found.
src/fns.c
View file @
f6204a24
...
...
@@ -2207,12 +2207,13 @@ internal_equal (o1, o2, depth, props)
if
(
WINDOW_CONFIGURATIONP
(
o1
))
return
compare_window_configurations
(
o1
,
o2
,
0
);
/* Aside from them, only true vectors, char-tables, and compiled
functions are sensible to compare, so eliminate the others now. */
/* Aside from them, only true vectors, char-tables, compiled
functions, and fonts (font-spec, font-entity, font-ojbect)
are sensible to compare, so eliminate the others now. */
if
(
size
&
PSEUDOVECTOR_FLAG
)
{
if
(
!
(
size
&
(
PVEC_COMPILED
|
PVEC_CHAR_TABLE
|
PVEC_SUB_CHAR_TABLE
)))
|
PVEC_CHAR_TABLE
|
PVEC_SUB_CHAR_TABLE
|
PVEC_FONT
)))
return
0
;
size
&=
PSEUDOVECTOR_SIZE_MASK
;
}
...
...
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