[patch included] Re: [Jules Bean jmlb2@hermes.cam.ac.uk] Various(math-mode) HMI improvements

2000-09-15 Thread Marko Vendelin
On 15 Sep 2000, Lars Gullik Bjønnes wrote: | Any good library (C/C++) which is able to check whether a string matches | given regexp. Return value TRUE/FALSE/invalid regexp is expected :) We already have that included under src/support so it is easy to use. The following patch adds

Re: [patch included] Re: [Jules Bean jmlb2@hermes.cam.ac.uk] Various (math-mode) HMI improvements

2000-09-15 Thread Lars Gullik Bjønnes
Marko Vendelin [EMAIL PROTECTED] writes: | On 15 Sep 2000, Lars Gullik Bjønnes wrote: | | | Any good library (C/C++) which is able to check whether a string matches | | given regexp. Return value TRUE/FALSE/invalid regexp is expected :) | | We already have that included under src/support

Re: [patch included] Re: [Jules Bean jmlb2@hermes.cam.ac.uk]Various (math-mode) HMI improvements

2000-09-15 Thread Marko Vendelin
On 15 Sep 2000, Lars Gullik Bjønnes wrote: One not however: do not use defines, ever! #define CONF_COLUMN "column" should be static string const CONF_COLUMN("column"); I will submit a patch with all these defines removed. But can you tell me why should we avoid the defines (I

Re: [patch included] Re: [Jules Bean jmlb2@hermes.cam.ac.uk] Various (math-mode) HMI improvements

2000-09-15 Thread Lars Gullik Bjønnes
Marko Vendelin [EMAIL PROTECTED] writes: | On 15 Sep 2000, Lars Gullik Bjønnes wrote: | | One not however: do not use defines, ever! | | #define CONF_COLUMN "column" | | should be | | static string const CONF_COLUMN("column"); | | I will submit a patch with all these defines

[patch included] Re: [Jules Bean <jmlb2@hermes.cam.ac.uk>] Various(math-mode) HMI improvements

2000-09-15 Thread Marko Vendelin
On 15 Sep 2000, Lars Gullik Bjønnes wrote: > | Any good library (C/C++) which is able to check whether a string matches > | given regexp. Return value TRUE/FALSE/invalid regexp is expected :) > > We already have that included under src/support so it is easy to use. The following patch adds

Re: [patch included] Re: [Jules Bean <jmlb2@hermes.cam.ac.uk>] Various (math-mode) HMI improvements

2000-09-15 Thread Lars Gullik Bjønnes
Marko Vendelin <[EMAIL PROTECTED]> writes: | On 15 Sep 2000, Lars Gullik Bjønnes wrote: | | > | Any good library (C/C++) which is able to check whether a string matches | > | given regexp. Return value TRUE/FALSE/invalid regexp is expected :) | > | > We already have that included under

Re: [patch included] Re: [Jules Bean <jmlb2@hermes.cam.ac.uk>]Various (math-mode) HMI improvements

2000-09-15 Thread Marko Vendelin
On 15 Sep 2000, Lars Gullik Bjønnes wrote: > One not however: do not use defines, ever! > > #define CONF_COLUMN "column" > > should be > > static string const CONF_COLUMN("column"); I will submit a patch with all these defines removed. But can you tell me why should we avoid the

Re: [patch included] Re: [Jules Bean <jmlb2@hermes.cam.ac.uk>] Various (math-mode) HMI improvements

2000-09-15 Thread Lars Gullik Bjønnes
Marko Vendelin <[EMAIL PROTECTED]> writes: | On 15 Sep 2000, Lars Gullik Bjønnes wrote: | | > One not however: do not use defines, ever! | > | > #define CONF_COLUMN "column" | > | > should be | > | > static string const CONF_COLUMN("column"); | | I will submit a patch with all these