projects
/
m17n
/
m17n-lib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95b1fc5
)
(mface_put_prop): If the new value is the same as the
author
handa
<handa>
Fri, 27 Aug 2004 07:47:00 +0000
(07:47 +0000)
committer
handa
<handa>
Fri, 27 Aug 2004 07:47:00 +0000
(07:47 +0000)
current one, don't increment frame->tick.
src/face.c
patch
|
blob
|
history
diff --git
a/src/face.c
b/src/face.c
index
eb7a0b1
..
ad167a0
100644
(file)
--- a/
src/face.c
+++ b/
src/face.c
@@
-1723,6
+1723,9
@@
mface_put_prop (MFace *face, MSymbol key, void *val)
val = get_hline_create (val);
else if (key == Mbox)
val = get_box_create (val);
+
+ if (face->properties[index] == val)
+ return 0;
face->property[index] = val;
MPLIST_DO (plist, face->frame_list)