all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* opening file in unix emacs
@ 2005-11-08 16:56 Leip, Eric
  2005-11-08 17:08 ` Gian Uberto Lauri
  0 siblings, 1 reply; 13+ messages in thread
From: Leip, Eric @ 2005-11-08 16:56 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 666 bytes --]

Hello-

I don't know if this is the correct procedure but I was wondering if I could get help with emacs.  

I have been using emacs on unix for about 10 years and I always easily opened a file by typing "emacs FILENAME".  At my new job, this only opens the emacs editor and doesn't open FILENAME.  I have tried "emacs -nw FILENAME" and that also just opens an emacs session, not that specific file.  I have checked my .BASHRC file and there are no aliases for emacs.  Any suggestions or is there someone else I could contact?

Thanks



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



[-- Attachment #1.2: Type: text/html, Size: 1660 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

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

* opening file in unix emacs
  2005-11-08 16:56 Leip, Eric
@ 2005-11-08 17:08 ` Gian Uberto Lauri
  0 siblings, 0 replies; 13+ messages in thread
From: Gian Uberto Lauri @ 2005-11-08 17:08 UTC (permalink / raw)
  Cc: help-gnu-emacs

>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Hello- I don't know if this is the correct procedure but I was
LE> wondering if I could get help with emacs.

LE> I have been using emacs on unix for about 10 years and I always
LE> easily opened a file by typing "emacs FILENAME".  At my new job,
LE> this only opens the emacs editor and doesn't open FILENAME.

Try the commands:

    which emacs 

or

    type emacs 

to discover what program you invoke. Then ckeck what this program is.
It could be a script...

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* RE: opening file in unix emacs
@ 2005-11-08 17:32 Leip, Eric
  2005-11-08 17:41 ` Gian Uberto Lauri
       [not found] ` <mailman.14420.1131471677.20277.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 13+ messages in thread
From: Leip, Eric @ 2005-11-08 17:32 UTC (permalink / raw)
  Cc: help-gnu-emacs

Thanks for the reply.  When I typed "type emacs" I got:

/usr/local/bin/emacs

and that emacs file is:

SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 /usr/local/bin/emacs-run

and I can't look at emacs-run.





Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Gian Uberto Lauri [mailto:GianUberto.Lauri@eng.it]
Sent: Tuesday, November 08, 2005 12:08 PM
To: Leip, Eric
Cc: help-gnu-emacs@gnu.org
Subject: opening file in unix emacs


>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Hello- I don't know if this is the correct procedure but I was
LE> wondering if I could get help with emacs.

LE> I have been using emacs on unix for about 10 years and I always
LE> easily opened a file by typing "emacs FILENAME".  At my new job,
LE> this only opens the emacs editor and doesn't open FILENAME.

Try the commands:

    which emacs 

or

    type emacs 

to discover what program you invoke. Then ckeck what this program is.
It could be a script...

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* RE: opening file in unix emacs
  2005-11-08 17:32 Leip, Eric
@ 2005-11-08 17:41 ` Gian Uberto Lauri
       [not found] ` <mailman.14420.1131471677.20277.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 13+ messages in thread
From: Gian Uberto Lauri @ 2005-11-08 17:41 UTC (permalink / raw)
  Cc: help-gnu-emacs, saint

>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Thanks for the reply.  When I typed "type emacs" I got:
LE> /usr/local/bin/emacs

LE> and that emacs file is:

LE> SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 /usr/local/bin/emacs-run

LE> and I can't look at emacs-run.

emacs-run is the binary file.

You  invoke  a  shell   script  that  sets  the  envirnoment  variabie
SHLIB_PATH so that Emacs can load some shared libraries.

The solution could be use this shell script

SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 \
/usr/local/bin/emacs-run $@

(I split the  line at \ for readability sake)  a "trick" commonly used
under Mac OS X to launch the Emacs.app from the command line.

You can  put this script in your  bin (provided that you  put your bin
before /usr/local/bin) or ask your sysadmin to patch the script.

I think that  most users at your site just launch  emacs and then keep
it running all the session long,  you can still use emacsclient to use
the running emacs as an  "editing server" (requires loading the server
lib).

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* RE: opening file in unix emacs
@ 2005-11-08 17:46 Leip, Eric
  0 siblings, 0 replies; 13+ messages in thread
From: Leip, Eric @ 2005-11-08 17:46 UTC (permalink / raw)
  Cc: help-gnu-emacs

