Re: new ostream code

2000-03-08 Thread Allan Rae
On 8 Mar 2000, Lars Gullik Bjønnes wrote: I will begin slowly to remove the code that is dead when USE_OSTREAM_ONLY is defined. Pending bugreports I am going to do that in the next two-three days. After that is done, I think we should have a new prerelease to get a broader userbase to

Re: LDN future plans

2000-03-08 Thread Allan Rae
On 8 Mar 2000, Lars Gullik Bjønnes wrote: Allan Rae [EMAIL PROTECTED] writes: | I just downloaded a copy of the latest html-4.01 specification. It has a | paragraph saying that redirects via META tags are _bad_ and server side | redirects only should be used -- in other words they aren't

Re: lyx-1.1.5cvs bug: All protected spaces export as ~

2000-03-08 Thread Jean-Marc Lasgouttes
"Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: Lars "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: | | No it Lars doesen't but it absolutely should. The best (less maintence | Lars problems) would be if this knwledge about the surounding Lars envronment | could be done with

Question on LyXLex

2000-03-08 Thread Juergen Vigna
Fast Question: - Is it possible to push back a token read with lex.nextToken() so that when calling another function it can do also lex.nextToken() and get the same? (Hope I explained what I would like to have :) Jürgen -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Using lyx-1.1.2 for the first time

2000-03-08 Thread john
I've just installed LyX 1.1.2 (the most recent stable version) on a Slackware 7 system (glibc-2.1), after reading README and INSTALL, with: ./configure --prefix=/usr/local/pkg/lyx-1.1.2 make make install as user `bin' (who has permission to write to /usr/local/pkg). All

Re: Using lyx-1.1.2 for the first time

2000-03-08 Thread Jean-Marc Lasgouttes
"john" == john [EMAIL PROTECTED] writes: john I've just installed LyX 1.1.2 (the most recent stable version) john on a Slackware 7 system (glibc-2.1), after reading README and john INSTALL, with: john ./configure --prefix=/usr/local/pkg/lyx-1.1.2 make make john install This should work

Why do mathed drawing functions take a byte*

