* AUTO_COMPOSED_PROP_IDX unused?
@ 2009-11-28 16:30 Eli Zaretskii
2009-11-28 19:04 ` Chong Yidong
2009-11-30 1:13 ` Kenichi Handa
0 siblings, 2 replies; 9+ messages in thread
From: Eli Zaretskii @ 2009-11-28 16:30 UTC (permalink / raw)
To: Kenichi Handa; +Cc: emacs-devel
In dispextern.h we have:
enum prop_idx
{
AUTO_COMPOSED_PROP_IDX,
FONTIFIED_PROP_IDX,
FACE_PROP_IDX,
INVISIBLE_PROP_IDX,
DISPLAY_PROP_IDX,
COMPOSITION_PROP_IDX,
/* Not a property. Used to indicate changes in overlays. */
OVERLAY_PROP_IDX,
/* Sentinel. */
LAST_PROP_IDX
};
However, no one seems to use AUTO_COMPOSED_PROP_IDX. It looks like a
left-over from the previous implementation of automatic compositions,
which used text properties.
OK to delete AUTO_COMPOSED_PROP_IDX from the enumeration?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-11-28 16:30 AUTO_COMPOSED_PROP_IDX unused? Eli Zaretskii
@ 2009-11-28 19:04 ` Chong Yidong
2009-11-28 19:28 ` Eli Zaretskii
2009-11-30 1:13 ` Kenichi Handa
1 sibling, 1 reply; 9+ messages in thread
From: Chong Yidong @ 2009-11-28 19:04 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: emacs-devel, Kenichi Handa
Eli Zaretskii <eliz@gnu.org> writes:
> In dispextern.h we have:
>
> enum prop_idx
> {
> AUTO_COMPOSED_PROP_IDX,
> FONTIFIED_PROP_IDX,
> FACE_PROP_IDX,
> INVISIBLE_PROP_IDX,
> DISPLAY_PROP_IDX,
> COMPOSITION_PROP_IDX,
>
> /* Not a property. Used to indicate changes in overlays. */
> OVERLAY_PROP_IDX,
>
> /* Sentinel. */
> LAST_PROP_IDX
> };
>
> However, no one seems to use AUTO_COMPOSED_PROP_IDX. It looks like a
> left-over from the previous implementation of automatic compositions,
> which used text properties.
>
> OK to delete AUTO_COMPOSED_PROP_IDX from the enumeration?
I'm not sure it's safe. If you want to do it, please wait till after
the 23.2 release.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-11-28 19:04 ` Chong Yidong
@ 2009-11-28 19:28 ` Eli Zaretskii
0 siblings, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2009-11-28 19:28 UTC (permalink / raw)
To: Chong Yidong; +Cc: emacs-devel, handa
> From: Chong Yidong <cyd@stupidchicken.com>
> Cc: Kenichi Handa <handa@m17n.org>, emacs-devel@gnu.org
> Date: Sat, 28 Nov 2009 14:04:48 -0500
>
> > OK to delete AUTO_COMPOSED_PROP_IDX from the enumeration?
>
> I'm not sure it's safe.
Did you see any evidence that it might be unsafe, or is that just
general precaution?
Suppose Handa-san tells us that it indeed was introduced for the
previous implementation of automatic compositions and was supposed to
be deleted when we switched to the current implementation -- will you
still want to wait until after v23.2 then?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-11-28 16:30 AUTO_COMPOSED_PROP_IDX unused? Eli Zaretskii
2009-11-28 19:04 ` Chong Yidong
@ 2009-11-30 1:13 ` Kenichi Handa
2009-12-01 4:14 ` Eli Zaretskii
1 sibling, 1 reply; 9+ messages in thread
From: Kenichi Handa @ 2009-11-30 1:13 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: emacs-devel
In article <83hbsemx26.fsf@gnu.org>, Eli Zaretskii <eliz@gnu.org> writes:
> In dispextern.h we have:
> enum prop_idx
> {
> AUTO_COMPOSED_PROP_IDX,
[...]
> However, no one seems to use AUTO_COMPOSED_PROP_IDX. It looks like a
> left-over from the previous implementation of automatic compositions,
> which used text properties.
Right. The current Emacs never put `auto-composed' property now.
> OK to delete AUTO_COMPOSED_PROP_IDX from the enumeration?
I think so.
In article <87skbyii7j.fsf@stupidchicken.com>, Chong Yidong <cyd@stupidchicken.com> writes:
> I'm not sure it's safe. If you want to do it, please wait till after
> the 23.2 release.
If deleting it causes a problem, it means that we have some
bug that is currently hidden but will be revealed by unknown
condition. It is better to find out such a bug if any.
---
Kenichi Handa
handa@m17n.org
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-11-30 1:13 ` Kenichi Handa
@ 2009-12-01 4:14 ` Eli Zaretskii
2009-12-01 15:55 ` Chong Yidong
0 siblings, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2009-12-01 4:14 UTC (permalink / raw)
To: Kenichi Handa, Chong Yidong; +Cc: emacs-devel
> From: Kenichi Handa <handa@m17n.org>
> Cc: emacs-devel@gnu.org
> Date: Mon, 30 Nov 2009 10:13:18 +0900
>
> In article <83hbsemx26.fsf@gnu.org>, Eli Zaretskii <eliz@gnu.org> writes:
>
> > In dispextern.h we have:
> > enum prop_idx
> > {
> > AUTO_COMPOSED_PROP_IDX,
> [...]
>
> > However, no one seems to use AUTO_COMPOSED_PROP_IDX. It looks like a
> > left-over from the previous implementation of automatic compositions,
> > which used text properties.
>
> Right. The current Emacs never put `auto-composed' property now.
>
> > OK to delete AUTO_COMPOSED_PROP_IDX from the enumeration?
>
> I think so.
>
> In article <87skbyii7j.fsf@stupidchicken.com>, Chong Yidong <cyd@stupidchicken.com> writes:
>
> > I'm not sure it's safe. If you want to do it, please wait till after
> > the 23.2 release.
>
> If deleting it causes a problem, it means that we have some
> bug that is currently hidden but will be revealed by unknown
> condition. It is better to find out such a bug if any.
Yidong, do you still want to wait with this until after v23.2, or can
I go ahead and delete AUTO_COMPOSED_PROP_IDX?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-12-01 4:14 ` Eli Zaretskii
@ 2009-12-01 15:55 ` Chong Yidong
2009-12-01 18:44 ` Eli Zaretskii
0 siblings, 1 reply; 9+ messages in thread
From: Chong Yidong @ 2009-12-01 15:55 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: emacs-devel, Kenichi Handa
Eli Zaretskii <eliz@gnu.org> writes:
> Yidong, do you still want to wait with this until after v23.2, or can
> I go ahead and delete AUTO_COMPOSED_PROP_IDX?
If you really want to do it, I won't insist, even though the benefit
seems minimal.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-12-01 15:55 ` Chong Yidong
@ 2009-12-01 18:44 ` Eli Zaretskii
2009-12-01 21:47 ` Stefan Monnier
0 siblings, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2009-12-01 18:44 UTC (permalink / raw)
To: Chong Yidong; +Cc: emacs-devel, handa
> From: Chong Yidong <cyd@stupidchicken.com>
> Cc: Kenichi Handa <handa@m17n.org>, emacs-devel@gnu.org
> Date: Tue, 01 Dec 2009 10:55:49 -0500
>
> Eli Zaretskii <eliz@gnu.org> writes:
>
> > Yidong, do you still want to wait with this until after v23.2, or can
> > I go ahead and delete AUTO_COMPOSED_PROP_IDX?
>
> If you really want to do it, I won't insist, even though the benefit
> seems minimal.
I don't insist, either. The only "benefit" is that I could otherwise
forget about this nit.
I could submit a bug instead, if you prefer that.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-12-01 18:44 ` Eli Zaretskii
@ 2009-12-01 21:47 ` Stefan Monnier
2009-12-04 10:54 ` Eli Zaretskii
0 siblings, 1 reply; 9+ messages in thread
From: Stefan Monnier @ 2009-12-01 21:47 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: Chong Yidong, handa, emacs-devel
>> > Yidong, do you still want to wait with this until after v23.2, or can
>> > I go ahead and delete AUTO_COMPOSED_PROP_IDX?
>>
>> If you really want to do it, I won't insist, even though the benefit
>> seems minimal.
> I don't insist, either. The only "benefit" is that I could otherwise
> forget about this nit.
> I could submit a bug instead, if you prefer that.
Please just remove it. It's 100% unused, there's no risk of it
introducing bugs.
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: AUTO_COMPOSED_PROP_IDX unused?
2009-12-01 21:47 ` Stefan Monnier
@ 2009-12-04 10:54 ` Eli Zaretskii
0 siblings, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2009-12-04 10:54 UTC (permalink / raw)
To: Stefan Monnier; +Cc: cyd, handa, emacs-devel
> From: Stefan Monnier <monnier@IRO.UMontreal.CA>
> Cc: Chong Yidong <cyd@stupidchicken.com>, emacs-devel@gnu.org, handa@m17n.org
> Date: Tue, 01 Dec 2009 16:47:58 -0500
>
> >> > Yidong, do you still want to wait with this until after v23.2, or can
> >> > I go ahead and delete AUTO_COMPOSED_PROP_IDX?
> >>
> >> If you really want to do it, I won't insist, even though the benefit
> >> seems minimal.
>
> > I don't insist, either. The only "benefit" is that I could otherwise
> > forget about this nit.
>
> > I could submit a bug instead, if you prefer that.
>
> Please just remove it. It's 100% unused, there's no risk of it
> introducing bugs.
Done.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2009-12-04 10:54 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-28 16:30 AUTO_COMPOSED_PROP_IDX unused? Eli Zaretskii
2009-11-28 19:04 ` Chong Yidong
2009-11-28 19:28 ` Eli Zaretskii
2009-11-30 1:13 ` Kenichi Handa
2009-12-01 4:14 ` Eli Zaretskii
2009-12-01 15:55 ` Chong Yidong
2009-12-01 18:44 ` Eli Zaretskii
2009-12-01 21:47 ` Stefan Monnier
2009-12-04 10:54 ` Eli Zaretskii
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).