all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* lisp, emacs-lisp
@ 2002-08-08  8:13 Iosu Arizkuren
  2002-08-08 12:11 ` fabrice bauzac
  0 siblings, 1 reply; 4+ messages in thread
From: Iosu Arizkuren @ 2002-08-08  8:13 UTC (permalink / raw)


Hi, I'm trying to change a variable in the ispell.el, I've done an entry in 
the menu for my own speller, when I click there it does
(setq ispell-program-name "myspeller") and then (ispell-buffer), then it 
stays permanently even if I do (setq ispell-program-name "ispell") just 
after. It doesn't change to ispell.
My skills in lisp are not the best, any idea on how to change this variable 
without using the setq command,(or doing something else that I haven't think 
about in yet)?
Thanks,
Iosu.


_________________________________________________________________
MSN. Más Útil cada Día. http://www.msn.es/intmap/

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

* Re: lisp, emacs-lisp
  2002-08-08  8:13 Iosu Arizkuren
@ 2002-08-08 12:11 ` fabrice bauzac
  0 siblings, 0 replies; 4+ messages in thread
From: fabrice bauzac @ 2002-08-08 12:11 UTC (permalink / raw)


On Thu, Aug 08, 2002 at 08:13:13AM +0000, Iosu Arizkuren wrote:

> Hi, I'm trying to change a variable in the ispell.el,

> I've done an entry in the menu for my own speller, when I click
> there it does (setq ispell-program-name "myspeller") and then
> (ispell-buffer), then it stays permanently even if I do (setq
> ispell-program-name "ispell") just after. It doesn't change to
> ispell.

Maybe this variable is buffer-local in some buffers?  Buffer-local
variables take precedence over Emacs-wide, "normal" variables.  I read
it in the documentation: (elisp)Buffer-local Variables.

However, this variable doesn't seem to be normally buffer-local...  I
don't know.

If it doesn't work, maybe you could send some code so that we have
more information about what happens?

-- 
fabrice bauzac
Software should be free.  http://www.gnu.org/philosophy/why-free.html

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

* RE: lisp, emacs-lisp
@ 2002-08-09 11:59 Iosu Arizkuren
  2002-08-11 15:45 ` Ehud Karni
  0 siblings, 1 reply; 4+ messages in thread
From: Iosu Arizkuren @ 2002-08-09 11:59 UTC (permalink / raw)


Thank you, but the thing is that it still doesn't change the speller, I 
tried first with require and it didn't work and then with load-library, but 
nothing happened, only that if I put it after the setq it makes dissapear my 
pointer in the menu.

Then I thought that it could work if I rebuild the emacs, but I had the 
followind error:

Loading ediff-hook...
((30105 . 2151) (6823 . 0) (431 . 41) 58263 49647 (7 . 5) (0 . 0))
Pure Lisp storage exhausted
make[1]: *** [emacs] Error 255

How can I increase this storage capacity or whatever it is?

cheers,

Iosu.


>From: Douglas Lewan <dlewan@adirtech.com>
>To: 'Iosu Arizkuren ' <iosuarizkuren@hotmail.com>
>Subject: RE: lisp, emacs-lisp
>Date: Thu, 8 Aug 2002 09:15:21 -0400
>
>Iosu,
>
>The ispell feature isn't loaded at start.  You'll notice that there's a
>message, "Loading ispell...done", the first time you run any ispell 
>command.
>
>To fix your problem you can say either
>
>     (require 'ispell)
>
>or
>
>     (load-library "ispell")
>
>before you set your variable.
>
>(The quotes are special and must appear as above.)
>
>I hope this helps.
>
>,Doug
>Douglas Lewan
>ADIR Technologies
>732 836 3916
>dlewan@adirtech.com
>
>The legal department has requested that this message appear as a footnote 
>to
>all e-mails sent from my computer.
>
>This e-mail and attachments, if any, may contain confidential and/or
>proprietary information. Please be advised that the unauthorized use or
>disclosure of the information is strictly prohibited. If you are not the
>intended recipient, please notify the sender immediately by reply e-mail 
>and
>delete all copies of this message and attachments. Thank you.
>
>
>
>-----Original Message-----
>From: Iosu Arizkuren
>To: help-gnu-emacs@gnu.org
>Sent: 8/8/02 4:13 AM
>Subject: lisp, emacs-lisp
>
>Hi, I'm trying to change a variable in the ispell.el, I've done an entry
>in
>the menu for my own speller, when I click there it does
>(setq ispell-program-name "myspeller") and then (ispell-buffer), then it
>
>stays permanently even if I do (setq ispell-program-name "ispell") just
>after. It doesn't change to ispell.
>My skills in lisp are not the best, any idea on how to change this
>variable
>without using the setq command,(or doing something else that I haven't
>think
>about in yet)?
>Thanks,
>Iosu.
>
>
>_________________________________________________________________
>MSN. Más Útil cada Día. http://www.msn.es/intmap/
>
>
>Lo siento.
>
>_______________________________________________
>Help-gnu-emacs mailing list
>Help-gnu-emacs@gnu.org
>http://mail.gnu.org/mailman/listinfo/help-gnu-emacs




_________________________________________________________________
MSN Fotos: la forma más fácil de compartir e imprimir fotos. 
http://photos.msn.es/support/worldwide.aspx

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

* Re: lisp, emacs-lisp
  2002-08-09 11:59 lisp, emacs-lisp Iosu Arizkuren
@ 2002-08-11 15:45 ` Ehud Karni
  0 siblings, 0 replies; 4+ messages in thread
From: Ehud Karni @ 2002-08-11 15:45 UTC (permalink / raw)
  Cc: dlewan, help-gnu-emacs

On Fri, 09 Aug 2002 11:59:05 +0000, Iosu Arizkuren <iosuarizkuren@hotmail.com> wrote:
> 
> Then I thought that it could work if I rebuild the emacs, but I had the 
> followind error:
> 
> Loading ediff-hook...
> ((30105 . 2151) (6823 . 0) (431 . 41) 58263 49647 (7 . 5) (0 . 0))
> Pure Lisp storage exhausted
> make[1]: *** [emacs] Error 255
> 
> How can I increase this storage capacity or whatever it is?
> 

In my build I do the following:

CFLAGS="-O2 -DSITELOAD_PURESIZE_EXTRA=350000"     # OPT -O2, add PURESIZE for dump
export CFLAGS
./configure --host=i686-redhat-linux-gnu --with-pop --with-x-toolkit=athena

I hope it helps you.

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

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

end of thread, other threads:[~2002-08-11 15:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-08-09 11:59 lisp, emacs-lisp Iosu Arizkuren
2002-08-11 15:45 ` Ehud Karni
  -- strict thread matches above, loose matches on Subject: below --
2002-08-08  8:13 Iosu Arizkuren
2002-08-08 12:11 ` fabrice bauzac

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.