thanks, I will check it out.



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Gian Uberto Lauri [mailto:GianUberto.Lauri@eng.it]
Sent: Tuesday, November 08, 2005 12:41 PM
To: Leip, Eric
Cc: saint@eng.it; help-gnu-emacs@gnu.org
Subject: RE: opening file in unix emacs


>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Thanks for the reply.  When I typed "type emacs" I got:
LE> /usr/local/bin/emacs

LE> and that emacs file is:

LE> SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 /usr/local/bin/emacs-run

LE> and I can't look at emacs-run.

emacs-run is the binary file.

You  invoke  a  shell   script  that  sets  the  envirnoment  variabie
SHLIB_PATH so that Emacs can load some shared libraries.

The solution could be use this shell script

SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 \
/usr/local/bin/emacs-run $@

(I split the  line at \ for readability sake)  a "trick" commonly used
under Mac OS X to launch the Emacs.app from the command line.

You can  put this script in your  bin (provided that you  put your bin
before /usr/local/bin) or ask your sysadmin to patch the script.

I think that  most users at your site just launch  emacs and then keep
it running all the session long,  you can still use emacsclient to use
the running emacs as an  "editing server" (requires loading the server
lib).

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* Re: opening file in unix emacs
       [not found] ` <mailman.14420.1131471677.20277.help-gnu-emacs@gnu.org>
@ 2005-11-08 18:22   ` Harald Hanche-Olsen
  0 siblings, 0 replies; 13+ messages in thread
From: Harald Hanche-Olsen @ 2005-11-08 18:22 UTC (permalink / raw)


+ GianUberto.Lauri@eng.it (Gian Uberto Lauri):

| SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 \
| /usr/local/bin/emacs-run $@

That last bit should be "$@" (with quotes).  Otherwise, it will fail
when invoked with arguments containing spaces.  (There used to be some
systems whose shells required the bizarre syntax ${1+"$@"} or
something equally weird, but I think those have been buried by now.)

-- 
* Harald Hanche-Olsen     <URL:http://www.math.ntnu.no/~hanche/>
- Debating gives most of us much more psychological satisfaction
  than thinking does: but it deprives us of whatever chance there is
  of getting closer to the truth.  -- C.P. Snow

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

* Re: opening file in unix emacs
       [not found] <mailman.14415.1131469032.20277.help-gnu-emacs@gnu.org>
