jed-users mailing list

[2004 Date Index] [2004 Thread Index] [Other years]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]

Re: Template function


On Sun, Jan 18, 2004 at 11:50:09AM -0500, John E. Davis wrote:
> It is probably the side effect of other bug fixes.
Come to think of it,

1;
sprintf("%d");

gives a stack of

"%d"
1

whereas

sprintf("%d", 1)

gives

1
"%d"

so it's strange that it worked in 1.4.4

In my cal.sl I had

	else vinsert ("%2d ", ());

the , () does nothing, it could have been

	else vinsert ("%2d ");

I gather this should be either

	else
	  { 
	     day = (); 
	     vinsert ("%2d ", day);
	  }

or
	else insert (Sprintf("%2d ", exch, 1));

and Sprintf is the only way in RPN syntax?

> 
> >BTW how do I get JED to compile with /usr/lib/libslang.so.1 instead of
> >/lib/libslang.so.1?
> It should work.  When I compile my own version of slang, I use
> /usr/local, e.g.,
Yes, but you probably don't have an old slang in /lib. I looked at how slsh
is compiled and added -Wl,-R/usr/lib to the LDFLAGS, that worked.

--------------------------
To unsubscribe send email to <jed-users-request@xxxxxxxxxxx> with
the word "unsubscribe" in the message body.
Need help? Email <jed-users-owner@xxxxxxxxxxx>.


[2004 date index] [2004 thread index]
[Thread Prev] [Thread Next]      [Date Prev] [Date Next]