2000-03-08 Thread Jean-Marc Lasgouttes
I get the following errors with compaq cxx: cxx: Error: ../../../lyx-devel/src/mathed/math_macro.C, line 274: argument of type "const char *" is incompatible with parameter of type "unsigned char *" drawStr(pain, LM_TC_TEX, size, x, baseline, ost.str().c_str(),

Porting pop-ups in the rae branch

2000-03-08 Thread Angus Leeming
i thought I'd follow in Allan Rae's footsteps and try and port a pop-up to frontends. Thinking, "let's keep this simple", I chose the Help-Credits pop-up. I now have a FormCredits.[Ch] in the src/frontends/xforms/ directory and... it all works! The changes I've made in src/ are minimal ---

Macros

2000-03-08 Thread Andre Poenitz
Is it true that there is no lyxfunc that simply inserts its argument as text in the current buffer (similar to the behaviour of LFUN_UNKNOWN_ACTION? Or am I just optically chaleenged? Andre' -- It'll take a long time to eat 63.000 peanuts. André Pönitz . [EMAIL

Re: Macros

2000-03-08 Thread Jean-Marc Lasgouttes
"Andre" == Andre Poenitz [EMAIL PROTECTED] writes: Andre Is it true that there is no lyxfunc that simply inserts its Andre argument as text in the current buffer (similar to the Andre behaviour of LFUN_UNKNOWN_ACTION? Andre Or am I just optically chaleenged? I would think that self-insert

Re: lyx rpms...galore

2000-03-08 Thread Jose Abilio Oliveira Matos
On Wed, Mar 08, 2000 at 03:35:27AM +0100, Lars Gullik Bjønnes wrote: http://rpmfind.net/linux/RPM/lyx.html I have no clue on how they locate rpm's. Those are the different rpm's that they have available at their own site. They have it in different folders that correspond to different

Text inset does not have special double-space handling

2000-03-08 Thread Jean-Marc Lasgouttes
Is that really a good thing? JMarc

RE: Text inset does not have special double-space handling

2000-03-08 Thread Juergen Vigna
On 08-Mar-2000 Jean-Marc Lasgouttes wrote: Is that really a good thing? Well it does not have ANY space-handling yet :) I would say that it depends on the type of inset if we have spacehandling ore not. IMO that the ERT inset should not have any space-handling as this is LaTeX code and I

new lyx port does not link -- gettext (-lintl is missing)

2000-03-08 Thread Mikhail Teterin
Submitter-Id: current-users Originator: Mikhail Teterin Organization: Virtual Estates, Inc. Confidential: no Synopsis: new lyx port does not link -- gettext (-lintl is missing) Severity: critical Priority: medium Category: ports Release:FreeBSD

Bug report (buffer-new crashes lyx and server)

2000-03-08 Thread Yingwan Lam (GD 1999)
I am using the binary versions of lyx (rpm). I found this bug in lyx-1.1.3 but the same bug persists even after I've upgraded to lyx 1.1.4fix1. I've turned on the server. The server pipes are the defaults ".lyxpipe.in" and ".lyxpipe.out". When I send the command "buffer-new:" by the following

Re: new ostream code

2000-03-08 Thread Lars Gullik Bjønnes
Allan Rae [EMAIL PROTECTED] writes: | Another prelease about a week later. | | Then again maybe I should hold off on merging gui-indep until after | 1.1.5? Yes, we should wait till after 1.1.5 before merging the rae branch. Lgb

Re: lyx-1.1.5cvs bug: All protected spaces export as ~

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | "Lars" == Lars Gullik Bjønnes [EMAIL PROTECTED] writes: | | Lars "Kayvan A. Sylvan" [EMAIL PROTECTED] writes: | | No it | Lars doesen't but it absolutely should. The best (less maintence | | Lars problems) would be if this knwledge about the

Re: Question on LyXLex

2000-03-08 Thread Lars Gullik Bjønnes
Juergen Vigna [EMAIL PROTECTED] writes: | Fast Question: | | - Is it possible to push back a token read with lex.nextToken() so | that when calling another function it can do also lex.nextToken() | and get the same? So it is not possible to skip the nextToken just look at the token in both

Re: Why do mathed drawing functions take a byte*

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | I get the following errors with compaq cxx: | | cxx: Error: ../../../lyx-devel/src/mathed/math_macro.C, line 274: argument of | type "const char *" is incompatible with parameter of type | "unsigned char *" |

Re: new lyx port does not link -- gettext (-lintl is missing)

2000-03-08 Thread Lars Gullik Bjønnes
Mikhail Teterin [EMAIL PROTECTED] writes: | Stop. | [...] | How-To-Repeat: | | | Fix: | A dirty fix is to add the -lintl to the lyx_LDADD line | in src/Makefile after configure. A clean fix is too | complicated I'm afraid of the configure.in/configure |

RE: platypus (fwd)

2000-03-08 Thread mressler
Hello Jonas, (and everybody else) On Wed, 8 Mar 2000, Dr. Ing. Dieter Jurzitza wrote: On 08-Mar-00 [EMAIL PROTECTED] wrote: Would someone mind translating this for me? My high school German is getting awfully rusty ... -- Forwarded message -- From: Jonas Meurer [EMAIL

Re: platypus (fwd)

2000-03-08 Thread Lars Gullik Bjønnes
[EMAIL PROTECTED] writes: | "!ht" means "Put the figure right here, darn it! and if you really can't, | then try the top of the next page. More like "I really, really want the figure right here". I you want "Put the figure here!" then you need the here.sty package. (and then use a "H" alone.

Re: Arabic patch

2000-03-08 Thread Lars Gullik Bjønnes
Dekel Tsur [EMAIL PROTECTED] writes: | --J2SCkAp4GZ/dPZZf | Content-Type: text/plain; charset=us-ascii | | The following patch adds better support for Arabic, and fix several other | things. | Also, it includes the end-of-proof patch (which haven't yet been | applied) I am sorry but a lot of

Re: cvs install nit

2000-03-08 Thread Lars Gullik Bjønnes
"Garst R. Reese" [EMAIL PROTECTED] writes: | I installed cvs 1.1.5cvs (this morning's) with --with-lyxname=lyxd | All of the share directories etc went well, but the bin went into | (overwrote) /usr/local/bin/lyx instead of lyxd. Do you have time to look at this Jean-Marc? Lgb

Re: Bugs

2000-03-08 Thread Lars Gullik Bjønnes
Dekel Tsur [EMAIL PROTECTED] writes: | 4. The following may be intentional changes: | - The colors for math-mode,latex-mode etc. are darker than before This one is intentional. | - In math mode, the empty delimiter (i.e. \left. or \right. ) is drawn as a |continuous line, instead of

Re: Problem with dead keys

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | "Jacques" == Jacques B Siboni [EMAIL PROTECTED] writes: | | Jacques But presently the problem occurs with lyx editor: generation | Jacques of accented characters is ok 'e leads to é `e leads to è "e | Jacques leads to ë but generation of

Re: recreated close shop

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: | "Kayvan" == Kayvan A Sylvan [EMAIL PROTECTED] writes: | | I think that I found a way to recreate this bug (or maybe it a | different bug) Open the attached file, put the cursor before the | letter X, and then hold backspace, and LyX will

Re: The code in layout.C

2000-03-08 Thread Lars Gullik Bjønnes
Dekel Tsur [EMAIL PROTECTED] writes: | | void LyXTextClass::readOutputType(LyXLex lexrc) | | { | | keyword_item outputTypeTags[] = { | | { "docbook", DOCBOOK }, | | { "latex", LATEX }, | | { "linuxdoc", LINUXDOC }, | | {

\show_banner

2000-03-08 Thread Lars Gullik Bjønnes
I am not sure if anyone noticed, but I added a lyxrc variable \show_banner that can be used to control whether to show the LyX startup banner or not. Lgb

Re: Porting pop-ups in the rae branch

2000-03-08 Thread Lars Gullik Bjønnes
Angus Leeming [EMAIL PROTECTED] writes: | --Boundary-=_qmZrHLajoetbkwlTZTViemHPfybp | Content-Type: text/plain | Content-Transfer-Encoding: 8bit | | i thought I'd follow in Allan Rae's footsteps and try and | port a pop-up to frontends. Allan, are you having a look at this? Lgb

unless

2000-03-08 Thread Lars Gullik Bjønnes
unless I see some objections I will begin to remove code that is dead because of USE_OSTREAM_ONLY today. Lgb

Latest CVS does not compile

2000-03-08 Thread Kayvan A. Sylvan
Here's the error: g++ -DHAVE_CONFIG_H -I. -I. -I. -I../images -I/usr/X11R6/include -g -ansi -W -Wall -Wno-return-type -c lyxlex.C Wall -Wno-return-type -c lyxlex.C In file included from lyxlex.C:19: support/lyxalgo.h:8: `less' not declared ---Kayvan -- Kayvan A.

Re: Latest CVS does not compile

2000-03-08 Thread Kayvan A. Sylvan
On Wed, Mar 08, 2000 at 09:27:59PM -0800, Kayvan A. Sylvan wrote: Here's the error: g++ -DHAVE_CONFIG_H -I. -I. -I. -I../images -I/usr/X11R6/include -g -ansi -W -Wall -Wno-return-type -c lyxlex.C Wall -Wno-return-type -c lyxlex.C In file included from lyxlex.C:19: support/lyxalgo.h:8:

Re: Porting pop-ups in the rae branch

2000-03-08 Thread Allan Rae
I haven't time to look at this straight away. I'll look tonight and give you some feedback on the patches tomorrow. I have a few comments for you at the bottom of this email also. I'll make a few general comments at this point regarding rules for gui-indep of dialogs. These are not directed

Re: Formatting source code

2000-03-08 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 05:31:14AM +0100, Lars Gullik Bjønnes wrote: This is really a great package. I just tested with buffer.C in the LyX distribution and it worked flawlessly. I think we should somehow create support for this in LyX. The listings package seems to be actively

Re: LDN

2000-03-08 Thread Allan Rae
On Tue, 7 Mar 2000, Allan Rae wrote: A "LyX tip of the (Bi)Week" might not be a bad idea, though. Of course, if we had FAQ it might not be necessary. What's with this bi-weekly rubbish? Hasn't the US heard of fortnights? [ I then went on and ranted about people with tiny minds ] None

Re: new ostream code

2000-03-08 Thread Allan Rae
On 8 Mar 2000, Lars Gullik Bjønnes wrote: > > I will begin slowly to remove the code that is dead when > USE_OSTREAM_ONLY is defined. Pending bugreports I am going to do that > in the next two-three days. > > After that is done, I think we should have a new prerelease to get a > broader

Re: LDN future plans

2000-03-08 Thread Allan Rae
On 8 Mar 2000, Lars Gullik Bjønnes wrote: > Allan Rae <[EMAIL PROTECTED]> writes: > | I just downloaded a copy of the latest html-4.01 specification. It has a > | paragraph saying that redirects via META tags are _bad_ and server side > | redirects only should be used -- in other words they

Re: lyx-1.1.5cvs bug: All protected spaces export as ~

2000-03-08 Thread Jean-Marc Lasgouttes
> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: Lars> "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | > | > No it Lars> doesen't but it absolutely should. The best (less maintence | > Lars> problems) would be if this knwledge about the surounding Lars> envronment | > could be

Question on LyXLex

2000-03-08 Thread Juergen Vigna
Fast Question: - Is it possible to push back a token read with lex.nextToken() so that when calling another function it can do also lex.nextToken() and get the same? (Hope I explained what I would like to have :) Jürgen -._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._-._

Using lyx-1.1.2 for the first time

2000-03-08 Thread john
I've just installed LyX 1.1.2 (the most recent stable version) on a Slackware 7 system (glibc-2.1), after reading README and INSTALL, with: ./configure --prefix=/usr/local/pkg/lyx-1.1.2 make make install as user `bin' (who has permission to write to /usr/local/pkg). All

Re: Using lyx-1.1.2 for the first time

2000-03-08 Thread Jean-Marc Lasgouttes
> "john" == john <[EMAIL PROTECTED]> writes: john> I've just installed LyX 1.1.2 (the most recent stable version) john> on a Slackware 7 system (glibc-2.1), after reading README and john> INSTALL, with: john> ./configure --prefix=/usr/local/pkg/lyx-1.1.2 make make john> install This

Why do mathed drawing functions take a byte*

2000-03-08 Thread Jean-Marc Lasgouttes
I get the following errors with compaq cxx: cxx: Error: ../../../lyx-devel/src/mathed/math_macro.C, line 274: argument of type "const char *" is incompatible with parameter of type "unsigned char *" drawStr(pain, LM_TC_TEX, size, x, baseline, ost.str().c_str(),

Porting pop-ups in the rae branch

2000-03-08 Thread Angus Leeming
i thought I'd follow in Allan Rae's footsteps and try and port a pop-up to frontends. Thinking, "let's keep this simple", I chose the Help->Credits pop-up. I now have a FormCredits.[Ch] in the src/frontends/xforms/ directory and... it all works! The changes I've made in src/ are minimal ---

Macros

2000-03-08 Thread Andre Poenitz
Is it true that there is no lyxfunc that simply inserts its argument as text in the current buffer (similar to the behaviour of LFUN_UNKNOWN_ACTION? Or am I just optically chaleenged? Andre' -- It'll take a long time to eat 63.000 peanuts. André Pönitz . [EMAIL

Re: Macros

2000-03-08 Thread Jean-Marc Lasgouttes
> "Andre" == Andre Poenitz <[EMAIL PROTECTED]> writes: Andre> Is it true that there is no lyxfunc that simply inserts its Andre> argument as text in the current buffer (similar to the Andre> behaviour of LFUN_UNKNOWN_ACTION? Andre> Or am I just optically chaleenged? I would think that

Re: lyx rpms...galore

2000-03-08 Thread Jose Abilio Oliveira Matos
On Wed, Mar 08, 2000 at 03:35:27AM +0100, Lars Gullik Bjønnes wrote: > > http://rpmfind.net/linux/RPM/lyx.html > > I have no clue on how they locate rpm's. Those are the different rpm's that they have available at their own site. They have it in different folders that correspond to

Text inset does not have special double-space handling

2000-03-08 Thread Jean-Marc Lasgouttes
Is that really a good thing? JMarc

RE: Text inset does not have special double-space handling

2000-03-08 Thread Juergen Vigna
On 08-Mar-2000 Jean-Marc Lasgouttes wrote: > > Is that really a good thing? > Well it does not have ANY space-handling yet :) I would say that it depends on the type of inset if we have spacehandling ore not. IMO that the ERT inset should not have any space-handling as this is LaTeX code and

new lyx port does not link -- gettext (-lintl is missing)

2000-03-08 Thread Mikhail Teterin
>Submitter-Id: current-users >Originator: Mikhail Teterin >Organization: Virtual Estates, Inc. >Confidential: no >Synopsis: new lyx port does not link -- gettext (-lintl is missing) >Severity: critical >Priority: medium >Category: ports >Release:FreeBSD

Bug report ("buffer-new" crashes lyx and server)

2000-03-08 Thread Yingwan Lam (GD 1999)
I am using the binary versions of lyx (rpm). I found this bug in lyx-1.1.3 but the same bug persists even after I've upgraded to lyx 1.1.4fix1. I've turned on the server. The server pipes are the defaults ".lyxpipe.in" and ".lyxpipe.out". When I send the command "buffer-new:" by the following

Re: new ostream code

2000-03-08 Thread Lars Gullik Bjønnes
Allan Rae <[EMAIL PROTECTED]> writes: | > Another prelease about a week later. | | Then again maybe I should hold off on merging gui-indep until after | 1.1.5? Yes, we should wait till after 1.1.5 before merging the rae branch. Lgb

Re: lyx-1.1.5cvs bug: All protected spaces export as ~

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | > "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes: | | Lars> "Kayvan A. Sylvan" <[EMAIL PROTECTED]> writes: | > | > No it | Lars> doesen't but it absolutely should. The best (less maintence | > | Lars> problems) would be if this

Re: Question on LyXLex

2000-03-08 Thread Lars Gullik Bjønnes
Juergen Vigna <[EMAIL PROTECTED]> writes: | Fast Question: | | - Is it possible to push back a token read with lex.nextToken() so | that when calling another function it can do also lex.nextToken() | and get the same? So it is not possible to skip the nextToken just look at the token in

Re: Why do mathed drawing functions take a byte*

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | I get the following errors with compaq cxx: | | cxx: Error: ../../../lyx-devel/src/mathed/math_macro.C, line 274: argument of | type "const char *" is incompatible with parameter of type | "unsigned char *" |

Re: new lyx port does not link -- gettext (-lintl is missing)

2000-03-08 Thread Lars Gullik Bjønnes
Mikhail Teterin <[EMAIL PROTECTED]> writes: | Stop. | [...] | >How-To-Repeat: | | | >Fix: | A dirty fix is to add the -lintl to the lyx_LDADD line | in src/Makefile after configure. A clean fix is too | complicated I'm afraid of the configure.in/configure |

RE: platypus (fwd)

2000-03-08 Thread mressler
Hello Jonas, (and everybody else) On Wed, 8 Mar 2000, Dr. Ing. Dieter Jurzitza wrote: > On 08-Mar-00 [EMAIL PROTECTED] wrote: > > Would someone mind translating this for me? My high school German is > > getting awfully rusty ... > > > > -- Forwarded message -- > > From: Jonas

Re: platypus (fwd)

2000-03-08 Thread Lars Gullik Bjønnes
<[EMAIL PROTECTED]> writes: | "!ht" means "Put the figure right here, darn it! and if you really can't, | then try the top of the next page. More like "I really, really want the figure right here". I you want "Put the figure here!" then you need the here.sty package. (and then use a "H"

Re: Arabic patch

2000-03-08 Thread Lars Gullik Bjønnes
Dekel Tsur <[EMAIL PROTECTED]> writes: | --J2SCkAp4GZ/dPZZf | Content-Type: text/plain; charset=us-ascii | | The following patch adds better support for Arabic, and fix several other | things. | Also, it includes the end-of-proof patch (which haven't yet been | applied) I am sorry but a lot of

Re: cvs install nit

2000-03-08 Thread Lars Gullik Bjønnes
"Garst R. Reese" <[EMAIL PROTECTED]> writes: | I installed cvs 1.1.5cvs (this morning's) with --with-lyxname=lyxd | All of the share directories etc went well, but the bin went into | (overwrote) /usr/local/bin/lyx instead of lyxd. Do you have time to look at this Jean-Marc? Lgb

Re: Bugs

2000-03-08 Thread Lars Gullik Bjønnes
Dekel Tsur <[EMAIL PROTECTED]> writes: | 4. The following may be intentional changes: | - The colors for math-mode,latex-mode etc. are darker than before This one is intentional. | - In math mode, the empty delimiter (i.e. \left. or \right. ) is drawn as a |continuous line, instead of

Re: Problem with dead keys

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | > "Jacques" == Jacques B Siboni <[EMAIL PROTECTED]> writes: | | Jacques> But presently the problem occurs with lyx editor: generation | Jacques> of accented characters is ok 'e leads to é `e leads to è "e | Jacques> leads to ë but

Re: recreated close shop

2000-03-08 Thread Lars Gullik Bjønnes
Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes: | > "Kayvan" == Kayvan A Sylvan <[EMAIL PROTECTED]> writes: | | >> I think that I found a way to recreate this bug (or maybe it a | >> different bug) Open the attached file, put the cursor before the | >> letter X, and then hold backspace,

Re: The code in layout.C

2000-03-08 Thread Lars Gullik Bjønnes
Dekel Tsur <[EMAIL PROTECTED]> writes: | | void LyXTextClass::readOutputType(LyXLex & lexrc) | | { | | keyword_item outputTypeTags[] = { | | { "docbook", DOCBOOK }, | | { "latex", LATEX }, | | { "linuxdoc", LINUXDOC }, | | {

\show_banner

2000-03-08 Thread Lars Gullik Bjønnes
I am not sure if anyone noticed, but I added a lyxrc variable \show_banner that can be used to control whether to show the LyX startup banner or not. Lgb

Re: Porting pop-ups in the rae branch

2000-03-08 Thread Lars Gullik Bjønnes
Angus Leeming <[EMAIL PROTECTED]> writes: | --Boundary-=_qmZrHLajoetbkwlTZTViemHPfybp | Content-Type: text/plain | Content-Transfer-Encoding: 8bit | | i thought I'd follow in Allan Rae's footsteps and try and | port a pop-up to frontends. Allan, are you having a look at this? Lgb

unless

2000-03-08 Thread Lars Gullik Bjønnes
unless I see some objections I will begin to remove code that is dead because of USE_OSTREAM_ONLY today. Lgb

Latest CVS does not compile

2000-03-08 Thread Kayvan A. Sylvan
Here's the error: g++ -DHAVE_CONFIG_H -I. -I. -I. -I../images -I/usr/X11R6/include -g -ansi -W -Wall -Wno-return-type -c lyxlex.C Wall -Wno-return-type -c lyxlex.C In file included from lyxlex.C:19: support/lyxalgo.h:8: `less' not declared ---Kayvan -- Kayvan A.

Re: Latest CVS does not compile

2000-03-08 Thread Kayvan A. Sylvan
On Wed, Mar 08, 2000 at 09:27:59PM -0800, Kayvan A. Sylvan wrote: > Here's the error: > > g++ -DHAVE_CONFIG_H -I. -I. -I. -I../images -I/usr/X11R6/include -g -ansi -W -Wall >-Wno-return-type -c lyxlex.C > > Wall -Wno-return-type -c lyxlex.C > In file included from lyxlex.C:19: >

Re: Porting pop-ups in the rae branch

2000-03-08 Thread Allan Rae
I haven't time to look at this straight away. I'll look tonight and give you some feedback on the patches tomorrow. I have a few comments for you at the bottom of this email also. I'll make a few general comments at this point regarding rules for gui-indep of dialogs. These are not directed

Re: Formatting source code

2000-03-08 Thread Kayvan A. Sylvan
On Thu, Mar 09, 2000 at 05:31:14AM +0100, Lars Gullik Bjønnes wrote: > > This is really a great package. > I just tested with buffer.C in the LyX distribution and it worked > flawlessly. > > I think we should somehow create support for this in LyX. > The listings package seems to be actively

Re: LDN

2000-03-08 Thread Allan Rae
On Tue, 7 Mar 2000, Allan Rae wrote: > > A "LyX tip of the (Bi)Week" might not be a bad idea, though. Of course, if > > we had FAQ it might not be necessary. > > What's with this bi-weekly rubbish? Hasn't the US heard of fortnights? [ I then went on and ranted about people with tiny minds ]