all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* enable-character-translation
@ 2009-05-05  4:05 Chong Yidong
  2009-05-06  1:06 ` enable-character-translation Stefan Monnier
  0 siblings, 1 reply; 6+ messages in thread
From: Chong Yidong @ 2009-05-05  4:05 UTC (permalink / raw)
  To: Kenichi Handa; +Cc: emacs-devel

Question: is the variable `enable-character-translation' still used for
anything, or is it obsolete?




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: enable-character-translation
  2009-05-05  4:05 enable-character-translation Chong Yidong
@ 2009-05-06  1:06 ` Stefan Monnier
  2009-05-19  0:45   ` enable-character-translation Kenichi Handa
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Monnier @ 2009-05-06  1:06 UTC (permalink / raw)
  To: Chong Yidong; +Cc: emacs-devel, Kenichi Handa

> Question: is the variable `enable-character-translation' still used for
> anything, or is it obsolete?

AFAICT it's obsolete.  No code implements the "feature" (I'm not even
sure what that feature would be), and no code uses it.


        Stefan




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: enable-character-translation
  2009-05-06  1:06 ` enable-character-translation Stefan Monnier
@ 2009-05-19  0:45   ` Kenichi Handa
  2009-05-19  1:09     ` enable-character-translation Stefan Monnier
  0 siblings, 1 reply; 6+ messages in thread
From: Kenichi Handa @ 2009-05-19  0:45 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: cyd, emacs-devel

In article <jwvab5rniv6.fsf-monnier+emacs@gnu.org>, Stefan Monnier <monnier@iro.umontreal.ca> writes:

> > Question: is the variable `enable-character-translation' still used for
> > anything, or is it obsolete?

> AFAICT it's obsolete.  No code implements the "feature" (I'm not even
> sure what that feature would be), and no code uses it.

Oops, I've forgotten to implement it in coding.c of
emacs-unicode version.  Emacs 22 surely payed attention to
that variable.  I'm going to implement it if there's no
objection.  The change will be quite small.

---
Kenichi Handa
handa@m17n.org




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: enable-character-translation
  2009-05-19  0:45   ` enable-character-translation Kenichi Handa
@ 2009-05-19  1:09     ` Stefan Monnier
  2009-05-19  1:21       ` enable-character-translation Miles Bader
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Monnier @ 2009-05-19  1:09 UTC (permalink / raw)
  To: Kenichi Handa; +Cc: cyd, emacs-devel

>> > Question: is the variable `enable-character-translation' still used for
>> > anything, or is it obsolete?

>> AFAICT it's obsolete.  No code implements the "feature" (I'm not even
>> sure what that feature would be), and no code uses it.

> Oops, I've forgotten to implement it in coding.c of emacs-unicode
> version.  Emacs 22 surely payed attention to that variable.  I'm going
> to implement it if there's no objection.  The change will be
> quite small.

Since nobody noticed the absence of the feature, it sounds like a great
way to waste time ;-)


        Stefan




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: enable-character-translation
  2009-05-19  1:09     ` enable-character-translation Stefan Monnier
@ 2009-05-19  1:21       ` Miles Bader
  2009-05-21  1:59         ` enable-character-translation Kenichi Handa
  0 siblings, 1 reply; 6+ messages in thread
From: Miles Bader @ 2009-05-19  1:21 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: cyd, emacs-devel, Kenichi Handa

Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> Oops, I've forgotten to implement it in coding.c of emacs-unicode
>> version.  Emacs 22 surely payed attention to that variable.  I'm going
>> to implement it if there's no objection.  The change will be
>> quite small.
>
> Since nobody noticed the absence of the feature, it sounds like a great
> way to waste time ;-)

Well, nobody _complained_ about its absence ...

-Miles

-- 
Defenceless, adj. Unable to attack.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: enable-character-translation
  2009-05-19  1:21       ` enable-character-translation Miles Bader
@ 2009-05-21  1:59         ` Kenichi Handa
  0 siblings, 0 replies; 6+ messages in thread
From: Kenichi Handa @ 2009-05-21  1:59 UTC (permalink / raw)
  To: Miles Bader; +Cc: cyd, monnier, emacs-devel

In article <buo63fxq44r.fsf@dhlpc061.dev.necel.com>, Miles Bader <miles@gnu.org> writes:

> Stefan Monnier <monnier@iro.umontreal.ca> writes:
>>> Oops, I've forgotten to implement it in coding.c of emacs-unicode
>>> version.  Emacs 22 surely payed attention to that variable.  I'm going
>>> to implement it if there's no objection.  The change will be
>>> quite small.
> >
> > Since nobody noticed the absence of the feature, it sounds like a great
> > way to waste time ;-)

> Well, nobody _complained_ about its absence ...

That's not a positive argument to delete some feature from
Emacs.  To decide to delete some feature, I think we should
have some more strong reason (i.e. keeping the feature is
difficult/impossible, it is found that the feature conflicts
with some other part of Emacs).

Perhaps we don't have enough heavy CJK pretesters who are
playing with various kind of text decoding.  I myself used
to set that variable to nil while debugging some coding
system that has decode/encode-translation-table.  In Emacs
22, we have many such coding systems, but now we have just
one (eucjp-ms).  So, the importance of this variable is
surely small now, but still...

---
Kenichi Handa
handa@m17n.org





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-05-21  1:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-05  4:05 enable-character-translation Chong Yidong
2009-05-06  1:06 ` enable-character-translation Stefan Monnier
2009-05-19  0:45   ` enable-character-translation Kenichi Handa
2009-05-19  1:09     ` enable-character-translation Stefan Monnier
2009-05-19  1:21       ` enable-character-translation Miles Bader
2009-05-21  1:59         ` enable-character-translation Kenichi Handa

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.