@ 2005-11-09  0:31 ` Edward Dodge
  0 siblings, 0 replies; 13+ messages in thread
From: Edward Dodge @ 2005-11-09  0:31 UTC (permalink / raw)


"Leip, Eric" <Eric.Leip@parexel.com> writes:

> Hello-
> 
> I don't know if this is the correct procedure but I was wondering if I
> could get help with emacs.
> 
> I have been using emacs on unix for about 10 years and I always easily
> opened a file by typing "emacs FILENAME".  At my new job, this only
> opens the emacs editor and doesn't open FILENAME.  I have tried "emacs
> -nw FILENAME" and that also just opens an emacs session, not that
> specific file.  I have checked my .BASHRC file and there are no
> aliases for emacs.  Any suggestions or is there someone else I could
> contact?
> 
> Thanks

Put this in your .emacs:

(server-start)

Then you never need to quit the program.  From then on, if you want to edit a
file, just make an alias for emacsclient:

alias e emacsclient

At the UNIX prompt:

% e <filename>

And your file should be waiting for your edits back at EMACS Home-Base.

-- 
Edward Dodge
          
   __o    
 _`\(,_   
(_)/ (_)  ---  --- 

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

* RE: opening file in unix emacs
@ 2005-11-09 13:51 Leip, Eric
  0 siblings, 0 replies; 13+ messages in thread
From: Leip, Eric @ 2005-11-09 13:51 UTC (permalink / raw)
  Cc: help-gnu-emacs

adding the $@ worked perfectly, thank you



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Leip, Eric 
Sent: Tuesday, November 08, 2005 12:47 PM
To: 'saint@eng.it'
Cc: help-gnu-emacs@gnu.org
Subject: RE: opening file in unix emacs


thanks, I will check it out.



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Gian Uberto Lauri [mailto:GianUberto.Lauri@eng.it]
Sent: Tuesday, November 08, 2005 12:41 PM
To: Leip, Eric
Cc: saint@eng.it; help-gnu-emacs@gnu.org
Subject: RE: opening file in unix emacs


>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Thanks for the reply.  When I typed "type emacs" I got:
LE> /usr/local/bin/emacs

LE> and that emacs file is:

LE> SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 /usr/local/bin/emacs-run

LE> and I can't look at emacs-run.

emacs-run is the binary file.

You  invoke  a  shell   script  that  sets  the  envirnoment  variabie
SHLIB_PATH so that Emacs can load some shared libraries.

The solution could be use this shell script

SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 \
/usr/local/bin/emacs-run $@

(I split the  line at \ for readability sake)  a "trick" commonly used
under Mac OS X to launch the Emacs.app from the command line.

You can  put this script in your  bin (provided that you  put your bin
before /usr/local/bin) or ask your sysadmin to patch the script.

I think that  most users at your site just launch  emacs and then keep
it running all the session long,  you can still use emacsclient to use
the running emacs as an  "editing server" (requires loading the server
lib).

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* RE: opening file in unix emacs
@ 2005-11-09 14:26 Leip, Eric
  2005-11-09 16:08 ` Peter Dyballa
  2005-11-09 16:19 ` Gian Uberto Lauri
  0 siblings, 2 replies; 13+ messages in thread
From: Leip, Eric @ 2005-11-09 14:26 UTC (permalink / raw)
  Cc: help-gnu-emacs

Hello-

My system admin wanted me to ask you if you knew why we were getting this warning when we start emacs up:

Warning: Lisp directory `/usr/local/share/emacs/21.2/leim' does not exist.

I have read online that it seems to be some sort of language file that maybe we don't even need?

Thanks



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Leip, Eric 
Sent: Wednesday, November 09, 2005 8:51 AM
To: 'saint@eng.it'
Cc: 'help-gnu-emacs@gnu.org'
Subject: RE: opening file in unix emacs


adding the $@ worked perfectly, thank you



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Leip, Eric 
Sent: Tuesday, November 08, 2005 12:47 PM
To: 'saint@eng.it'
Cc: help-gnu-emacs@gnu.org
Subject: RE: opening file in unix emacs


thanks, I will check it out.



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Gian Uberto Lauri [mailto:GianUberto.Lauri@eng.it]
Sent: Tuesday, November 08, 2005 12:41 PM
To: Leip, Eric
Cc: saint@eng.it; help-gnu-emacs@gnu.org
Subject: RE: opening file in unix emacs


>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Thanks for the reply.  When I typed "type emacs" I got:
LE> /usr/local/bin/emacs

LE> and that emacs file is:

LE> SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 /usr/local/bin/emacs-run

LE> and I can't look at emacs-run.

emacs-run is the binary file.

You  invoke  a  shell   script  that  sets  the  envirnoment  variabie
SHLIB_PATH so that Emacs can load some shared libraries.

The solution could be use this shell script

SHLIB_PATH=/usr/local/lib/pa1.1:/usr/local/lib/pa1.1/X11 \
/usr/local/bin/emacs-run $@

(I split the  line at \ for readability sake)  a "trick" commonly used
under Mac OS X to launch the Emacs.app from the command line.

You can  put this script in your  bin (provided that you  put your bin
before /usr/local/bin) or ask your sysadmin to patch the script.

I think that  most users at your site just launch  emacs and then keep
it running all the session long,  you can still use emacsclient to use
the running emacs as an  "editing server" (requires loading the server
lib).

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* Re: opening file in unix emacs
  2005-11-09 14:26 Leip, Eric
@ 2005-11-09 16:08 ` Peter Dyballa
  2005-11-09 16:19 ` Gian Uberto Lauri
  1 sibling, 0 replies; 13+ messages in thread
From: Peter Dyballa @ 2005-11-09 16:08 UTC (permalink / raw)
  Cc: help-gnu-emacs, saint


Am 09.11.2005 um 15:26 schrieb Leip, Eric:

> Warning: Lisp directory `/usr/local/share/emacs/21.2/leim' does not 
> exist.
>
> I have read online that it seems to be some sort of language file that 
> maybe we don't even need?
>

Right! For English and Latin scripts you wouldn't need it. Even 
accented characters for most European and American languages are no 
problem since they don't need LEIM.

--
Greetings

   Pete

The light at the end of the tunnel has been turned off due to budget 
cuts.

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

* RE: opening file in unix emacs
@ 2005-11-09 16:15 Leip, Eric
  0 siblings, 0 replies; 13+ messages in thread
From: Leip, Eric @ 2005-11-09 16:15 UTC (permalink / raw)
  Cc: Price, Richard, help-gnu-emacs, saint

thanks.



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Peter_Dyballa@Web.DE [mailto:Peter_Dyballa@Web.DE]
Sent: Wednesday, November 09, 2005 11:09 AM
To: Leip, Eric
Cc: saint@eng.it; help-gnu-emacs@gnu.org
Subject: Re: opening file in unix emacs



Am 09.11.2005 um 15:26 schrieb Leip, Eric:

> Warning: Lisp directory `/usr/local/share/emacs/21.2/leim' does not 
> exist.
>
> I have read online that it seems to be some sort of language file that 
> maybe we don't even need?
>

Right! For English and Latin scripts you wouldn't need it. Even 
accented characters for most European and American languages are no 
problem since they don't need LEIM.

--
Greetings

   Pete

The light at the end of the tunnel has been turned off due to budget 
cuts.

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

* RE: opening file in unix emacs
  2005-11-09 14:26 Leip, Eric
  2005-11-09 16:08 ` Peter Dyballa
@ 2005-11-09 16:19 ` Gian Uberto Lauri
  1 sibling, 0 replies; 13+ messages in thread
From: Gian Uberto Lauri @ 2005-11-09 16:19 UTC (permalink / raw)
  Cc: help-gnu-emacs, saint

>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Hello- My system admin wanted me to ask you if you knew why we
LE> were getting this warning when we start emacs up:

LE> Warning: Lisp directory `/usr/local/share/emacs/21.2/leim' does
LE> not exist.

There should be a directory tree like this

root@paperoga:/usr/local/share/emacs/22.0.50# ls -R leim
leim:
ja-dic  leim-list.el  quail

leim/ja-dic:
ja-dic.el  ja-dic.elc

leim/quail:
4Corner.el    QJ-b5.elc      greek.el       latin-alt.elc   slovak.el
4Corner.elc   QJ.el          greek.elc      latin-ltx.el    slovak.elc
ARRAY30.el    QJ.elc         hangul.el      latin-ltx.elc   symbol-ksc.el
ARRAY30.elc   SW.el          hangul.elc     latin-post.el   symbol-ksc.elc
CCDOSPY.el    SW.elc         hangul3.el     latin-post.elc  thai.el
CCDOSPY.elc   TONEPY.el      hangul3.elc    latin-pre.el    thai.elc
CTLau-b5.el   TONEPY.elc     hanja-jis.el   latin-pre.elc   tibetan.el
CTLau-b5.elc  ZIRANMA.el     hanja-jis.elc  lrt.el          tibetan.elc
CTLau.el      ZIRANMA.elc    hanja.el       lrt.elc         tsang-b5.el
CTLau.elc     ZOZY.el        hanja.elc      py-punct.el     tsang-b5.elc
ECDICT.el     ZOZY.elc       hanja3.el      py-punct.elc    tsang-cns.el
ECDICT.elc    croatian.el    hanja3.elc     pypunct-b5.el   tsang-cns.elc
ETZY.el       croatian.elc   hebrew.el      pypunct-b5.elc  uni-input.el
ETZY.elc      cyril-jis.el   hebrew.elc     quick-b5.el     uni-input.elc
PY-b5.el      cyril-jis.elc  indian.el      quick-b5.elc    viqr.el
PY-b5.elc     cyrillic.el    indian.elc     quick-cns.el    viqr.elc
PY.el         cyrillic.elc   ipa.el         quick-cns.elc   vntelex.el
PY.elc        czech.el       ipa.elc        rfc1345.el      vntelex.elc
Punct-b5.el   czech.elc      japanese.el    rfc1345.elc     welsh.el
Punct-b5.elc  ethiopic.el    japanese.elc   sgml-input.el   welsh.elc
Punct.el      ethiopic.elc   lao.el         sgml-input.elc
Punct.elc     georgian.el    lao.elc        sisheng.el
QJ-b5.el      georgian.elc   latin-alt.el   sisheng.elc

and the startup-el file test for the existence of leim-list.el.

LE> I have read online that it seems to be some sort of language file
LE> that maybe we don't even need?

It  is  a  package  that  manages input  in  different  language  with
non iso-8859-1[5] letters in their alphabet.

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

* RE: opening file in unix emacs
@ 2005-11-09 16:22 Leip, Eric
  0 siblings, 0 replies; 13+ messages in thread
From: Leip, Eric @ 2005-11-09 16:22 UTC (permalink / raw)
  Cc: Price, Richard, help-gnu-emacs

thanks



Eric Leip 
Senior Biostatistician 
PAREXEL International 
200 West Street 
Waltham, MA 02451 
781.434.4276 



-----Original Message-----
From: Gian Uberto Lauri [mailto:GianUberto.Lauri@eng.it]
Sent: Wednesday, November 09, 2005 11:20 AM
To: Leip, Eric
Cc: saint@eng.it; help-gnu-emacs@gnu.org
Subject: RE: opening file in unix emacs


>>>>> "LE" == Leip, Eric <Eric.Leip@parexel.com> writes:

LE> Hello- My system admin wanted me to ask you if you knew why we
LE> were getting this warning when we start emacs up:

LE> Warning: Lisp directory `/usr/local/share/emacs/21.2/leim' does
LE> not exist.

There should be a directory tree like this

root@paperoga:/usr/local/share/emacs/22.0.50# ls -R leim
leim:
ja-dic  leim-list.el  quail

leim/ja-dic:
ja-dic.el  ja-dic.elc

leim/quail:
4Corner.el    QJ-b5.elc      greek.el       latin-alt.elc   slovak.el
4Corner.elc   QJ.el          greek.elc      latin-ltx.el    slovak.elc
ARRAY30.el    QJ.elc         hangul.el      latin-ltx.elc   symbol-ksc.el
ARRAY30.elc   SW.el          hangul.elc     latin-post.el   symbol-ksc.elc
CCDOSPY.el    SW.elc         hangul3.el     latin-post.elc  thai.el
CCDOSPY.elc   TONEPY.el      hangul3.elc    latin-pre.el    thai.elc
CTLau-b5.el   TONEPY.elc     hanja-jis.el   latin-pre.elc   tibetan.el
CTLau-b5.elc  ZIRANMA.el     hanja-jis.elc  lrt.el          tibetan.elc
CTLau.el      ZIRANMA.elc    hanja.el       lrt.elc         tsang-b5.el
CTLau.elc     ZOZY.el        hanja.elc      py-punct.el     tsang-b5.elc
ECDICT.el     ZOZY.elc       hanja3.el      py-punct.elc    tsang-cns.el
ECDICT.elc    croatian.el    hanja3.elc     pypunct-b5.el   tsang-cns.elc
ETZY.el       croatian.elc   hebrew.el      pypunct-b5.elc  uni-input.el
ETZY.elc      cyril-jis.el   hebrew.elc     quick-b5.el     uni-input.elc
PY-b5.el      cyril-jis.elc  indian.el      quick-b5.elc    viqr.el
PY-b5.elc     cyrillic.el    indian.elc     quick-cns.el    viqr.elc
PY.el         cyrillic.elc   ipa.el         quick-cns.elc   vntelex.el
PY.elc        czech.el       ipa.elc        rfc1345.el      vntelex.elc
Punct-b5.el   czech.elc      japanese.el    rfc1345.elc     welsh.el
Punct-b5.elc  ethiopic.el    japanese.elc   sgml-input.el   welsh.elc
Punct.el      ethiopic.elc   lao.el         sgml-input.elc
Punct.elc     georgian.el    lao.elc        sisheng.el
QJ-b5.el      georgian.elc   latin-alt.el   sisheng.elc

and the startup-el file test for the existence of leim-list.el.

LE> I have read online that it seems to be some sort of language file
LE> that maybe we don't even need?

It  is  a  package  that  manages input  in  different  language  with
non iso-8859-1[5] letters in their alphabet.

-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/		    e allevatore di bug da competizione

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

end of thread, other threads:[~2005-11-09 16:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-09 16:22 opening file in unix emacs Leip, Eric
  -- strict thread matches above, loose matches on Subject: below --
2005-11-09 16:15 Leip, Eric
2005-11-09 14:26 Leip, Eric
2005-11-09 16:08 ` Peter Dyballa
2005-11-09 16:19 ` Gian Uberto Lauri
2005-11-09 13:51 Leip, Eric
     [not found] <mailman.14415.1131469032.20277.help-gnu-emacs@gnu.org>
2005-11-09  0:31 ` Edward Dodge
2005-11-08 17:46 Leip, Eric
2005-11-08 17:32 Leip, Eric
2005-11-08 17:41 ` Gian Uberto Lauri
     [not found] ` <mailman.14420.1131471677.20277.help-gnu-emacs@gnu.org>
2005-11-08 18:22   ` Harald Hanche-Olsen
2005-11-08 16:56 Leip, Eric
2005-11-08 17:08 ` Gian Uberto Lauri

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.