texmacs-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Texmacs-dev] Guile modules and redefining functions


From: Joris van der Hoeven
Subject: Re: [Texmacs-dev] Guile modules and redefining functions
Date: Fri, 11 Apr 2003 15:14:11 +0200 (CEST)

-----------------------------------------------------------
Joris van der Hoeven <address@hidden>
http://www.texmacs.org: GNU TeXmacs scientific text editor
http://www.math.u-psud.fr/~vdhoeven: personal homepage
-----------------------------------------------------------

Hi Leo,

> thank you for your suggestion but it does not work for me.
> I am using TeXmacs-1.0.1.10 and "my-init-texmacs.scm" file is
>
> ; my-init-texmacs.scm
>
> (exec-file "$TEXMACS_PATH/progs" "init-texmacs.scm")
> (use-modules (texmacs edit edit-misc) (core texmacs tm-define) )
> (define (make-inactive-label) (make-expand-arg "MyOwnLabel"))
>
> ; EOF my-init-texmacs.scm
>
> Nevertheless when I type M-! or insert label from the menu the old plain
> label is being inserted. It seems that my redefinition is simply ignored.

Try

(set! make-inactive-label
  (lambda ()
    (make-expand-arg "MyOwnLabel")))

Yours, Joris





reply via email to

[Prev in Thread] Current Thread [Next in Thread]