[Date Prev] [Date Next] [Thread Prev] [Thread Next] Date Index Thread Index Search archive:
Date:Mon Jul 21 04:44:56 1999 
Subject:Re: Preventing ved from using bold fonts under xwindows 
From:Luc Beaudoin 
Volume-ID:990721.01 

 Thanks, Aaron. This works for me.

Luc
> Try putting this in your vedinit.p file:
> 
> define vedinitialise(file);
>         ;;; Do nothing if the file was already in a Ved buffer.
>         returnif(file);
> 
>         ;;; otherwise check the first line to see if it is a documentation
>         ;;; file (not a foolproof test).
> 
>         lvars firstline =  subscrv(1,vedbuffer);
> 
>         if isstartstring('HELP ', firstline)
>         or isstartstring('TEACH ', firstline)
>         or isstartstring('REF ', firstline)
>         then
>                 vedinput(ved_strip);
>         endif;
> enddefine;
>