all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: entring 8 bit characters
  2003-01-18 19:41 entring " Hary
@ 2003-01-18 19:12 ` Eli Zaretskii
  2003-01-18 19:17   ` Eli Zaretskii
       [not found]   ` <mailman.534.1042921281.21513.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Eli Zaretskii @ 2003-01-18 19:12 UTC (permalink / raw)


> From: "Hary" <hari_i@yahoo.com>
> Newsgroups: gnu.emacs.help
> Date: Sat, 18 Jan 2003 21:41:44 +0200
> 
> I am trying to write hebrew characters in emacs and I get the character
> masked to 7 bits.
> how do I tell emacs not to mask the entered character?

C-x RET t hebrew-iso-8bit RET

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

* Re: entring 8 bit characters
  2003-01-18 19:12 ` Eli Zaretskii
@ 2003-01-18 19:17   ` Eli Zaretskii
       [not found]   ` <mailman.534.1042921281.21513.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2003-01-18 19:17 UTC (permalink / raw)


> Date: Sat, 18 Jan 2003 22:12:25 +0300
> From: "Eli Zaretskii" <eliz@is.elta.co.il>
> 
> C-x RET t hebrew-iso-8bit RET

Oops, that should have been "C-x RET k hebrew-iso-8bit RET".
Sorry.

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

* entring 8 bit characters
@ 2003-01-18 19:41 Hary
  2003-01-18 19:12 ` Eli Zaretskii
  0 siblings, 1 reply; 8+ messages in thread
From: Hary @ 2003-01-18 19:41 UTC (permalink / raw)


I have insralled Red-Hat 7.3 and using the GNU emacs that is installed with
it.
I am trying to write hebrew characters in emacs and I get the character
masked to 7 bits.
how do I tell emacs not to mask the entered character?
I am using emacs through telnet and I am sure my telnet client is not doing
the masking since in VI or in the shell, I can insert hebrew characters.
(Hebrew characters start from 224 or 0xE0)

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

* Re: entring 8 bit characters
       [not found]   ` <mailman.534.1042921281.21513.help-gnu-emacs@gnu.org>
@ 2003-01-19 20:13     ` Hary
  2003-01-19 20:48       ` Ehud Karni
  2003-01-20  5:56       ` Eli Zaretskii
  0 siblings, 2 replies; 8+ messages in thread
From: Hary @ 2003-01-19 20:13 UTC (permalink / raw)


Thank you, it worked.
Now, how do I save it so it will be the default?

Eli Zaretskii <eliz@is.elta.co.il> wrote in message
news:mailman.534.1042921281.21513.help-gnu-emacs@gnu.org...
> > Date: Sat, 18 Jan 2003 22:12:25 +0300
> > From: "Eli Zaretskii" <eliz@is.elta.co.il>
> >
> > C-x RET t hebrew-iso-8bit RET
>
> Oops, that should have been "C-x RET k hebrew-iso-8bit RET".
> Sorry.
>
>

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

* Re: entring 8 bit characters
  2003-01-19 20:13     ` Hary
@ 2003-01-19 20:48       ` Ehud Karni
  2003-01-20  5:56       ` Eli Zaretskii
  1 sibling, 0 replies; 8+ messages in thread
From: Ehud Karni @ 2003-01-19 20:48 UTC (permalink / raw)
  Cc: help-gnu-emacs

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Sun, 19 Jan 2003 22:13:33 +0200, Hary <hari_i@yahoo.com> wrote:
>
> Eli Zaretskii <eliz@is.elta.co.il> wrote in message
> >
> > That should have been "C-x RET k hebrew-iso-8bit RET".
>
> Thank you, it worked.
> Now, how do I save it so it will be the default?

