* Re: entring 8 bit characters
2003-01-18 19:41 entring 8 bit characters 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; 7+ 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] 7+ 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; 7+ 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] 7+ messages in thread
* entring 8 bit characters
@ 2003-01-18 19:41 Hary
2003-01-18 19:12 ` Eli Zaretskii
0 siblings, 1 reply; 7+ 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] 7+ 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; 7+ 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] 7+ 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; 7+ 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] 7+ 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; 7+ 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] 7+ 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
0 siblings, 0 replies; 7+ 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] 7+ messages in thread
end of thread, other threads:[~2003-01-20 6:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-18 19:41 entring 8 bit characters 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
[not found] <mailman.557.1043009548.21513.help-gnu-emacs@gnu.org>
2003-01-20 6:39 ` Kai Großjohann
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).