]> git.lyx.org Git - features.git/blob - ChangeLog
iNew configure flag --with-lyxname. Misc small compilation fixes.
[features.git] / ChangeLog
1 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * src/support/block.h: disable operator T* (), since it causes
4         problems with both compilers I tried. See comments in the file.
5
6         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
7         --with-lyxname. 
8
9         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
10         variable LYX_DIR_10x to LYX_DIR_11x.
11
12         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
13
14         * INSTALL: document --with-lyxname.
15         * NEWS: ditto.
16
17         * configure.in: new configure flag --with-lyxname which allows to
18         choose the name under which lyx is installed. Default is "lyx", of
19         course. It used to be possible to do this with --program-suffix,
20         but the later has in fact a different meaning for autoconf.
21
22         * src/support/lstrings.h (lstrchr): reformat a bit.
23
24         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
25         * src/mathed/math_defs.h: ditto.
26
27 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
28
29         * src/bufferlist.C (close): don't call insetUnlock if the buffer
30         does not have a BufferView.
31         (unlockInset): ditto + don't access the_locking_inset if the
32         buffer does not have a BufferView.
33
34         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
35         certain circumstances so that we don't continue a keyboard
36         operation long after the key was released. Try f.ex. to load a
37         large document, press PageDown for some seconds and then release
38         it. Before this change the document would contine to scroll for
39         some time, with this change it stops imidiatly.
40
41         * src/support/block.h: don't allocate more space than needed. As
42         long as we don't try to write to the arr[x] in a array_type arr[x]
43         it is perfectly ok. (if you write to it you might segfault).
44         added operator value_type*() so that is possible to pass the array
45         to functions expecting a C-pointer.
46
47         * lib/Makefile.am (dist-hook): don't fail completely if unable to
48         cvs.
49
50         * intl/*: updated to gettext 0.10.35, tried to add our own
51         required modifications. Please verify.
52
53         * po/*: updated to gettext 0.10.35, tried to add our own required
54         modifications. Please verify.
55         
56         * src/support/lstrings.C (tostr): go at fixing the problem with
57         cxx and stringstream. When stringstream is used return
58         oss.str().c_str() so that problems with lyxstring and basic_string
59         are avoided. Note that the best solution would be for cxx to use
60         basic_string all the way, but it is not conformant yet. (it seems)
61
62         * src/lyx_cb.C + other files: moved several global functions to
63         class BufferView, some have been moved to BufferView.[Ch] others
64         are still located in lyx_cb.C. Code changes because of this. (part
65         of "get rid of current_view project".)
66
67         * src/buffer.C + other files: moved several Buffer functions to
68         class BufferView, the functions are still present in buffer.C.
69         Code changes because of this.
70
71         * config/lcmessage.m4: updated to most recent. used when creating
72         acinclude.m4.
73
74         * config/progtest.m4: updated to most recent. used when creating
75         acinclude.m4.
76         
77         * config/gettext.m4: updated to most recent. applied patch for
78         tmplinguas.
79
80         * config/gettext.m4.patch: new file that shows what changes we
81         have done to the local copy of gettext.m4.
82
83         * config/libtool.m4: new file, used in creation of acinclude.m4
84
85         * config/lyxinclude.m4: new file, this is the lyx created m4
86         macros, used in making acinclude.m4.
87         
88         * autogen.sh: GNU m4 discovered as a separate task not as part of
89         the lib/configure creation. 
90         Generate acinlucde from files in config. Actually cat
91         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
92         easier to upgrade .m4 files that really are external.
93
94         * src/Spacing.h: moved using std::istringstream to right after
95         <sstream>. This should fix the problem seen with some compilers.
96
97 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
98
99         * src/lyx_cb.C: began some work to remove the dependency a lot of
100         functions have on BufferView::text, even if not really needed.
101         (GetCurrentTextClass): removed this func, it only hid the
102         current_view. 
103
104         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
105         forgot this in last commit.
106
107         * src/Bullet.C (bulletEntry): use static char const *[] for the
108         tables, becuase of this the return arg had to change to string.
109         (bulletSize): ditto
110         (~Bullet): removed unneeded destructor
111
112         * src/BufferView.C (beforeChange): moved from lyx_cb.C
113         (insetSleep): moved from Buffer
114         (insetWakeup): moved from Buffer
115         (insetUnlock): moved from Buffer
116
117         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
118         from Buffer to BufferView.
119         
120         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
121
122         * config/ltmain.sh: updated to version 1.3.4 of libtool
123
124         * config/ltconfig: updated to version 1.3.4 of libtool
125
126 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
127
128
129         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
130         Did I get that right?
131
132         * src/lyxlex.h: add a "using" directive or two.
133         * src/Spacing.h: ditto.
134         * src/insets/figinset.C: ditto.
135         * src/support/filetools.C: ditto.
136         * src/support/lstrings.C: ditto.
137         * src/BufferView.C: ditto.
138         * src/bufferlist.C: ditto.
139         * src/lyx_cb.C: ditto.
140         * src/lyxlex.C: ditto.
141
142         * NEWS: add some changes for 1.1.4.
143         
144 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
145
146         * src/BufferView.C: first go at a TextCache to speed up switching
147         between documents.
148
149 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
150
151         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
152         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
153         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
154         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
155         Meinen.
156         
157         * src/mathed/math_defs.h (MathedRowSt): make sure that all
158         members of the struct are correctly initialized to 0 (detected by
159         purify) 
160         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
161         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
162
163         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
164         pidwait, since it was allocated with "new". This was potentially
165         very bad. Thanks to Michael Schmitt for running purify for us.
166
167
168 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
169
170         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
171
172         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
173
174 1999-12-30  Allan Rae  <rae@lyx.org>
175
176         * lib/templates/IEEEtran.lyx: minor change
177
178         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
179         src/mathed/formula.C (LocalDispatch): askForText changes
180
181         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
182         know when a user has cancelled input. Fixes annoying problems with
183         inserting labels and version control.
184
185 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
186
187         * src/support/lstrings.C (tostr): rewritten to use strstream and
188         stringstream
189
190 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
191
192         * src/support/filetools.C (IsFileWriteable): use fstream to check
193         (IsDirWriteable): use fileinfo to check
194
195         * src/support/filetools.h (FilePtr): whole class deleted
196
197         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
198
199         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
200
201         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
202
203         * src/bufferlist.C (write): use ifstream and ofstream instead of
204         FILE*
205
206         * src/Spacing.h: use istrstream instead of sscanf
207
208         * src/mathed/math_defs.h: change first arg to istream from FILE*
209
210         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
211
212         * src/mathed/math_parser.C: have yyis to be an istream 
213         (LexGetArg): use istream (yyis)
214         (yylex): ditto
215         (mathed_parse): ditto
216         (mathed_parser_file): first arg istream instead of FILE*, set yyis
217
218         * src/mathed/formula.C (Read): rewritten to use istream
219
220         * src/mathed/formulamacro.C (Read): rewritten to use istream
221
222         * src/lyxlex.h (~LyXLex): deleted desturctor 
223         (getStream): new function, returns an istream
224         (getFile): deleted funtion
225         (IsOK): return is.good();
226
227         * src/lyxlex.C (LyXLex): delete file and owns_file
228         (setFile): open an filebuf and assign that to a istream instead of
229         using FILE*
230         (setStream): new function, takes an istream as arg. 
231         (setFile): deleted function
232         (EatLine): rewritten us use istream instead of FILE*
233         (next): ditto
234         (nextToken): ditto
235
236         * src/table.C (LyXTable): use istream instead of FILE*
237         (Read): rewritten to take an istream instead of FILE*
238
239 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
240
241         * src/buffer.C (Dispatch): remove an extraneous break statement.
242
243         * src/support/filetools.C (QuoteName): change to do simple
244         'quoting'. More work is necessary. Also changed to do nothing
245         under emx (needs fix too).
246         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
247
248         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
249         config.h.in to the AC_DEFINE_UNQUOTED() call.
250         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
251         needs char * as argument (because Solaris 7 declares it like
252         that). 
253
254         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
255         remove definition of BZERO.
256
257 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
258
259         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
260         defined, "lyxregex.h" if not.
261
262         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
263         pkglib_ to noinst_
264         (REGEX): new variable that is set to regex.c lyxregex.h when
265         AM_CONDITIONAL USE_REGEX is set.
266         (libsupport_la_SOURCES): add $(REGEX)
267
268         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
269         pkglib_ to noinst_
270
271         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
272         pkglib_ to noinst_
273
274         * configure.in: add call to LYX_REGEX 
275
276         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
277         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
278
279 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
280
281         * lib/bind/fi_menus.bind: new file, from
282         pauli.virtanen@saunalahti.fi. 
283
284         * src/buffer.C (getBibkeyList): pass the parameter delim to
285         InsetInclude::getKeys and InsetBibtex::getKeys.
286
287         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
288         is passed to Buffer::getBibkeyList
289         
290         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
291         instead of the hardcoded comma.
292
293         * src/insets/insetbib.C (getKeys): make sure that there are not
294         leading blanks in bibtex keys. Normal latex does not care, but
295         harvard.sty seems to dislike blanks at the beginning of citation
296         keys. In particular, the retturn value of the function is
297
298         * INSTALL: make it clear that libstdc++ is needed and that gcc
299         2.7.x probably does not work.
300
301         * src/support/filetools.C (findtexfile): make debug message go to
302         the LATEX channel
303         * src/insets/insetbib.C (getKeys): ditto
304
305         * src/debug.C (showTags): make sure that the output is correctly
306         aligned. 
307
308         * configure.in: add a comment for TWO_COLOR_ICON define.
309
310         * acconfig.h: remove all the entries that already defined in
311         configure.in or acinclude.m4.
312
313         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
314         to avoid user name, date and copyright.
315
316 1999-12-21  Juergen Vigna  <jug@sad.it>
317
318         * src/table.C (Read): Now read bogus row format informations
319                 if the format is < 5 so that afterwards the table can
320                 be read by lyx but without any format-info. Fixed the
321                 crash we experienced when not doing this.
322
323 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
324
325         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
326         (RedoDrawingOfParagraph): ditto
327         (RedoParagraphs): ditto
328         (RemoveTableRow): ditto
329
330         * src/text.C (Fill): rename arg paperwidth -> paper_width
331
332         * src/buffer.C (insertLyXFile): rename var filename -> fname
333         (writeFile): rename arg filename -> fname
334         (writeFileAscii): ditto
335         (makeLaTeXFile): ditto
336         (makeLinuxDocFile): ditto
337         (makeDocBookFile): ditto
338
339         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
340         (runBibTeX): ditto
341
342         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
343
344         * src/bmtable.h: add extern "C" on this file when __cplusplus is
345         defined.
346
347         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
348         compiled by a C compiler not C++. 
349
350         * src/layout.h (LyXTextClass): added typedef for const_iterator
351         (LyXTextClassList): added typedef for const_iterator + member
352         functions begin and end.
353
354         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
355         iterators to fill the choice_class.
356         (updateLayoutChoice): rewritten to use iterators to fill the
357         layoutlist in the toolbar.
358
359         * src/BufferView.h (BufferView::work_area_width): removed unused
360         variable. 
361
362         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
363
364         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
365         (sgmlCloseTag): ditto
366
367         * src/support/lstrings.h: return type of countChar changed to
368         unsigned char.
369
370         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
371         what version of this func to use. Also made to return unsigned int.
372
373         * configure.in: call LYX_STD_COUNT 
374
375         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
376         conforming std::count. 
377
378 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
379
380         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
381         and a subscript would give bad display (patch from Dekel Tsur
382         <dekel@math.tau.ac.il>). 
383
384         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
385
386         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
387         please sun CC.
388
389         * src/chset.h: add a few 'using' directives
390
391         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
392         triggered when no buffer is active
393
394         * src/layout.C: removed `break' after `return' in switch(), since
395         it is unreachable.
396
397         * src/lyx_main.C (init): make sure LyX can be ran in place even
398         when libtool has done its magic with shared libraries. Fix the
399         test for the case when the system directory has not been found.
400
401         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
402         name for the latex file.
403         (MenuMakeHTML): ditto
404
405         * src/buffer.h: add an optional boolean argument, which is passed
406         to ChangeExtension.
407
408 1999-12-20  Allan Rae  <rae@lyx.org>
409
410         * lib/templates/IEEEtran.lyx: small correction and update.
411
412         * configure.in: Attempted to use LYX_PATH_HEADER
413
414         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
415
416         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
417         input from JMarc.  Now use preprocessor to find the header.
418         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
419         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
420         LYX_STL_STRING_FWD.  See comments in file.      
421
422 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
423
424         * The global MiniBuffer * minibuffer variable is dead.
425         
426         * The global FD_form_main * fd_form_main variable is dead.
427
428 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
429
430         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
431
432         * src/table.h: add the LOstream.h header
433         * src/debug.h: ditto
434         
435         * src/LyXAction.h: change the explaination of the ReadOnly
436         attribute: is indicates that the function _can_ be used.
437
438         * src/LyXAction.C (init): find-replace _can_ be used in read-only
439         mode. 
440
441 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
442
443         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
444         unsigned. 
445         (descent): ditto
446         (lbearing): ditto
447         (rbearing): ditto
448
449         * src/paragraph.C (GetWord): assert on pos>=0
450         (GetChar): ditto
451         
452         * src/support/lyxstring.C: condition the use of an invariant on
453         ENABLE_ASSERTIONS 
454         * src/support/lyxstring.h: ditto
455
456         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
457         Use LAssert.h instead of plain assert().
458
459         * src/support/lstrings.h: add LAssert.h, in case it is needed.
460
461         * src/lyxfunc.C: do not include LAssert.h, it is not used.
462         * src/support/filetools.C: ditto
463
464         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
465         is not defined. 
466
467         * INSTALL: document the new configure flags
468         
469         * configure.in: suppress --with-debug; add --enable-assertions
470
471         * acinclude.m4: various changes in alignment of help strings.
472
473 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
474
475         * src/kbmap.C: commented out the use of the hash map in kb_map,
476         beginning of movement to a stl::container. 
477
478         * several files: removed code that was not in effect when
479         MOVE_TEXT was defined.
480         
481         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
482         for escaping should not be used. We can discuss if the string
483         should be enclosed in f.ex. [] instead of "".
484
485         * src/trans_mgr.C (insert): use the new returned value from
486         encodeString to get deadkeys and keymaps done correctly.
487
488         * src/chset.C (encodeString): changed to return a pair, to tell
489         what to use if we know the string.
490
491         * src/lyxscreen.h (fillArc): new function.
492
493         * src/FontInfo.C (resize): rewritten to use more std::string like
494         structore, especially string::replace.
495
496         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
497         approp. accents.
498
499         * configure.in (chmod +x some scripts): remove config/gcc-hack 
500
501 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
502
503         * src/buffer.C (writeFile): change once again the top comment in a
504         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
505         instead of an hardcoded version number.
506         (makeDocBookFile): ditto
507
508         * src/version.h: add new define LYX_DOCVERSION
509
510         * po/de.po: update from Pit Sütterlin
511         * lib/bind/de_menus.bind: ditto.
512         
513         * src/lyxfunc.C (Dispatch): call MenuExport()
514         * src/buffer.C (Dispatch): ditto
515
516         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
517         LyXFunc::Dispatch().
518         (MenuExport): new function, moved from
519         LyXFunc::Dispatch().
520
521         * src/trans_mgr.C (insert): small cleanup
522         * src/chset.C (loadFile): ditto
523
524         * lib/kbd/iso8859-1.cdef: add missing backslashes
525
526 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
527
528         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
529         help with placing the manually drawn accents better.
530         (Rbearing): ditto
531         (Draw): x2 and hg changed to float to minimize rounding errors and
532         help place the accents better.
533
534         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
535         unsigned short to char is just wrong...cast the char to unsigned
536         char instead so that the two values can compare sanely. This
537         should also make the display of insetlatexaccents better and
538         perhaps also some other insets.
539         (descent): ditto
540         (lbearing): new function
541         (rbearing): ditto
542
543 1999-12-15  Allan Rae  <rae@lyx.org>
544
545         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
546         header that provides a wrapper around the very annoying SGI STL header
547         of the same name.
548
549         * src/support/lyxstring.C, src/LString.h:
550         removed old SGI-STL-compatability attempts.
551
552         * configure.in: Use LYX_STL_STRING_FWD.
553
554         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
555         stl_string_fwd.h is around and try to determine it's location.
556         Major improvement over previous SGI STL 3.2 compatability.
557         Three small problems remain with this function due to my zero
558         knowledge of autoconf.  JMarc and lgb see the comments in the code.
559
560 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
561
562         * src/broken_const.h, config/hack-gcc, config/README: removed
563         
564         * configure.in: remove --with-gcc-hack option; do not call
565         LYX_CXX_STL_STACK 
566
567         * INSTALL: remove documentation of --with-broken-const and
568         --with-gcc-hack
569         
570         * acconfig.h: remove all trace of BROKEN_CONST define
571
572         * src/buffer.C (makeDocBookFile): update version number in output
573         file. 
574         (SimpleDocBookOnePar): fix an assert when trying to a character
575         access beyond string length
576         [Patch from Jose']
577
578 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
579
580         * po/de.po: fix the Export menu
581
582         * lyx.man: update the description of -dbg
583
584         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
585         (commandLineHelp): updated
586         (easyParse): show list of available debug levels if -dbg is passed
587         without argument.
588
589         * src/Makefile.am: add debug.C
590
591         * src/debug.h: moved some code to debug.C
592
593         * src/debug.C: new file. Contains code to set and show debug
594         level. 
595
596         * src/layout.C: remove 'break' after 'continue' in switch
597         statements, since these cannot be reached.
598
599 1999-12-13  Allan Rae  <rae@lyx.org>
600
601         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
602         (in_word_set): hash() -> math_hash()
603
604         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
605
606         * acconfig.h: Added a test for whether we are using exceptions in the
607         current compilation run. If so USING_EXCEPTIONS is defined.
608
609         * config.in: Check for existance of stl_string_fwd.h
610         * src/LString.h: If compiling --with-included-string and SGI's
611         STL version 3.2 is present (see above test) we need to block their
612         forward declaration of string and supply a __get_c_string().
613         However, it turns out this is only necessary if compiling with
614         exceptions enabled so I've a bit more to add yet.
615
616         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
617           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
618           src/support/LRegex.h, src/undo.h:
619         Shuffle the order of the included files a little to ensure that
620         LString.h gets included before anything that includes stl_string_fwd.h
621
622         *  src/support/lyxstring.C: We need to #include LString.h instead of
623         lyxstring.h to get the necessary definition of __get_c_string.
624         (__get_c_string): New function.  This is defined static just like SGI's
625         although why they need to do this I'm not sure.  Perhaps it should be
626         in lstrings.C instead.
627
628         * lib/templates/IEEEtran.lyx:  New template file.
629
630 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
631         
632         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
633         * intl/Makefile.in (MKINSTALLDIRS):  ditto
634
635         * src/LyXAction.C (init): changed to hold the LFUN data in a
636         automatic array in stead of in callso to newFunc, this speeds up
637         compilation a lot. Also all the memory used by the array is
638         returned when the init is completed.
639
640         * a lot of files: compiled with -Wold-style-cast, changed most of
641         the reported offenders to C++ style casts. Did not change the
642         offenders in C files. 
643
644         * src/trans.h (Match): change argument type to unsigned int.
645
646         * src/support/DebugStream.C: fix some types on the streambufs so
647         that it works on a conforming implementation.
648
649 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
650
651         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
652
653         * src/support/lyxstring.C: remove the inline added earlier since
654         they cause a bunch of unsatisfied symbols when linking with dec
655         cxx. Cxx likes to have the body of inlines at the place where they
656         are declared.
657
658         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
659         accessing negative bounds in array. This fixes the crash when
660         inserting accented characters.
661         * src/trans.h (Match): ditto
662
663         * src/buffer.C (Dispatch): since this is a void, it should not try
664         to return anything...
665
666 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
667
668         * src/buffer.h: removed the two friends from Buffer. Some changes
669         because of this. Buffer::getFileName and Buffer::setFileName
670         renamed to Buffer::fileName() and Buffer::fileName(...).
671
672 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
673
674         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
675         and Buffer::update(short) to BufferView. This move is currently
676         controlled by a define MOVE_TEXT, this will be removed when all
677         shows to be ok. This move paves the way for better separation
678         between buffer contents and buffer view. One side effect is that
679         the BufferView needs a rebreak when swiching buffers, if we want
680         to avoid this we can add a cache that holds pointers to LyXText's
681         that is not currently in use. 
682
683         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
684         André Pönitz. 
685
686 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
687
688         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
689
690         * lyx_main.C: new command line option -x (or --execute) and
691           -e (or --export). Now direct conversion from .lyx to .tex
692           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
693           Unfortunately, X is still needed and the GUI pops up during the
694           process...
695
696 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
697
698         * src/Spacing.C: add a using directive to bring stream stuff into
699         normal namespace.
700         * src/paragraph.C: ditto
701         * src/buffer.C: ditto
702
703         * NEWS: updated a bit the new features of 1.1.3 (took a few things
704         from Lars' announcement).
705
706         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
707         example files from Tino Meinen.
708         
709 1999-12-06  Allan Rae  <rae@lyx.org>
710
711         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
712
713 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
714
715         * src/support/lyxstring.C: added a lot of inline for no good
716         reason
717         
718         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
719         latexWriteEndChanges, they were not used.
720         
721         * src/layout.h (operator<<): output operator for PageSides
722
723         * src/mathed/math_iter.C (my_memcpy): slightly changed.
724
725         * some example files: loaded in LyX 1.0.4 and saved again to update
726         certain constructs (table format) 
727
728         * a lot of files: did the change to use fstream/iostream for all
729         writing of files. Done with a close look at Andre Poenitz's patch.
730
731         * some files: whitespace changes.
732         
733 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
734
735         * src/mathed/math_iter.C (my_memcpy): new function. Since the
736         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
737         architecture, we provide our own. It is used unconditionnally, but
738         I do not think this is a performance problem. Thanks to Angus
739         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
740         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
741         first time).
742         (GetInset): use my_memcpy.
743         (Insert): ditto
744         (Copy): ditto
745
746         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
747         it is easier to understand, but it uses less TeX-only constructs now.
748
749         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
750         elements contain spaces
751
752         * lib/configure: regenerated
753         
754         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
755         elements contain spaces; display the list of programs that are
756         tried.
757
758         * autogen.sh: make sure lib/configure is executable
759
760         * lib/examples/*: rename the tutorial examples to begin with the
761         two-letters language code.
762
763         * src/lyxfunc.C (getStatus): do not query current font if no
764         buffer exists.
765
766         * src/lyx_cb.C (RunScript): use QuoteName
767         (MenuRunDvips): ditto
768         (PrintApplyCB): ditto
769
770         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
771         around argument, so that it works well with the current shell.
772         Does not work properly with OS/2 shells currently.
773
774         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
775         * src/LyXSendto.C (SendtoApplyCB): ditto
776         * src/lyxfunc.C (Dispatch): ditto
777         * src/buffer.C (runLaTeX): ditto
778         (runLiterate): ditto
779         (buildProgram): ditto
780         (runChktex): ditto
781         * src/lyx_cb.C (RunScript): ditto
782         (MenuMakeLaTeX): ditto
783         
784         * src/buffer.h (getLatexName): new method 
785
786         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
787
788 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
789
790         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
791         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
792         (create_math_panel): ditto
793
794         * src/lyxfunc.C (getStatus): re-activate the code which gets
795         current font and cursor; add test for export to html.
796
797         * src/lyxrc.C (read): remove unreachable break statements; add a
798         few "using".
799
800         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
801         
802 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
803
804         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
805         introduced by faulty regex.
806         * src/buffer.C: ditto
807         * src/lastfiles.C: ditto
808         * src/paragraph.C: ditto
809         * src/table.C: ditto
810         * src/vspace.C: ditto
811         * src/insets/figinset.C: ditto
812         Note: most of these is absolutely harmless, except the one in
813         src/mathed formula.C.
814
815 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
816
817         * src/ImportNoweb.C (documentclass): fixed bounds for substr
818           operation, yielding correct results for the reLyX command.
819
820 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
821
822         * src/support/filetools.C (ExpandPath): removed an over eager
823         Assert.
824         (ReplaceEnvironmentPath): ditto
825
826         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
827         shows that we are doing something fishy in our code...
828         (BubblePost): ditto
829         (ToolbarCB): ditto
830
831         * src/lyxrc.C (read): use a double switch trick to get more help
832         from the compiler. (the same trick is used in layout.C)
833         (write): new function. opens a ofstream and pass that to output
834         (output): new function, takes a ostream and writes the lyxrc
835         elemts to it. uses a dummy switch to make sure no elements are
836         forgotten. 
837
838         * src/lyxlex.h: added a struct pushpophelper for use in functions
839         with more than one exit point.
840
841         * src/lyxlex.[Ch] (GetInteger): made it const
842         (GetFloat): ditto
843         (GetBool): ditto
844
845         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
846
847         * src/layout.[hC] : LayoutTags splitted into several enums, new
848         methods created, better error handling cleaner use of lyxlex. Read
849         the diff.
850
851         * src/bmtable.[Ch]: change some member prototypes because of the
852         image const changes. 
853
854         * commandtags.h, src/LyXAction.C (init): new function:
855         "preferences-save", saves the lyxrc entries into .lyx/preferences.
856         This file is not read automatically but you can add \input
857         preferences to your lyxrc if you want to. We need to discuss how
858         to handle this. 
859
860         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
861         in .aux, also remove .bib and .bst files from dependencies when
862         running bibtex.
863
864         * src/BufferView.C, src/LyXView.C: add const_cast several places
865         because of changes to images.
866
867         * lib/images/*: same change as for images/*
868         
869         * lib/lyxrc.example: Default for accept_compound is false not no.
870
871         * images/*: changed to be const, however I have som misgivings
872         about this change so it might be changed back.
873
874 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
875
876         * lib/configure, po/POTFILES.in: regenerated
877
878         * autogen.sh: autogenerate lib/configure from lib/configure.m4
879
880         * config/lib_configure.m4: removed
881         
882         * lib/configure.m4: new file (was config/lib_configure.m4)
883
884         * configure.in: do not test for rtti, since we do not use it.
885         
886 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
887
888         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
889         doubling of allocated space scheme. This makes it faster for large
890         strings end to use less memory for small strings. xtra rememoved. 
891
892         * src/insets/figinset.C (waitalarm): commented out.
893         (GhostscriptMsg): use static_cast
894         (GhostscriptMsg): use new instead of malloc to allocate memory for
895         cmap. also delete the memory after use.
896
897         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
898
899         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
900         for changes in bibtex database or style.
901         (runBibTeX): remove all .bib and .bst files from dep before we
902         begin. 
903         (run): use scanAuc in when dep file already exist.
904
905         * src/DepTable.C (remove_files_with_extension): new method
906         (exist): new method
907
908         * src/DepTable.[Ch]: made many of the methods const. 
909
910 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
911
912         * src/bufferparams.C: make sure that the default textclass is
913         "article". It used to be the first one by description order, but
914         now the first one is "docbook".
915
916         * src/lyx_main.C (setDebuggingLevel): change type of argument to
917         string; call Debug::value.
918         (easyParse): pass complete argument to setDebuggingLevel().
919
920         * src/debug.h (value): fix the code that parses debug levels.
921
922         * src/debug.h: add new debug type ACTION, reserved for LyXAction
923         class.  
924
925         * src/LyXAction.C: use Debug::ACTION as debug channel.
926
927         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
928
929         * NEWS: updated for the future 1.1.3 release.
930
931         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
932         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
933         it should. This is of course a controversial change (since many
934         people will find that their lyx workscreen is suddenly full of
935         red), but done for the sake of correctness.
936
937         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
938           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
939
940         * src/insets/inseterror.h, src/insets/inseturl.h,
941           src/insets/insetinfo.h, src/insets/figinset.h,
942           src/mathed/formulamacro.h, src/mathed/math_macro.h
943           (EditMessage): add a missing const and add _() to make sure that
944         translation happens
945
946         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
947           src/insets/insetbib.C, src/support/filetools.C: add `using'
948         directives for cxx.  
949
950         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
951         doing 'Insert index of last word' at the beginning of a paragraph.
952
953 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
954
955         * several files: white-space changes.
956
957         * src/mathed/formula.C: removed IsAlpha and IsDigit
958
959         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
960         .bib file. use a ifstream instead of FilePtr when parsing the .bib
961         file for keys.
962
963         * src/insets/figinset.C (GetPSSizes): don't break when
964         "EndComments" is seen. But break when a boundingbox is read.
965
966         * all classes inherited from Inset: return value of Clone
967         changed back to Inset *.
968
969         * all classes inherited form MathInset: return value of Clone
970         changed back to MathedInset *.
971         
972         * src/insets/figinset.C (runqueue): use a ofstream to output the
973         gs/ps file. Might need some setpresicion or setw. However I can
974         see no problem with the current code.
975         (runqueue): use sleep instead of the alarm/signal code. I just
976         can't see the difference.
977
978         * src/paragraph.C (LyXParagraph): reserve space in the new
979         paragraph and resize the inserted paragraph to just fit.
980
981         * src/lyxfunc.h (operator|=): added operator for func_status.
982
983         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
984         check for readable file.
985
986         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
987         check for readable file.
988         (MenuMakeLinuxDoc): ditto
989         (MenuMakeDocBook): ditto
990         (MenuMakeAscii): ditto
991         (InsertAsciiFile): split the test for openable and readable
992
993         * src/bmtable.C (draw_bitmaptable): use
994         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
995
996         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
997         findtexfile from LaTeX to filetools.
998         
999         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
1000         instead of FilePtr. Needs to be verified by a literate user.
1001
1002 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1003
1004         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
1005         (EditMessage): likewise.
1006
1007         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
1008         respectively as \textasciitilde and \textasciicircum.
1009
1010 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1011
1012         * src/support/lyxstring.h: made the methods that take iterators
1013         use const_iterator.
1014
1015         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
1016         (regexMatch): made is use the real regex class.
1017
1018         * src/support/Makefile.am: changed to use libtool
1019
1020         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
1021
1022         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
1023         of defines.
1024         (MathIsInset ++): changed several macros to be inline functions
1025         instead. 
1026
1027         * src/mathed/Makefile.am: changed to use libtool
1028
1029         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
1030
1031         * src/insets/inset* : Clone changed to const and return type is
1032         the true insettype not just Inset*.
1033         
1034         * src/insets/Makefile.am: changed to use libtool
1035
1036         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
1037
1038         * src/undo.[Ch] : added empty() and changed some of the method
1039         names.
1040         
1041         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
1042
1043         * src/lyxparagraph.h: use id() and id(...) instead of getID and
1044         setID use block<> for the bullets array, added const several places.
1045
1046         * src/lyxfunc.C (getStatus): new function
1047
1048         * src/lyxfunc.[Ch] : small changes to take advantage of the new
1049         LyXAction, added const to several funtions.
1050
1051         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
1052         a std::map, and to store the dir items in a vector.
1053
1054         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
1055         as dependencies.
1056
1057         * src/LyXView.[Ch] + other files : changed currentView to view.
1058         
1059         * src/LyXAction.[Ch] : ported from the old devel branch.
1060         
1061         * src/.cvsignore: added .libs and a.out
1062
1063         * configure.in : changes to use libtool. 
1064
1065         * acinclude.m4 : inserted libtool.m4
1066
1067         * .cvsignore: added libtool
1068
1069 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1070
1071         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
1072         file name in insets and mathed directories (otherwise the
1073         dependency is not taken in account under cygwin).
1074
1075         * src/text2.C (InsertString[AB]): make sure that we do not try to
1076         read characters past the string length.
1077
1078 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1079
1080         * lib/doc/LaTeXConfig.lyx.in, 
1081           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
1082
1083         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
1084         file saying who created them and when this heppened; this is
1085         useless and annoys tools like cvs.
1086
1087         * lib/layouts/g-brief-{en,de}.layout,
1088           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
1089         from Thomas Hartkens <thomas@hartkens.de>.
1090
1091         * src/{insets,mathed}/Makefile.am: do not declare an empty
1092         LDFLAGS, so that it can be set at configure time (useful on Irix
1093         for -n32 flag).
1094
1095         * lib/reLyX/configure.in: make sure that the prefix is set
1096         correctly in LYX_DIR.
1097
1098 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
1099
1100         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
1101         be used by 'command-sequence' this allows to bind a key to a
1102         sequence of LyX-commands
1103         (Example: 'command-sequence math-insert alpha; math-insert beta;")
1104
1105         * src/LyXAction.C: add "command-sequence"
1106
1107         * src/LyXFunction.C: handling of "command-sequence"
1108
1109         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
1110          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
1111
1112         * src/lyxserver.C, src/minibuffer.C: Use this new interface
1113
1114 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1115
1116         * src/buffer.C (writeFile): Do not output a comment giving user
1117         and date at the beginning of a .lyx file. This is useless and
1118         annoys cvs anyway; update version number to 1.1.
1119
1120         * src/Makefile.am (LYX_DIR): add this definition, so that a
1121         default path is hardcoded in LyX.
1122
1123         * configure.in: Use LYX_GNU_GETTEXT.
1124
1125         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
1126         AM_GNU_GETTEXT with a bug fixed. 
1127
1128         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
1129
1130         * src/chset.C: add "using std::ifstream;" to please dec cxx.
1131
1132         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
1133         which is used to point to LyX data is now LYX_DIR_11x.
1134
1135         * lyx.man: convert to a unix text file; small updates.
1136
1137 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
1138
1139         * src/support/LSubstring.[Ch]: made the second arg of most of the
1140         constructors be a const reference. 
1141
1142         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
1143         me fixed.
1144
1145         * src/support/lyxstring.[Ch] (swap): added missing member function
1146         and specialization of swap(str, str); 
1147
1148         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
1149
1150         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
1151         trace of the old one.
1152
1153         * src/undo.[Ch]: made the undostack use std::list to store undo's in
1154         put the member definitions in undo.C.
1155
1156         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
1157         NEW_TEXT and have now only code that was included when this was
1158         defined. 
1159
1160         * src/intl.C (LCombo): use static_cast
1161         (LCombo2): ditto
1162         (DispatchCallback): ditto
1163
1164         * src/definitions.h: removed whole file
1165         
1166         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
1167
1168         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
1169         parsing and stores in a std:map. a regex defines the file format.
1170         removed unneeded members.
1171
1172         * src/bufferparams.h: added several enums from definitions.h here.
1173         Removed unsused destructor. Changed some types to use proper enum
1174         types. use block to have the temp_bullets and user_defined_bullets
1175         and to make the whole class assignable.
1176
1177         * src/bufferparams.C (Copy): removed this functions, use a default
1178         assignment instead. 
1179
1180         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
1181         isLiterate const.
1182
1183         * src/buffer.C (readLyXformat2): commend out all that have with
1184         oldpapersize to do. also comment out all that hve to do with
1185         insetlatex and insetlatexdel. 
1186         (setOldPaperStuff): commented out
1187
1188         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
1189
1190         * src/LyXAction.C: remove use of inset-latex-insert
1191
1192         * src/mathed/math_panel.C (button_cb): use static_cast
1193
1194         * src/insets/Makefile.am (insets_o_SOURCES): removed
1195         insetlatex.[Ch] 
1196
1197         * src/support/lyxstring.C (helper): use the unsigned long
1198         specifier, UL, instead of a static_cast.
1199
1200         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
1201
1202         * src/support/block.h: new file. to be used as a c-style array in
1203         classes, so that the class can be assignable.
1204
1205 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1206
1207         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
1208         NULL, make sure to return an empty string (it is not possible to
1209         set a string to NULL).
1210
1211 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1212
1213         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
1214
1215         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
1216
1217         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
1218         link line, so that Irix users (for example) can set it explicitely to
1219         "-n32".
1220         
1221         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
1222         it can be overidden at make time (static or dynamic link, for
1223         example).
1224         
1225         * src/vc-backend.C, src/LaTeXFeatures.h, 
1226           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
1227         statements to bring templates to global namespace.
1228
1229 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1230
1231         * src/support/lyxstring.C (operator[] const): make it standard
1232         conforming. 
1233
1234         * src/minibuffer.C (Init): changed to reflect that more
1235         information is given from the lyxvc and need not be provided here.
1236
1237         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
1238         
1239         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
1240
1241         * src/LyXView.C (UpdateTimerCB): use static_cast
1242         (KeyPressMask_raw_callback): ditto
1243
1244         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
1245         buffer_, a lot of changes because of this. currentBuffer() ->
1246         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
1247         also changes to other files because of this.
1248
1249 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1250
1251         * src/vc-backend.[Ch]: new files. The backends for vc handling,
1252         have no support for RCS and partial support for CVS, will be
1253         improved later.
1254         
1255         * src/insets/ several files: changes because of function name
1256         changes in Bufferview and LyXView.
1257         
1258         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
1259
1260         * src/support/LSubstring.[Ch]: new files. These implement a
1261         Substring that can be very convenient to use. i.e. is this
1262         possible:
1263         string a = "Mary had a little sheep";
1264         Substring(a, "sheep") = "lamb";
1265         a is now "Mary has a little lamb".
1266
1267         * src/support/LRegex.[Ch]: a regex class that can be used to pick
1268         out patterns and subpatterns of strings. It is used by LSubstring
1269         and also by vc-backend.C
1270         
1271         * src/support/lyxstring.C: went over all the assertions used and
1272         tried to correct the wrong ones and flag which of them is required
1273         by the standard. some bugs found because of this. Also removed a
1274         couple of assertions.
1275
1276         * src/support/Makefile.am (libsupport_a_SOURCES): added
1277         LSubstring.[Ch] and LRegex.[Ch]
1278
1279         * src/support/FileInfo.h: have struct stat buf as an object and
1280         not a pointer to one, some changes because of this.
1281
1282         * src/LaTeXFeatures.C (getTClassPreamble): also use the
1283         information in layout when adding the layouts preamble to the
1284         textclass preamble.
1285
1286         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
1287         usage in.
1288
1289         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
1290         because of bug in OS/2.
1291
1292 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1293
1294         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
1295         \verbatim@font instead of \ttfamily, so that it can be redefined.
1296
1297         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
1298           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
1299           src/layout.h, src/text2.C: add 'using' directive to bring the
1300         STL templates we need from the std:: namespace to the global one.
1301         Needed by DEC cxx in strict ansi mode.
1302
1303         * src/support/LIstream.h,src/support/LOstream.h,
1304           src/support/lyxstring.h,src/table.h,
1305           src/lyxlookup.h: do not include <config.h> in header
1306         files. This should be done in the .C files only.
1307
1308         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
1309         (from Kayvan).
1310         
1311
1312 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1313
1314         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
1315         from Kayvan to fix the tth invokation.
1316
1317         * development/lyx.spec.in: updates from Kayvan to reflect the
1318         changes of file names.
1319
1320 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1321
1322         * src/text2.C (InsertStringB): use std::copy
1323         (InsertStringA): use std::copy
1324
1325         * src/bufferlist.C: use a vector to store the buffers in. This is
1326         an internal change and should not affect any other thing.
1327         
1328         * src/BufferView.C (waitForX): use XSync instead of the lengthy
1329         stuff in waitForX.
1330
1331         * src/text.C (Fill): fix potential bug, one off bug.
1332
1333 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1334
1335         * src/Makefile.am (lyx_main.o): add more files it depends on.
1336
1337         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
1338
1339         * src/support/lyxstring.C: use size_t for the reference count,
1340         size, reserved memory and xtra.
1341         (internal_compare): new private member function. Now the compare
1342         functions should work for std::strings that have embedded '\0'
1343         characters.
1344         (compare): all compare functions rewritten to use
1345         internal_compare.
1346         
1347 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1348
1349         * src/support/lyxstring.C (compare): pass c_str()
1350         (compare): pass c_str
1351         (compare): pass c_str
1352
1353 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1354
1355         * src/support/DebugStream.C: <config.h> was not included correctly.
1356
1357         * lib/configure: forgot to re-generate it :( I'll make this file
1358         auto generated soon.
1359
1360 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1361
1362         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
1363         is used.
1364
1365         * src/support/lyxstring.C: some changes from length() to rep->sz.
1366         avoids a function call.
1367
1368         * src/support/filetools.C (SpaceLess): yet another version of the
1369         algorithm...now per Jean-Marc's suggestions.
1370
1371 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1372
1373         * src/layout.C (less_textclass_desc): functor for use in sorting
1374         of textclasses. 
1375         (LyXTextClass::Read): sort the textclasses after reading.
1376         
1377         * src/support/filetools.C (SpaceLess): new version of the
1378         SpaceLess functions. What problems does this one give? Please
1379         report.
1380
1381         * images/banner_bw.xbm: made the arrays unsigned char *
1382
1383 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1384
1385         * src/support/lyxstring.C (find): remove bogus assertion in the
1386         two versions of find where this has not been done yet.
1387
1388         * src/support/lyxlib.h: add missing int return type to
1389         lyx::chdir(). 
1390
1391         * src/menus.C (ShowFileMenu): disable exporting to html if no
1392         html export command is present.
1393
1394         * config/lib_configure.m4: add a test for an HTML converter. The
1395         programs checked for are, in this order: tth, latex2html and
1396         hevea. 
1397
1398         * lib/configure: generated from config/lib_configure.m4.
1399
1400         * src/lyxfunc.C (Dispatch): update and improve the execution of an
1401         html converter. The parameters are now passed through $$FName and
1402         $$OutName, instead of standard input/output.
1403
1404         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
1405
1406         * lib/lyxrc.example: update description of \html_command. 
1407         add "quotes" around \screen_font_xxx font setting examples to help
1408         people who use fonts with spaces in their names.
1409
1410 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1411
1412         * Distribution files: updates for v1.1.2
1413
1414         * src/support/lyxstring.C (find): remove bogus assert and return
1415         npos for the same condition.
1416
1417 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1418
1419         * added patch for OS/2 from SMiyata.
1420
1421 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1422
1423         * src/text2.C (CutSelection): make space_wrapped a bool
1424         (CutSelection): dont declare int i until we have to.
1425         (alphaCounter): return a char const *.
1426
1427 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1428
1429         * src/support/syscall.C (Systemcalls::kill): 
1430           src/support/filetools.C (PutEnv, PutEnvPath): 
1431           src/lyx_cb.C (addNewlineAndDepth): 
1432           src/FontInfo.C (FontInfo::resize): condition some #warning
1433         directives with WITH_WARNINGS.
1434         
1435
1436 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1437
1438         * src/layout.[Ch] + several files: access to class variables
1439         limited and made accessor functions instead a lot of code changed
1440         becuase of this. Also instead of returning pointers often a const
1441         reference is returned instead.
1442         
1443         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
1444
1445         * src/Makefile.am (dist-hook): added used to remove the CVS from
1446         cheaders upon creating a dist
1447         (EXTRA_DIST): added cheaders
1448
1449         * src/support/lstrings.C (tostr(char)): fix it to handle param as
1450         a character not as a small integer. 
1451
1452         * src/support/lyxstring.C (find): removed Assert and added i >=
1453         rep->sz to the first if.
1454
1455 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1456
1457         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
1458         src/LyXView.C src/buffer.C src/bufferparams.C
1459         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
1460         src/text2.C src/insets/insetinclude.C:
1461         lyxlayout renamed to textclasslist.
1462
1463         * src/layout.C: some lyxerr changes.
1464
1465         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
1466         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
1467         (LyXLayoutList): removed all traces of this class.
1468         (LyXTextClass::Read): rewrote LT_STYLE
1469         (LyXTextClass::hasLayout): new function
1470         (LyXTextClass::GetLayout): rewritten to return an iterator + has
1471         both const and nonconst version.
1472         (LyXTextClass::delete_layout): new function.
1473         (LyXTextClassList::Style): bug fix. do the right thing if layout
1474         is to big.
1475         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
1476         (LyXTextClassList::NameOfLayout): ditto 
1477         (LyXTextClassList::Load): ditto
1478
1479         * src/buffer.C (makeLaTeXFile): new access to layoutlist
1480
1481         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
1482
1483         * src/LyXAction.C (LookupFunc): added a workaround for sun
1484         compiler, on the other hand...we don't know if the current code
1485         compiles on sun at all...
1486
1487         * src/support/filetools.C (CleanupPath): subst fix
1488
1489         * src/insets/insetbib.C (delDatabase): subst fix, this looks
1490         _really_ weird.
1491
1492         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
1493         complained about this one?
1494
1495         * src/insets/insetinclude.C (Latex): subst fix
1496
1497         * src/insets/insetbib.C (getKeys): subst fix
1498
1499         * src/LyXSendto.C (SendtoApplyCB): subst fix
1500
1501         * src/lyx_main.C (init): subst fix
1502
1503         * src/layout.C (Read): subst fix
1504
1505         * src/lyx_sendfax_main.C (button_send): subst fix
1506
1507         * src/buffer.C (RoffAsciiTable): subst fix
1508
1509         * src/lyx_cb.C (MenuFax): subst fix
1510         (PrintApplyCB): subst fix
1511
1512 1999-10-26  Juergen Vigna  <jug@sad.it>
1513
1514         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
1515
1516         (Read): Cleaned up this code so now we read only format vestion >= 5
1517
1518 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1519
1520         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
1521         come nobody has complained about this one?
1522
1523         * src/insets/insetinclude.C (Latex): subst fix
1524
1525         * src/insets/insetbib.C (getKeys): subst fix
1526
1527         * src/lyx_main.C (init): subst fix
1528
1529         * src/layout.C (Read): subst fix
1530
1531         * src/buffer.C (RoffAsciiTable): subst fix
1532
1533         * src/lyx_cb.C (MenuFax): subst fix.
1534
1535         * src/layout.[hC] + some other files: rewrote to use
1536         std::container to store textclasses and layouts in.
1537         Simplified, removed a lot of code. Make all classes
1538         assignable. Further simplifications and review of type
1539         use still to be one. 
1540
1541         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
1542         lastfiles to create the lastfiles partr of the menu.
1543
1544         * src/lastfiles.[Ch]: rewritten to use deque to store the
1545         lastfiles in. Uses fstream for reading and writing. Simplifies
1546         code.
1547
1548         * src/support/syscall.C: remove explicit cast.
1549
1550         * src/BufferView.C (CursorToggleCB): removed code snippets that
1551         were commented out.
1552         use explicat C++ style casts instead of C style casts. also use
1553         u_vdata instea of passing pointers in longs.
1554
1555         * src/PaperLayout.C: removed code snippets that were commented out.
1556
1557         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
1558
1559         * src/lyx_main.C: removed code snippets that wer commented out.
1560
1561         * src/paragraph.C: removed code snippets that were commented out.
1562
1563         * src/lyxvc.C (logClose): use static_cast
1564         (logUpdate): ditto
1565         (viewLog): remove explicit cast to void*
1566         (showLog): removed old commented code
1567
1568         * src/menus.C: use static_cast instead of C style casts. use
1569         u_vdata instead of u_ldata. remove explicit cast to (long) for
1570         pointers. Removed old code that was commented out.
1571
1572         * src/insets/inset.C: removed old commented func
1573
1574         * src/insets/insetref.C (InsetRef): removed old code that had been
1575         commented out for a long time.
1576         (Edit): ditto
1577         (escape): removed C style cast
1578
1579         * src/insets/insetlatexaccent.C (Draw): removed old commented code
1580
1581         * src/insets/insetlatex.C (Draw): removed old commented code
1582         (Read): rewritten to use string
1583
1584         * src/insets/insetlabel.C (escape): removed C style cast
1585
1586         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
1587
1588         * src/insets/insetindex.C: use static_cast and u_vdata, removed
1589         old commented code.
1590
1591         * src/insets/insetinclude.h: removed a couple of stupid bools
1592
1593         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
1594         (Clone): remove C style cast
1595         (getKeys): changed list to lst because of std::list
1596
1597         * src/insets/inseterror.C (Draw): removed som old commented code.
1598
1599         * src/insets/insetcommand.C (Draw): removed some old commented code.
1600
1601         * src/insets/insetbib.C (bibitem_cb): removed code that has been
1602         commented out forever.
1603         (bibitem_cb): use static_cast instead of C style cast
1604         use of vdata changed to u_vdata.
1605
1606         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
1607         parameter.
1608         (CloseUrlCB): use static_cast instead of C style cast.
1609         (CloseUrlCB): added a fl_free form...it seemed to be missing.
1610
1611         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
1612         (C_InsetInfo_CloseInfoCB): forward the ob parameter
1613         (CloseInfoCB): static_cast from ob->u_vdata instead.
1614         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
1615         instead. 
1616
1617         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
1618         (C_InsetError_CloseErrorCB): forward the ob parameter
1619         (CloseErrorCB): static_cast from ob->u_vdata instead.
1620
1621         * src/vspace.h: include LString.h since we use string in this class.
1622
1623         * src/vspace.C (lyx_advance): changed name from advance because of
1624         nameclash with stl. And since we cannot use namespaces yet...I
1625         used a lyx_ prefix instead. Expect this to change when we begin
1626         using namespaces.
1627
1628         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
1629
1630         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
1631         and removed now defunct constructor and deconstructor.
1632
1633         * src/BufferView.h: have backstack as a object not as a pointer.
1634         removed initialization from constructor. added include for BackStack 
1635
1636         * development/lyx.spec.in (%build): add CFLAGS also.
1637
1638         * src/screen.C (drawFrame): removed another warning.
1639
1640 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1641
1642         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
1643         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
1644         README and ANNOUNCE a bit for the next release. More work is
1645         needed, of course.
1646
1647         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
1648         unbreakable if we are in freespacing mode (LyX-Code), but not in
1649         latex mode.
1650
1651 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1652
1653         * src/BackStack.h: fixed initialization order in constructor
1654
1655         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
1656
1657         * acinclude.m4 (VERSION): new rules for when a version is
1658         development, added also a variable for prerelease.
1659         (warnings): we set with_warnings=yes for prereleases
1660         (lyx_opt): prereleases compile with same optimization as development 
1661         (CXXFLAGS): only use pedantic if we are a development version 
1662
1663         * src/BufferView.C (restorePosition): don't do anything if the
1664         backstack is empty.
1665
1666         * src/BackStack.h: added member empty, use this to test if there
1667         is anything to pop...
1668
1669 1999-10-25  Juergen Vigna  <jug@sad.it>
1670
1671         * forms/form1.fd +
1672         * forms/layout_forms.fd +
1673         * forms/latexoptions.fd +
1674         * lyx.fd: changed for various form resize issues
1675
1676         * src/mathed/math_panel.C +
1677         * src/insets/inseterror.C +
1678         * src/insets/insetinfo.C +
1679         * src/insets/inseturl.C +
1680         * src/insets/inseturl.h +
1681         * src/LaTeXLog.C +
1682         * src/LyXSendto.C +
1683         * src/PaperLayout.C +
1684         * src/ParagraphExtra.C +
1685         * src/TableLayout.C +
1686         * src/form1.C +
1687         * src/layout_forms.C +
1688         * src/lyx.C +
1689         * src/lyx_cb.C +
1690         * src/lyx_gui.C +
1691         * src/lyxfr0.C +
1692         * src/lyxfunc.C +
1693         * src/lyxvc.C +
1694         * src/menus.C: fixed various resize issues. So now forms can be
1695         resized savely or not be resized at all.
1696         
1697         * forms/form_url.fd +
1698         * src/insets/form_url.[Ch]: added because it's cleaner and easier
1699         to modify IMO.
1700
1701         * src/insets/Makefile.am: added files form_url.[Ch]
1702         
1703 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1704
1705         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
1706         (and presumably 6.2).
1707
1708         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
1709         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
1710         remaining static member callbacks. 
1711
1712         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
1713         messages. 
1714
1715         * src/support/lyxstring.h: declare struct Srep as friend of
1716         lyxstring, since DEC cxx complains otherwise.
1717
1718 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1719
1720 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1721
1722         * src/LaTeX.C (run): made run_bibtex also depend on files with
1723         extension ".bst"
1724         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
1725         are put into the dependency file.
1726
1727         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
1728         the code has shown itself to work
1729         (create_ispell_pipe): removed another warning, added a comment
1730         instead. 
1731
1732         * src/minibuffer.C (ExecutingCB): removed code that has been
1733         commented out a long time
1734
1735         * src/lyxfunc.C (processKeyEvent): removed some very old commented
1736         out code + a warning.
1737
1738         * src/support/lyxstring.h: comment out the three private
1739         operators, when compiling with string ansi conforming compilers
1740         they make problems.
1741
1742         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
1743         unsigned char *.
1744         (pixmapFromBitmapData): change type of bdata to be unsigned char *
1745         (pixmapFromBitmapData): add a reinterpret_cast in the call to
1746         XCreateImage
1747
1748         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
1749         unsigned char *
1750
1751         * src/mathed/math_panel.C (create_math_panel): remove explicit
1752         casts
1753
1754         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
1755         unsigned char *.
1756
1757         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
1758         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
1759         to XCreatePixmapFromBitmapData
1760         (fl_set_bmtable_data): change the last argument to be unsigned
1761         char *
1762         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
1763         and bh to be unsigned int, remove explicit casts in call to
1764         XReadBitmapFileData.
1765
1766         * images/arrows.xbm: made the arrays unsigned char *
1767         * images/varsz.xbm: ditto
1768         * images/misc.xbm: ditto
1769         * images/greek.xbm: ditto
1770         * images/dots.xbm: ditto
1771         * images/brel.xbm: ditto
1772         * images/bop.xbm: ditto
1773
1774         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
1775
1776         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
1777         (LYX_PROG_CXX): added -pedantic to g++ compile options when
1778         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
1779         needed. 
1780         (LYX_CXX_CHEADERS): added <clocale> to the test. 
1781
1782 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
1783
1784         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
1785
1786         * src/support/lyxstring.C (append): fixed something that must be a
1787         bug, rep->assign was used instead of rep->append.
1788
1789         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
1790         and LOstream.h
1791
1792         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
1793         lyx insert double chars. Fix spotted by Kayvan.
1794
1795 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
1796
1797         * Fixed the tth support. I messed up with the Emacs patch apply feature
1798         and omitted the changes in lyxrc.C.
1799
1800 1999-10-22  Juergen Vigna  <jug@sad.it>
1801
1802         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
1803
1804         * src/lyx_cb.C (MenuInsertRef) + 
1805         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
1806         the form cannot be resized under it limits (fixes a segfault)
1807         
1808         * src/lyx.C (create_form_form_ref) +
1809         * forms/lyx.fd: Changed Gravity on name input field so that it is
1810         resized correctly.
1811
1812 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1813
1814         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
1815         <ostream> and <istream>.
1816         
1817         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
1818         whether <fstream> provides the latest standard features, or if we
1819         have an oldstyle library (like in egcs).
1820         (LYX_CXX_STL_STRING): fix the test.
1821
1822         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
1823         code on MODERN_STL_STREAM.
1824
1825         * src/support/lyxstring.h: use L{I,O}stream.h.
1826
1827         * src/support/L{I,O}stream.h: new files, designed to setup
1828         correctly streams for our use
1829           - includes the right header depending on STL capabilities
1830           - puts std::ostream and std::endl (for LOStream.h) or
1831           std::istream (LIStream.h) in toplevel namespace.
1832
1833 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1834
1835         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
1836         was a bib file that had been changed we ensure that bibtex is run.
1837         (runBibTeX): enhanced to extract the names of the bib files and
1838         getting their absolute path and enter them into the dep file.
1839         (findtexfile): static func that is used to look for tex-files,
1840         checks for absolute patchs and tries also with kpsewhich.
1841         Alternative ways of finding the correct files are wanted. Will
1842         probably be moved.
1843         (do_popen): function that runs a command using popen and returns
1844         the whole output of that command in a string. Should be moved to
1845         somewhere else.
1846
1847         * src/DepTable.[Ch] (extchanged): new function that returns true if a
1848         file with extension ext has changed.
1849
1850         * src/insets/figinset.C: added ifdef guards around the fl_free
1851         code that jug commented out. Now it is commented out when
1852         compiling with XForms == 0.89.
1853
1854         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
1855         to lyxstring.C, and only keep a forward declaration in
1856         lyxstring.h. Simplifies the header file a bit and should help a
1857         bit on compile time too. Also changes to Srep will not mandate a
1858         recompile of code just using string.
1859         (~lyxstring): definition moved here since it uses srep.
1860         (size): definition moved here since it uses srep.
1861
1862         * src/support/lyxstring.h: removed a couple of "inline" that should
1863         not be there.
1864
1865 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1866
1867         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
1868         the 'ob' argument.
1869
1870 1999-10-21  Juergen Vigna  <jug@sad.it>
1871
1872         * src/table.C (SetPWidth): Just a small fix so the alignment is not
1873         set to left if I just remove the width entry (or it is empty).
1874
1875         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
1876         paragraph when having dummy paragraphs.
1877
1878 1999-10-20  Juergen Vigna  <jug@sad.it>
1879
1880         * src/insets/figinset.C: just commented some fl_free_form calls
1881         and added warnings so that this calls should be activated later
1882         again. This avoids for now a segfault, but we have a memory leak!
1883
1884         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
1885         'const char * argument' to 'string argument', this should
1886         fix some Asserts() in lyxstring.C.
1887
1888         * src/lyxfunc.h: Removed the function argAsString(const char *)
1889         as it is not used anymore.
1890
1891 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1892
1893         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
1894         get instead of >>
1895
1896         * src/Literate.h: some funcs moved from public to private to make
1897         interface clearer. Unneeded args removed.
1898
1899         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
1900         instead of lyxlex.
1901         (scanBuildLogFile): ditto
1902
1903         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
1904         normal TeX Error. Still room for improvement.
1905
1906         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
1907
1908         * src/buffer.C (insertErrors): changes to make the error
1909         desctription show properly.
1910
1911         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
1912         could never happen
1913
1914         * src/support/lyxstring.C (helper): changed to use
1915         sizeof(object->rep->ref).
1916         (operator>>): changed to use a pointer instead.
1917
1918         * src/support/lyxstring.h: changed const reference & to value_type
1919         const & lets see if that helps.
1920
1921 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1922
1923         * Makefile.am (rpmdist): fixed to have non static package and
1924         verison.
1925
1926         * src/support/lyxstring.C: removed the compilation guards
1927
1928         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
1929         a bit clearer.
1930
1931         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
1932         conditional compile of lyxstring.Ch
1933
1934         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
1935         stupid check, but it is a lot better than the bastring hack. 
1936         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
1937
1938         * several files: changed string::erase into string::clear. Not
1939         really needed.
1940         
1941         * src/chset.C (encodeString): use a char temporary instead
1942
1943         * src/table.C (TexEndOfCell): added tostr around
1944         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
1945         (TexEndOfCell): ditto
1946         (TexEndOfCell): ditto
1947         (TexEndOfCell): ditto
1948         (DocBookEndOfCell): ditto
1949         (DocBookEndOfCell): ditto
1950         (DocBookEndOfCell): ditto
1951         (DocBookEndOfCell): ditto
1952
1953         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
1954
1955         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
1956
1957         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
1958         (MenuBuildProg): added tostr around ret
1959         (MenuRunChktex): added tostr around ret
1960         (DocumentApplyCB): added tostr around ret
1961
1962         * src/chset.C (encodeString): added tostr around t->ic
1963
1964         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
1965         (makeLaTeXFile): added tostr around tocdepth
1966         (makeLaTeXFile): added tostr around ftcound - 1
1967
1968         * src/insets/insetbib.C (setCounter): added tostr around counter.
1969
1970         * src/support/lyxstring.h: added an operator+=(int) to catch more
1971         mistakes. 
1972
1973         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
1974         (lyxstring): We DON'T allow NULL pointers.
1975
1976 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1977
1978         * src/mathed/math_macro.C (MathMacroArgument::Write,
1979         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
1980         when writing them out.
1981
1982         * src/LString.C: remove, since it is not used anymore.
1983         
1984         * src/support/lyxstring.C: condition the content to
1985         USE_INCLUDED_STRING macro.
1986
1987         * src/mathed/math_symbols.C, src/support/lstrings.C,
1988         src/support/lyxstring.C: add `using' directive to specify what
1989         we need in <algorithm>. I do not think that we need to
1990         conditionalize this, but any thought is appreciated.
1991
1992         * many files: change all callback functions to "C" linkage
1993         functions to please strict C++ compilers like DEC cxx 6.1 in mode
1994         strict_ansi. Those who were static are now global. 
1995             The case of callbacks which are static class members is
1996         trickier, since we have to make C wrappers around them (see
1997         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
1998         did not finish this yet, since it defeats the purpose of
1999         encapsulation, and I am not sure what the best route is.
2000
2001 1999-10-19  Juergen Vigna  <jug@sad.it>
2002
2003         * src/support/lyxstring.C (lyxstring): we permit to have a null
2004         pointer as assignment value and just don't assign it.
2005
2006         * src/vspace.C (nextToken): corrected this function substituting
2007         find_first(_not)_of with find_last_of.
2008
2009         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
2010                 (TableOptCloseCB) (TableSpeCloseCB):
2011         inserted fl_set_focus call for problem with fl_hide_form() in
2012         xforms-0.89.
2013
2014 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2015
2016         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
2017         string. 
2018
2019 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2020
2021         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
2022         LyXLex::next() and not eatline() to get its argument.
2023
2024 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
2025
2026         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
2027         instead, use fstreams for io of the depfile, removed unneeded
2028         functions and variables. 
2029
2030         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
2031         vector instead, removed all functions and variables that is not in
2032         use.
2033
2034 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2035
2036         * src/buffer.C (insertErrors): use new interface to TeXError
2037
2038         * Makefile.am (rpmdist): added a rpmdist target
2039
2040         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
2041         per Kayvan's instructions.
2042
2043 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2044
2045         * src/Makefile.am: add a definition for localedir, so that locales
2046         are found after installation (Kayvan)
2047
2048 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2049
2050         * development/.cvsignore: new file.
2051
2052 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2053
2054         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
2055         C++ compiler provides wrappers for C headers and use our alternate
2056         version otherwise.
2057
2058         * configure.in: use LYX_CXX_CHEADERS.
2059
2060         * src/cheader/: new directory, populated with cname headers from
2061         libstdc++-2.8.1. They are a bit old, but probably good enough for
2062         what we want (support compilers who lack them).
2063         
2064         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
2065         from includes. It turns out is was stupid.
2066  
2067 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2068
2069         * lib/Makefile.am (install-data-local): forgot a ';'
2070         (install-data-local): forgot a '\'
2071         (libinstalldirs): needed after all. reintroduced.
2072
2073 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
2074
2075         * configure.in (AC_OUTPUT): added lyx.spec
2076
2077         * development/lyx.spec: removed file
2078
2079         * development/lyx.spec.in: new file
2080
2081         * po/*.po: merged with lyx.pot becuase of make distcheck
2082         
2083         * lib/Makefile.am (dist-hook): added dist-hook so that
2084         documentation files will be included when doing a make
2085         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
2086         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
2087         conditional later.
2088         more: tried to make install do the right thing, exclude CVS dirs
2089         etc.
2090
2091         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
2092         Path would fit in more nicely.
2093
2094         * all files that used to use pathstack: uses now Path instead.
2095         This change was a lot easier than expected.
2096         
2097         * src/support/path.h: new file
2098
2099         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
2100
2101         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
2102
2103         * src/support/lyxstring.C (getline): Default arg was given for
2104         para 3. removed.
2105
2106         * Configure.cmd: removed file 
2107
2108 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2109
2110         * src/support/DebugStream.[Ch]: remove the explicit std:: before
2111         streams classes and types, add the proper 'using' statements when
2112         MODERN_STL is defined.
2113         
2114         * src/debug.h: move the << operator definition after the inclusion
2115         of DebugStream.h
2116
2117         * src/support/filetools.C: include "LAssert.h", which is needed
2118         later. 
2119
2120         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
2121         to includes. 
2122
2123         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
2124         include "debug.h" to define a proper ostream.
2125
2126 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2127
2128         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
2129           method to the SystemCall class which can kill a process, but it's
2130           not fully implemented yet.
2131
2132         * src/*.C: Changed Systemcalls::Startscript() to startscript()
2133
2134         * src/support/FileInfo.h: Better documentation  
2135
2136         * src/lyxfunc.C: Added support for buffer-export html
2137         
2138         * src/menus.C: Added Export->As HTML...
2139         
2140         * lib/bind/*.bind: Added short-cut for buffer-export html
2141
2142         * src/lyxrc.*: Added support for new \tth_command
2143         
2144         * lib/lyxrc.example: Added stuff for new \tth_command
2145
2146 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2147
2148         * lib/Makefile.am (IMAGES): removed images/README
2149         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
2150         installes in correct place. Check permisions is installed
2151         correctly.
2152
2153         * src/LaTeX.C: some no-op changes moved declaration of some
2154         variables around.
2155
2156         * src/LaTeX.h (LATEX_H): changed include guard name
2157
2158 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2159
2160         * lib/reLyX/Makefile.am: install noweb2lyx.
2161
2162         * lib/Makefile.am: install configure. 
2163
2164         * lib/reLyX/configure.in: declare a config aux dir; set package
2165         name to lyx (not sure what the best solution is); generate noweb2lyx.
2166
2167         * lib/layouts/egs.layout: fix the bibliography layout.
2168
2169 1999-10-08  Jürgen Vigna <jug@sad.it>
2170
2171         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
2172         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
2173         it returned without continuing to search the path.
2174         
2175 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2176
2177         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
2178         also fixes a bug. It is not allowed to do tricks with std::strings
2179         like: string a("hei"); &a[e]; this will not give what you
2180         think... Any reason for the complexity in this func?
2181
2182 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
2183
2184         * Updated README and INSTALL a bit, mostly to check that my
2185         CVS rights are correctly set up.
2186
2187 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
2188
2189         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
2190         does not allow '\0' chars but lyxstring and std::string does.
2191
2192 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2193
2194         * autogen.sh (AUTOCONF): let the autogen script create the
2195         POTFILES.in file too. POTFILES.in should perhaps now not be
2196         included in the cvs module.
2197
2198         * some more files changed to use C++ includes instead of C ones.
2199
2200         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
2201         not assigned.
2202         (Reread): added tostr to nlink. buggy output otherwise.
2203         (Reread): added a string() around szMode when assigning to Buffer,
2204         without this I got a log of garbled info strings.
2205
2206         * acconfig.h: commented out the PTR_AS_INT macros. They should not
2207         be needed.
2208
2209         * I have added several ostream & operator<<(ostream &, some_type)
2210         functions. This has been done to avoid casting and warnings when
2211         outputting enums to lyxerr. This as thus eliminated a lot of
2212         explicit casts and has made the code clearer. Among the enums
2213         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
2214         mathed enums, some font enum the Debug::type enum. 
2215
2216         * src/support/lyxstring.h (clear): missing method. equivalent of
2217         erase(0, npos).
2218
2219         * all files that contained "stderr": rewrote constructs that used
2220         stderr to use lyxerr instead. (except bmtable)
2221
2222         * src/support/DebugStream.h (level): and the passed t with
2223         Debug::ANY to avoid spurious bits set.
2224
2225         * src/debug.h (Debug::type value): made it accept strings of the
2226         type INFO,INIT,KEY.
2227
2228         * configure.in (Check for programs): Added a check for kpsewhich,
2229         the latex generation will use this later to better the dicovery of
2230         all used files. 
2231
2232         * src/BufferView.C (create_view): we don't need to cast this to
2233         (void*) that is done automatically.
2234         (WorkAreaButtonPress): removed some dead code.
2235
2236 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2237
2238         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
2239         is not overwritten when translated (David Sua'rez de Lis).
2240
2241         * lib/CREDITS: Added David Sua'rez de Lis
2242
2243         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
2244
2245         * src/bufferparams.C (BufferParams): default input encoding is now
2246         "latin1" 
2247
2248         * acinclude.m4 (cross_compiling): comment out macro
2249         LYX_GXX_STRENGTH_REDUCE. 
2250
2251         * acconfig.h: make sure that const is not defined (to empty) when
2252         we are compiling C++. Remove commented out code using SIZEOF_xx
2253         macros.
2254         
2255         * configure.in : move the test for const and inline as late as
2256         possible so that these C tests do not interefere with C++ ones.
2257         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
2258         has not been proven. 
2259
2260 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2261
2262         * src/table.C (getDocBookAlign): remove bad default value for
2263         isColumn parameter.
2264
2265         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
2266         shortcut. 
2267         (ShowFileMenu2): ditto.
2268
2269         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
2270         of files to ignore.
2271
2272 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2273
2274         * Most files: finished the change from the old error code to use
2275         DebugStream for all lyxerr debugging. Only minor changes remain
2276         (e.g. the setting of debug levels using strings instead of number) 
2277
2278 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2279
2280         * src/layout.C (Add): Changed to use compare_no_case instead of
2281         strcasecmp.
2282
2283         * src/FontInfo.C: changed loop variable type too string::size_type.
2284
2285 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2286
2287         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
2288         set ETAGS_ARGS to --c++ 
2289
2290 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
2291
2292         * src/table.C (DocBookEndOfCell): commented out two unused variables
2293
2294         * src/paragraph.C: commented out four unused variables. 
2295
2296         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
2297         insed a if clause with type string::size_type.
2298
2299         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
2300         string::size_type.
2301
2302         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
2303
2304         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
2305         variable, also changed loop to go from 0 to lenght + 1, instead of
2306         -1 to length. This should be correct.
2307
2308         * src/LaTeX.C (scanError): use string::size_type as loop variable
2309         type.
2310
2311         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
2312         (l.896) since y_tmp and row was not used anyway.
2313
2314         * src/insets/insetref.C (escape): use string::size_type as loop
2315         variable type.
2316
2317         * src/insets/insetquotes.C (Width): use string::size_type as loop
2318         variable type.
2319         (Draw): use string::size_type as loop variable type.
2320
2321         * src/insets/insetlatexaccent.C (checkContents): use
2322         string::size_type as loop variable type.
2323
2324         * src/insets/insetlabel.C (escape): use string::size_type as loop
2325         variable type.
2326
2327         * src/insets/insetinfo.C: added an extern for current_view.
2328
2329         * src/insets/insetcommand.C (scanCommand): use string::size_type
2330         as loop variable type.
2331
2332         * most files: removed the RCS tags. With them we had to recompile
2333         a lot of files after a simple cvs commit. Also we have never used
2334         them for anything meaningful. 
2335
2336         * most files: tags-query-replace NULL 0. As adviced several plases
2337         we now use "0" instead of "NULL" in our code. 
2338
2339         * src/support/filetools.C (SpaceLess): use string::size_type as
2340         loop variable type.
2341
2342 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
2343
2344         * src/paragraph.C: fixed up some more string stuff.
2345
2346 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
2347
2348         * src/support/filetools.h: make modestr a std::string.
2349
2350         * src/filetools.C (GetEnv): made ch really const.
2351
2352         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
2353         made code that used these use max/min from <algorithm> instead.
2354
2355         * changed several c library include files to their equivalent c++
2356         library include files. All is not changed yet.
2357
2358         * created a support subdir in src, put lyxstring and lstrings
2359         there + the extra files atexit, fileblock, strerror. Created
2360         Makefile.am. edited configure.in and src/Makefile.am to use this
2361         new subdir. More files moved to support.
2362
2363         * imported som of the functions from repository lyx, filetools
2364         
2365         * ran tags-query-replace on LString -> string, corrected the bogus
2366         cases. Tried to make use of lstrings.[hC], debugged a lot. There
2367         is still some errors in there. This is errors where too much or
2368         too litle get deleted from strings (string::erase, string::substr,
2369         string::replace), there can also be some off by one errors, or
2370         just plain wrong use of functions from lstrings. Viewing of quotes
2371         is wrong. 
2372
2373         * LyX is now running fairly well with string, but there are
2374         certainly some bugs yet (see above) also string is quite different
2375         from LString among others in that it does not allow null pointers
2376         passed in and will abort if it gets any.
2377         
2378         * Added the revtex4 files I forgot when setting up the repository.
2379
2380 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
2381
2382         * All over: Tried to clean everything up so that only the files
2383           that we really need are included in the cvs repository.
2384         * Switched to use automake.
2385         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
2386         * Install has not been checked.
2387
2388 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2389
2390         * po/pt.po: Three errors:
2391                l.533 and l.538 format specification error
2392                l. 402 duplicate entry, I just deleted it.
2393