This code (in .emacs) does it for me (Yes, I realy use Hebrew):

    ;; First - drop the default file-coding-system(s)
    (let ((defcs (assoc "" file-coding-system-alist)))
        (while defcs
            (setq file-coding-system-alist (delq defcs file-coding-system-alist))
            (setq defcs (assoc "" file-coding-system-alist))))

    ;; Second - set desired default
    (add-to-list 'file-coding-system-alist '("" hebrew-iso-8bit) t)
    (set-language-environment 'Hebrew)  ;; Hebrew (UNIX eol style)
    (set-language-environment-coding-systems 'Hebrew 'unix)

Ehud.


- --
 @@@@@@ @@@ @@@@@@ @    @   Ehud Karni                       ינרק דוהא
     @    @      @  @@  @   Senior System Support   בשחמ תוכרעמב הכימת
     @    @ @    @ @  @@    Mivtach - Simon               ןומיס - חטבמ
     @    @ @    @ @    @   Insurance agencies          חוטבל תויונכוס
  Better Safe Than Sorry    Tel: +972-3-7966-561  Fax: +972-3-7966-667
   http://www.mvs.co.il             mailto:ehud@unix.mvs.co.il
-----BEGIN PGP SIGNATURE-----
Comment: use http://www.keyserver.net/ to get my key (and others)

iD8DBQE+Kw8XLFvTvpjqOY0RAtsUAKCENPs12zILsUaPjFiHnjRU1ZpbVgCfeucV
7gLQhsXi+gKRIWfciOgxt08=
=lvek
-----END PGP SIGNATURE-----

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

* Re: entring 8 bit characters
  2003-01-19 20:13     ` Hary
  2003-01-19 20:48       ` Ehud Karni
@ 2003-01-20  5:56       ` Eli Zaretskii
  1 sibling, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2003-01-20  5:56 UTC (permalink / raw)



On Sun, 19 Jan 2003, Hary wrote:

> Thank you, it worked.
> Now, how do I save it so it will be the default?

Add this to your .emacs:

(set-keyboard-coding-system 'hebrew-iso-8bit)

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

* Re: entring 8 bit characters
       [not found] <mailman.557.1043009548.21513.help-gnu-emacs@gnu.org>
@ 2003-01-20  6:39 ` Kai Großjohann
  2003-01-20  9:30   ` entering " Ehud Karni
  0 siblings, 1 reply; 8+ messages in thread
From: Kai Großjohann @ 2003-01-20  6:39 UTC (permalink / raw)


"Ehud Karni" <ehud@unix.mvs.co.il> writes:

> (Yes, I realy use Hebrew):

Way cool.  How does bidi work?  Are you using a special version of
Emacs for that?
-- 
Ambibibentists unite!

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

* Re: entering 8 bit characters
  2003-01-20  6:39 ` entring 8 bit characters Kai Großjohann
@ 2003-01-20  9:30   ` Ehud Karni
  0 siblings, 0 replies; 8+ messages in thread
From: Ehud Karni @ 2003-01-20  9:30 UTC (permalink / raw)
  Cc: help-gnu-emacs

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Mon, 20 Jan 2003 07:39:17 +0100, kai.grossjohann@uni-duisburg.de (Kai =?iso-8859-1?q?Gro=DFjohann?=) wrote:
> 
> > (Yes, I really use Hebrew):
> 
> Way cool.  How does bidi work?  Are you using a special version of
> Emacs for that?

I'm sorry to say I didn't test TAKAHASHI Naoto and Ken'ichi HANDA new
Emacs bidi <URL: http://www.m17n.org/emacs-bidi/ >.

I'm using regular Emacs (from CVS) with my "hebeng.el" package. It uses
modified iso-8859-8 charset (not Unicode) and it stores the Hebrew in
visual order. It has some bidi converting functions and "Quasi" bidi
input method (i.e. you type the Hebrew/Latin/numbers in the natural way
and it is stored in the visually correct form).

Ehud.


- -- 
 Ehud Karni           Tel: +972-3-7966-561  /"\
 Mivtach - Simon      Fax: +972-3-7966-667  \ /  ASCII Ribbon Campaign
 Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail
 http://www.mvs.co.il  FAX:  1-815-5509341  / \
 mailto:ehud@unix.mvs.co.il                  Better  Safe  Than  Sorry
-----BEGIN PGP SIGNATURE-----
Comment: use http://www.keyserver.net/ to get my key (and others)

iD8DBQE+K8GjLFvTvpjqOY0RAhmwAJ4w+X0q1SnF+Fl9owbVo9VZstjNdwCeKLmS
ZxVf7esBMZCgR/OfwNMkZ50=
=GgBy
-----END PGP SIGNATURE-----

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

end of thread, other threads:[~2003-01-20  9:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.557.1043009548.21513.help-gnu-emacs@gnu.org>
2003-01-20  6:39 ` entring 8 bit characters Kai Großjohann
2003-01-20  9:30   ` entering " Ehud Karni
2003-01-18 19:41 entring " Hary
2003-01-18 19:12 ` Eli Zaretskii
2003-01-18 19:17   ` Eli Zaretskii
     [not found]   ` <mailman.534.1042921281.21513.help-gnu-emacs@gnu.org>
2003-01-19 20:13     ` Hary
2003-01-19 20:48       ` Ehud Karni
2003-01-20  5:56       ` Eli Zaretskii

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.