]> git.lyx.org Git - lyx.git/blob - ChangeLog
3e71c5ea4d575d0909082e798b3904ae116a09d0
[lyx.git] / ChangeLog
1 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
4
5         * src/chset.C: add "using std::ifstream;" to please dec cxx.
6
7         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
8         which is used to point to LyX data is now LYX_DIR_11x.
9
10         * lyx.man: convert to a unix text file; small updates.
11
12 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
13
14         * src/support/LSubstring.[Ch]: made the second arg of most of the
15         constructors be a const reference. 
16
17         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
18         me fixed.
19
20         * src/support/lyxstring.[Ch] (swap): added missing member function
21         and specialization of swap(str, str); 
22
23         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
24
25         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
26         trace of the old one.
27
28         * src/undo.[Ch]: made the undostack use std::list to store undo's in
29         put the member definitions in undo.C.
30
31         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
32         NEW_TEXT and have now only code that was included when this was
33         defined. 
34
35         * src/intl.C (LCombo): use static_cast
36         (LCombo2): ditto
37         (DispatchCallback): ditto
38
39         * src/definitions.h: removed whole file
40         
41         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
42
43         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
44         parsing and stores in a std:map. a regex defines the file format.
45         removed unneeded members.
46
47         * src/bufferparams.h: added several enums from definitions.h here.
48         Removed unsused destructor. Changed some types to use proper enum
49         types. use block to have the temp_bullets and user_defined_bullets
50         and to make the whole class assignable.
51
52         * src/bufferparams.C (Copy): removed this functions, use a default
53         assignment instead. 
54
55         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
56         isLiterate const.
57
58         * src/buffer.C (readLyXformat2): commend out all that have with
59         oldpapersize to do. also comment out all that hve to do with
60         insetlatex and insetlatexdel. 
61         (setOldPaperStuff): commented out
62
63         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
64
65         * src/LyXAction.C: remove use of inset-latex-insert
66
67         * src/mathed/math_panel.C (button_cb): use static_cast
68
69         * src/insets/Makefile.am (insets_o_SOURCES): removed
70         insetlatex.[Ch] 
71
72         * src/support/lyxstring.C (helper): use the unsigned long
73         specifier, UL, instead of a static_cast.
74
75         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
76
77         * src/support/block.h: new file. to be used as a c-style array in
78         classes, so that the class can be assignable.
79
80 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
81
82         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
83         NULL, make sure to return an empty string (it is not possible to
84         set a string to NULL).
85
86 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
87
88         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
89
90         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
91
92         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
93         link line, so that Irix users (for example) can set it explicitely to
94         "-n32".
95         
96         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
97         it can be overidden at make time (static or dynamic link, for
98         example).
99         
100         * src/vc-backend.C, src/LaTeXFeatures.h, 
101           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
102         statements to bring templates to global namespace.
103
104 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
105
106         * src/support/lyxstring.C (operator[] const): make it standard
107         conforming. 
108
109         * src/minibuffer.C (Init): changed to reflect that more
110         information is given from the lyxvc and need not be provided here.
111
112         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
113         
114         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
115
116         * src/LyXView.C (UpdateTimerCB): use static_cast
117         (KeyPressMask_raw_callback): ditto
118
119         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
120         buffer_, a lot of changes because of this. currentBuffer() ->
121         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
122         also changes to other files because of this.
123
124 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
125
126         * src/vc-backend.[Ch]: new files. The backends for vc handling,
127         have no support for RCS and partial support for CVS, will be
128         improved later.
129         
130         * src/insets/ several files: changes because of function name
131         changes in Bufferview and LyXView.
132         
133         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
134
135         * src/support/LSubstring.[Ch]: new files. These implement a
136         Substring that can be very convenient to use. i.e. is this
137         possible:
138         string a = "Mary had a little sheep";
139         Substring(a, "sheep") = "lamb";
140         a is now "Mary has a little lamb".
141
142         * src/support/LRegex.[Ch]: a regex class that can be used to pick
143         out patterns and subpatterns of strings. It is used by LSubstring
144         and also by vc-backend.C
145         
146         * src/support/lyxstring.C: went over all the assertions used and
147         tried to correct the wrong ones and flag which of them is required
148         by the standard. some bugs found because of this. Also removed a
149         couple of assertions.
150
151         * src/support/Makefile.am (libsupport_a_SOURCES): added
152         LSubstring.[Ch] and LRegex.[Ch]
153
154         * src/support/FileInfo.h: have struct stat buf as an object and
155         not a pointer to one, some changes because of this.
156
157         * src/LaTeXFeatures.C (getTClassPreamble): also use the
158         information in layout when addint he layouts preamble to the
159         textclass preamble.
160
161         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
162         usage in.
163
164         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
165         because of bug in OS/2.
166
167 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
168
169         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
170         \verbatim@font instead of \ttfamily, so that it can be redefined.
171
172         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
173           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
174           src/layout.h, src/text2.C: add 'using' directive to bring the
175         STL templates we need from the std:: namespace to the global one.
176         Needed by DEC cxx in strict ansi mode.
177
178         * src/support/LIstream.h,src/support/LOstream.h,
179           src/support/lyxstring.h,src/table.h,
180           src/lyxlookup.h: do not include <config.h> in header
181         files. This should be done in the .C files only.
182
183         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
184         (from Kayvan).
185         
186
187 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
188
189         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
190         from Kayvan to fix the tth invokation.
191
192         * development/lyx.spec.in: updates from Kayvan to reflect the
193         changes of file names.
194
195 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
196
197         * src/text2.C (InsertStringB): use std::copy
198         (InsertStringA): use std::copy
199
200         * src/bufferlist.C: use a vector to store the buffers in. This is
201         an internal change and should not affect any other thing.
202         
203         * src/BufferView.C (waitForX): use XSync instead of the lengthy
204         stuff in waitForX.
205
206         * src/text.C (Fill): fix potential bug, one off bug.
207
208 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
209
210         * src/Makefile.am (lyx_main.o): add more files it depends on.
211
212         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
213
214         * src/support/lyxstring.C: use size_t for the reference count,
215         size, reserved memory and xtra.
216         (internal_compare): new private member function. Now the compare
217         functions should work for std::strings that have embedded '\0'
218         characters.
219         (compare): all compare functions rewritten to use
220         internal_compare.
221         
222 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
223
224         * src/support/lyxstring.C (compare): pass c_str()
225         (compare): pass c_str
226         (compare): pass c_str
227
228 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
229
230         * src/support/DebugStream.C: <config.h> was not included correctly.
231
232         * lib/configure: forgot to re-generate it :( I'll make this file
233         auto generated soon.
234
235 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
236
237         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
238         is used.
239
240         * src/support/lyxstring.C: some changes from length() to rep->sz.
241         avoids a function call.
242
243         * src/support/filetools.C (SpaceLess): yet another version of the
244         algorithm...now per Jean-Marc's suggestions.
245
246 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
247
248         * src/layout.C (less_textclass_desc): functor for use in sorting
249         of textclasses. 
250         (LyXTextClass::Read): sort the textclasses after reading.
251         
252         * src/support/filetools.C (SpaceLess): new version of the
253         SpaceLess functions. What problems does this one give? Please
254         report.
255
256         * images/banner_bw.xbm: made the arrays unsigned char *
257
258 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
259
260         * src/support/lyxstring.C (find): remove bogus assertion in the
261         two versions of find where this has not been done yet.
262
263         * src/support/lyxlib.h: add missing int return type to
264         lyx::chdir(). 
265
266         * src/menus.C (ShowFileMenu): disable exporting to html if no
267         html export command is present.
268
269         * config/lib_configure.m4: add a test for an HTML converter. The
270         programs checked for are, in this order: tth, latex2html and
271         hevea. 
272
273         * lib/configure: generated from config/lib_configure.m4.
274
275         * src/lyxfunc.C (Dispatch): update and improve the execution of an
276         html converter. The parameters are now passed through $$FName and
277         $$OutName, instead of standard input/output.
278
279         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
280
281         * lib/lyxrc.example: update description of \html_command. 
282         add "quotes" around \screen_font_xxx font setting examples to help
283         people who use fonts with spaces in their names.
284
285 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
286
287         * Distribution files: updates for v1.1.2
288
289         * src/support/lyxstring.C (find): remove bogus assert and return
290         npos for the same condition.
291
292 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
293
294         * added patch for OS/2 from SMiyata.
295
296 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
297
298         * src/text2.C (CutSelection): make space_wrapped a bool
299         (CutSelection): dont declare int i until we have to.
300         (alphaCounter): return a char const *.
301
302 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
303
304         * src/support/syscall.C (Systemcalls::kill): 
305           src/support/filetools.C (PutEnv, PutEnvPath): 
306           src/lyx_cb.C (addNewlineAndDepth): 
307           src/FontInfo.C (FontInfo::resize): condition some #warning
308         directives with WITH_WARNINGS.
309         
310
311 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
312
313         * src/layout.[Ch] + several files: access to class variables
314         limited and made accessor functions instead a lot of code changed
315         becuase of this. Also instead of returning pointers often a const
316         reference is returned instead.
317         
318         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
319
320         * src/Makefile.am (dist-hook): added used to remove the CVS from
321         cheaders upon creating a dist
322         (EXTRA_DIST): added cheaders
323
324         * src/support/lstrings.C (tostr(char)): fix it to handle param as
325         a character not as a small integer. 
326
327         * src/support/lyxstring.C (find): removed Assert and added i >=
328         rep->sz to the first if.
329
330 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
331
332         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
333         src/LyXView.C src/buffer.C src/bufferparams.C
334         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
335         src/text2.C src/insets/insetinclude.C:
336         lyxlayout renamed to textclasslist.
337
338         * src/layout.C: some lyxerr changes.
339
340         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
341         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
342         (LyXLayoutList): removed all traces of this class.
343         (LyXTextClass::Read): rewrote LT_STYLE
344         (LyXTextClass::hasLayout): new function
345         (LyXTextClass::GetLayout): rewritten to return an iterator + has
346         both const and nonconst version.
347         (LyXTextClass::delete_layout): new function.
348         (LyXTextClassList::Style): bug fix. do the right thing if layout
349         is to big.
350         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
351         (LyXTextClassList::NameOfLayout): ditto 
352         (LyXTextClassList::Load): ditto
353
354         * src/buffer.C (makeLaTeXFile): new access to layoutlist
355
356         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
357
358         * src/LyXAction.C (LookupFunc): added a workaround for sun
359         compiler, on the other hand...we don't know if the current code
360         compiles on sun at all...
361
362         * src/support/filetools.C (CleanupPath): subst fix
363
364         * src/insets/insetbib.C (delDatabase): subst fix, this looks
365         _really_ weird.
366
367         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
368         complained about this one?
369
370         * src/insets/insetinclude.C (Latex): subst fix
371
372         * src/insets/insetbib.C (getKeys): subst fix
373
374         * src/LyXSendto.C (SendtoApplyCB): subst fix
375
376         * src/lyx_main.C (init): subst fix
377
378         * src/layout.C (Read): subst fix
379
380         * src/lyx_sendfax_main.C (button_send): subst fix
381
382         * src/buffer.C (RoffAsciiTable): subst fix
383
384         * src/lyx_cb.C (MenuFax): subst fix
385         (PrintApplyCB): subst fix
386
387 1999-10-26  Juergen Vigna  <jug@sad.it>
388
389         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
390
391         (Read): Cleaned up this code so now we read only format vestion >= 5
392
393 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
394
395         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
396         come nobody has complained about this one?
397
398         * src/insets/insetinclude.C (Latex): subst fix
399
400         * src/insets/insetbib.C (getKeys): subst fix
401
402         * src/lyx_main.C (init): subst fix
403
404         * src/layout.C (Read): subst fix
405
406         * src/buffer.C (RoffAsciiTable): subst fix
407
408         * src/lyx_cb.C (MenuFax): subst fix.
409
410         * src/layout.[hC] + some other files: rewrote to use
411         std::container to store textclasses and layouts in.
412         Simplified, removed a lot of code. Make all classes
413         assignable. Further simplifications and review of type
414         use still to be one. 
415
416         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
417         lastfiles to create the lastfiles partr of the menu.
418
419         * src/lastfiles.[Ch]: rewritten to use deque to store the
420         lastfiles in. Uses fstream for reading and writing. Simplifies
421         code.
422
423         * src/support/syscall.C: remove explicit cast.
424
425         * src/BufferView.C (CursorToggleCB): removed code snippets that
426         were commented out.
427         use explicat C++ style casts instead of C style casts. also use
428         u_vdata instea of passing pointers in longs.
429
430         * src/PaperLayout.C: removed code snippets that were commented out.
431
432         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
433
434         * src/lyx_main.C: removed code snippets that wer commented out.
435
436         * src/paragraph.C: removed code snippets that were commented out.
437
438         * src/lyxvc.C (logClose): use static_cast
439         (logUpdate): ditto
440         (viewLog): remove explicit cast to void*
441         (showLog): removed old commented code
442
443         * src/menus.C: use static_cast instead of C style casts. use
444         u_vdata instead of u_ldata. remove explicit cast to (long) for
445         pointers. Removed old code that was commented out.
446
447         * src/insets/inset.C: removed old commented func
448
449         * src/insets/insetref.C (InsetRef): removed old code that had been
450         commented out for a long time.
451         (Edit): ditto
452         (escape): removed C style cast
453
454         * src/insets/insetlatexaccent.C (Draw): removed old commented code
455
456         * src/insets/insetlatex.C (Draw): removed old commented code
457         (Read): rewritten to use string
458
459         * src/insets/insetlabel.C (escape): removed C style cast
460
461         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
462
463         * src/insets/insetindex.C: use static_cast and u_vdata, removed
464         old commented code.
465
466         * src/insets/insetinclude.h: removed a couple of stupid bools
467
468         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
469         (Clone): remove C style cast
470         (getKeys): changed list to lst because of std::list
471
472         * src/insets/inseterror.C (Draw): removed som old commented code.
473
474         * src/insets/insetcommand.C (Draw): removed some old commented code.
475
476         * src/insets/insetbib.C (bibitem_cb): removed code that has been
477         commented out forever.
478         (bibitem_cb): use static_cast instead of C style cast
479         use of vdata changed to u_vdata.
480
481         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
482         parameter.
483         (CloseUrlCB): use static_cast instead of C style cast.
484         (CloseUrlCB): added a fl_free form...it seemed to be missing.
485
486         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
487         (C_InsetInfo_CloseInfoCB): forward the ob parameter
488         (CloseInfoCB): static_cast from ob->u_vdata instead.
489         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
490         instead. 
491
492         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
493         (C_InsetError_CloseErrorCB): forward the ob parameter
494         (CloseErrorCB): static_cast from ob->u_vdata instead.
495
496         * src/vspace.h: include LString.h since we use string in this class.
497
498         * src/vspace.C (lyx_advance): changed name from advance because of
499         nameclash with stl. And since we cannot use namespaces yet...I
500         used a lyx_ prefix instead. Expect this to change when we begin
501         using namespaces.
502
503         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
504
505         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
506         and removed now defunct constructor and deconstructor.
507
508         * src/BufferView.h: have backstack as a object not as a pointer.
509         removed initialization from constructor. added include for BackStack 
510
511         * development/lyx.spec.in (%build): add CFLAGS also.
512
513         * src/screen.C (drawFrame): removed another warning.
514
515 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
516
517         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
518         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
519         README and ANNOUNCE a bit for the next release. More work is
520         needed, of course.
521
522         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
523         unbreakable if we are in freespacing mode (LyX-Code), but not in
524         latex mode.
525
526 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
527
528         * src/BackStack.h: fixed initialization order in constructor
529
530         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
531
532         * acinclude.m4 (VERSION): new rules for when a version is
533         development, added also a variable for prerelease.
534         (warnings): we set with_warnings=yes for prereleases
535         (lyx_opt): prereleases compile with same optimization as development 
536         (CXXFLAGS): only use pedantic if we are a development version 
537
538         * src/BufferView.C (restorePosition): don't do anything if the
539         backstack is empty.
540
541         * src/BackStack.h: added member empty, use this to test if there
542         is anything to pop...
543
544 1999-10-25  Juergen Vigna  <jug@sad.it>
545
546         * forms/form1.fd +
547         * forms/layout_forms.fd +
548         * forms/latexoptions.fd +
549         * lyx.fd: changed for various form resize issues
550
551         * src/mathed/math_panel.C +
552         * src/insets/inseterror.C +
553         * src/insets/insetinfo.C +
554         * src/insets/inseturl.C +
555         * src/insets/inseturl.h +
556         * src/LaTeXLog.C +
557         * src/LyXSendto.C +
558         * src/PaperLayout.C +
559         * src/ParagraphExtra.C +
560         * src/TableLayout.C +
561         * src/form1.C +
562         * src/layout_forms.C +
563         * src/lyx.C +
564         * src/lyx_cb.C +
565         * src/lyx_gui.C +
566         * src/lyxfr0.C +
567         * src/lyxfunc.C +
568         * src/lyxvc.C +
569         * src/menus.C: fixed various resize issues. So now forms can be
570         resized savely or not be resized at all.
571         
572         * forms/form_url.fd +
573         * src/insets/form_url.[Ch]: added because it's cleaner and easier
574         to modify IMO.
575
576         * src/insets/Makefile.am: added files form_url.[Ch]
577         
578 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
579
580         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
581         (and presumably 6.2).
582
583         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
584         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
585         remaining static member callbacks. 
586
587         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
588         messages. 
589
590         * src/support/lyxstring.h: declare struct Srep as friend of
591         lyxstring, since DEC cxx complains otherwise.
592
593 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
594
595 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
596
597         * src/LaTeX.C (run): made run_bibtex also depend on files with
598         extension ".bst"
599         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
600         are put into the dependency file.
601
602         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
603         the code has shown itself to work
604         (create_ispell_pipe): removed another warning, added a comment
605         instead. 
606
607         * src/minibuffer.C (ExecutingCB): removed code that has been
608         commented out a long time
609
610         * src/lyxfunc.C (processKeyEvent): removed some very old commented
611         out code + a warning.
612
613         * src/support/lyxstring.h: comment out the three private
614         operators, when compiling with string ansi conforming compilers
615         they make problems.
616
617         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
618         unsigned char *.
619         (pixmapFromBitmapData): change type of bdata to be unsigned char *
620         (pixmapFromBitmapData): add a reinterpret_cast in the call to
621         XCreateImage
622
623         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
624         unsigned char *
625
626         * src/mathed/math_panel.C (create_math_panel): remove explicit
627         casts
628
629         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
630         unsigned char *.
631
632         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
633         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
634         to XCreatePixmapFromBitmapData
635         (fl_set_bmtable_data): change the last argument to be unsigned
636         char *
637         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
638         and bh to be unsigned int, remove explicit casts in call to
639         XReadBitmapFileData.
640
641         * images/arrows.xbm: made the arrays unsigned char *
642         * images/varsz.xbm: ditto
643         * images/misc.xbm: ditto
644         * images/greek.xbm: ditto
645         * images/dots.xbm: ditto
646         * images/brel.xbm: ditto
647         * images/bop.xbm: ditto
648
649         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
650
651         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
652         (LYX_PROG_CXX): added -pedantic to g++ compile options when
653         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
654         needed. 
655         (LYX_CXX_CHEADERS): added <clocale> to the test. 
656
657 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
658
659         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
660
661         * src/support/lyxstring.C (append): fixed something that must be a
662         bug, rep->assign was used instead of rep->append.
663
664         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
665         and LOstream.h
666
667         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
668         lyx insert double chars. Fix spotted by Kayvan.
669
670 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
671
672         * Fixed the tth support. I messed up with the Emacs patch apply feature
673         and omitted the changes in lyxrc.C.
674
675 1999-10-22  Juergen Vigna  <jug@sad.it>
676
677         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
678
679         * src/lyx_cb.C (MenuInsertRef) + 
680         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
681         the form cannot be resized under it limits (fixes a segfault)
682         
683         * src/lyx.C (create_form_form_ref) +
684         * forms/lyx.fd: Changed Gravity on name input field so that it is
685         resized correctly.
686
687 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
688
689         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
690         <ostream> and <istream>.
691         
692         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
693         whether <fstream> provides the latest standard features, or if we
694         have an oldstyle library (like in egcs).
695         (LYX_CXX_STL_STRING): fix the test.
696
697         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
698         code on MODERN_STL_STREAM.
699
700         * src/support/lyxstring.h: use L{I,O}stream.h.
701
702         * src/support/L{I,O}stream.h: new files, designed to setup
703         correctly streams for our use
704           - includes the right header depending on STL capabilities
705           - puts std::ostream and std::endl (for LOStream.h) or
706           std::istream (LIStream.h) in toplevel namespace.
707
708 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
709
710         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
711         was a bib file that had been changed we ensure that bibtex is run.
712         (runBibTeX): enhanced to extract the names of the bib files and
713         getting their absolute path and enter them into the dep file.
714         (findtexfile): static func that is used to look for tex-files,
715         checks for absolute patchs and tries also with kpsewhich.
716         Alternative ways of finding the correct files are wanted. Will
717         probably be moved.
718         (do_popen): function that runs a command using popen and returns
719         the whole output of that command in a string. Should be moved to
720         somewhere else.
721
722         * src/DepTable.[Ch] (extchanged): new function that returns true if a
723         file with extension ext has changed.
724
725         * src/insets/figinset.C: added ifdef guards around the fl_free
726         code that jug commented out. Now it is commented out when
727         compiling with XForms == 0.89.
728
729         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
730         to lyxstring.C, and only keep a forward declaration in
731         lyxstring.h. Simplifies the header file a bit and should help a
732         bit on compile time too. Also changes to Srep will not mandate a
733         recompile of code just using string.
734         (~lyxstring): definition moved here since it uses srep.
735         (size): definition moved here since it uses srep.
736
737         * src/support/lyxstring.h: removed a couple of "inline" that should
738         not be there.
739
740 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
741
742         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
743         the 'ob' argument.
744
745 1999-10-21  Juergen Vigna  <jug@sad.it>
746
747         * src/table.C (SetPWidth): Just a small fix so the alignment is not
748         set to left if I just remove the width entry (or it is empty).
749
750         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
751         paragraph when having dummy paragraphs.
752
753 1999-10-20  Juergen Vigna  <jug@sad.it>
754
755         * src/insets/figinset.C: just commented some fl_free_form calls
756         and added warnings so that this calls should be activated later
757         again. This avoids for now a segfault, but we have a memory leak!
758
759         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
760         'const char * argument' to 'string argument', this should
761         fix some Asserts() in lyxstring.C.
762
763         * src/lyxfunc.h: Removed the function argAsString(const char *)
764         as it is not used anymore.
765
766 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
767
768         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
769         get instead of >>
770
771         * src/Literate.h: some funcs moved from public to private to make
772         interface clearer. Unneeded args removed.
773
774         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
775         instead of lyxlex.
776         (scanBuildLogFile): ditto
777
778         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
779         normal TeX Error. Still room for improvement.
780
781         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
782
783         * src/buffer.C (insertErrors): changes to make the error
784         desctription show properly.
785
786         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
787         could never happen
788
789         * src/support/lyxstring.C (helper): changed to use
790         sizeof(object->rep->ref).
791         (operator>>): changed to use a pointer instead.
792
793         * src/support/lyxstring.h: changed const reference & to value_type
794         const & lets see if that helps.
795
796 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
797
798         * Makefile.am (rpmdist): fixed to have non static package and
799         verison.
800
801         * src/support/lyxstring.C: removed the compilation guards
802
803         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
804         a bit clearer.
805
806         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
807         conditional compile of lyxstring.Ch
808
809         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
810         stupid check, but it is a lot better than the bastring hack. 
811         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
812
813         * several files: changed string::erase into string::clear. Not
814         really needed.
815         
816         * src/chset.C (encodeString): use a char temporary instead
817
818         * src/table.C (TexEndOfCell): added tostr around
819         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
820         (TexEndOfCell): ditto
821         (TexEndOfCell): ditto
822         (TexEndOfCell): ditto
823         (DocBookEndOfCell): ditto
824         (DocBookEndOfCell): ditto
825         (DocBookEndOfCell): ditto
826         (DocBookEndOfCell): ditto
827
828         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
829
830         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
831
832         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
833         (MenuBuildProg): added tostr around ret
834         (MenuRunChktex): added tostr around ret
835         (DocumentApplyCB): added tostr around ret
836
837         * src/chset.C (encodeString): added tostr around t->ic
838
839         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
840         (makeLaTeXFile): added tostr around tocdepth
841         (makeLaTeXFile): added tostr around ftcound - 1
842
843         * src/insets/insetbib.C (setCounter): added tostr around counter.
844
845         * src/support/lyxstring.h: added an operator+=(int) to catch more
846         mistakes. 
847
848         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
849         (lyxstring): We DON'T allow NULL pointers.
850
851 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
852
853         * src/mathed/math_macro.C (MathMacroArgument::Write,
854         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
855         when writing them out.
856
857         * src/LString.C: remove, since it is not used anymore.
858         
859         * src/support/lyxstring.C: condition the content to
860         USE_INCLUDED_STRING macro.
861
862         * src/mathed/math_symbols.C, src/support/lstrings.C,
863         src/support/lyxstring.C: add `using' directive to specify what
864         we need in <algorithm>. I do not think that we need to
865         conditionalize this, but any thought is appreciated.
866
867         * many files: change all callback functions to "C" linkage
868         functions to please strict C++ compilers like DEC cxx 6.1 in mode
869         strict_ansi. Those who were static are now global. 
870             The case of callbacks which are static class members is
871         trickier, since we have to make C wrappers around them (see
872         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
873         did not finish this yet, since it defeats the purpose of
874         encapsulation, and I am not sure what the best route is.
875
876 1999-10-19  Juergen Vigna  <jug@sad.it>
877
878         * src/support/lyxstring.C (lyxstring): we permit to have a null
879         pointer as assignment value and just don't assign it.
880
881         * src/vspace.C (nextToken): corrected this function substituting
882         find_first(_not)_of with find_last_of.
883
884         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
885                 (TableOptCloseCB) (TableSpeCloseCB):
886         inserted fl_set_focus call for problem with fl_hide_form() in
887         xforms-0.89.
888
889 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
890
891         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
892         string. 
893
894 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
895
896         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
897         LyXLex::next() and not eatline() to get its argument.
898
899 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
900
901         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
902         instead, use fstreams for io of the depfile, removed unneeded
903         functions and variables. 
904
905         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
906         vector instead, removed all functions and variables that is not in
907         use.
908
909 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
910
911         * src/buffer.C (insertErrors): use new interface to TeXError
912
913         * Makefile.am (rpmdist): added a rpmdist target
914
915         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
916         per Kayvan's instructions.
917
918 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
919
920         * src/Makefile.am: add a definition for localedir, so that locales
921         are found after installation (Kayvan)
922
923 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
924
925         * development/.cvsignore: new file.
926
927 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
928
929         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
930         C++ compiler provides wrappers for C headers and use our alternate
931         version otherwise.
932
933         * configure.in: use LYX_CXX_CHEADERS.
934
935         * src/cheader/: new directory, populated with cname headers from
936         libstdc++-2.8.1. They are a bit old, but probably good enough for
937         what we want (support compilers who lack them).
938         
939         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
940         from includes. It turns out is was stupid.
941  
942 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
943
944         * lib/Makefile.am (install-data-local): forgot a ';'
945         (install-data-local): forgot a '\'
946         (libinstalldirs): needed after all. reintroduced.
947
948 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
949
950         * configure.in (AC_OUTPUT): added lyx.spec
951
952         * development/lyx.spec: removed file
953
954         * development/lyx.spec.in: new file
955
956         * po/*.po: merged with lyx.pot becuase of make distcheck
957         
958         * lib/Makefile.am (dist-hook): added dist-hook so that
959         documentation files will be included when doing a make
960         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
961         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
962         conditional later.
963         more: tried to make install do the right thing, exclude CVS dirs
964         etc.
965
966         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
967         Path would fit in more nicely.
968
969         * all files that used to use pathstack: uses now Path instead.
970         This change was a lot easier than expected.
971         
972         * src/support/path.h: new file
973
974         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
975
976         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
977
978         * src/support/lyxstring.C (getline): Default arg was given for
979         para 3. removed.
980
981         * Configure.cmd: removed file 
982
983 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
984
985         * src/support/DebugStream.[Ch]: remove the explicit std:: before
986         streams classes and types, add the proper 'using' statements when
987         MODERN_STL is defined.
988         
989         * src/debug.h: move the << operator definition after the inclusion
990         of DebugStream.h
991
992         * src/support/filetools.C: include "LAssert.h", which is needed
993         later. 
994
995         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
996         to includes. 
997
998         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
999         include "debug.h" to define a proper ostream.
1000
1001 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
1002
1003         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
1004           method to the SystemCall class which can kill a process, but it's
1005           not fully implemented yet.
1006
1007         * src/*.C: Changed Systemcalls::Startscript() to startscript()
1008
1009         * src/support/FileInfo.h: Better documentation  
1010
1011         * src/lyxfunc.C: Added support for buffer-export html
1012         
1013         * src/menus.C: Added Export->As HTML...
1014         
1015         * lib/bind/*.bind: Added short-cut for buffer-export html
1016
1017         * src/lyxrc.*: Added support for new \tth_command
1018         
1019         * lib/lyxrc.example: Added stuff for new \tth_command
1020
1021 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
1022
1023         * lib/Makefile.am (IMAGES): removed images/README
1024         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
1025         installes in correct place. Check permisions is installed
1026         correctly.
1027
1028         * src/LaTeX.C: some no-op changes moved declaration of some
1029         variables around.
1030
1031         * src/LaTeX.h (LATEX_H): changed include guard name
1032
1033 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1034
1035         * lib/reLyX/Makefile.am: install noweb2lyx.
1036
1037         * lib/Makefile.am: install configure. 
1038
1039         * lib/reLyX/configure.in: declare a config aux dir; set package
1040         name to lyx (not sure what the best solution is); generate noweb2lyx.
1041
1042         * lib/layouts/egs.layout: fix the bibliography layout.
1043
1044 1999-10-08  Jürgen Vigna <jug@sad.it>
1045
1046         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
1047         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
1048         it returned without continuing to search the path.
1049         
1050 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
1051
1052         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
1053         also fixes a bug. It is not allowed to do tricks with std::strings
1054         like: string a("hei"); &a[e]; this will not give what you
1055         think... Any reason for the complexity in this func?
1056
1057 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
1058
1059         * Updated README and INSTALL a bit, mostly to check that my
1060         CVS rights are correctly set up.
1061
1062 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
1063
1064         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
1065         does not allow '\0' chars but lyxstring and std::string does.
1066
1067 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1068
1069         * autogen.sh (AUTOCONF): let the autogen script create the
1070         POTFILES.in file too. POTFILES.in should perhaps now not be
1071         included in the cvs module.
1072
1073         * some more files changed to use C++ includes instead of C ones.
1074
1075         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
1076         not assigned.
1077         (Reread): added tostr to nlink. buggy output otherwise.
1078         (Reread): added a string() around szMode when assigning to Buffer,
1079         without this I got a log of garbled info strings.
1080
1081         * acconfig.h: commented out the PTR_AS_INT macros. They should not
1082         be needed.
1083
1084         * I have added several ostream & operator<<(ostream &, some_type)
1085         functions. This has been done to avoid casting and warnings when
1086         outputting enums to lyxerr. This as thus eliminated a lot of
1087         explicit casts and has made the code clearer. Among the enums
1088         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
1089         mathed enums, some font enum the Debug::type enum. 
1090
1091         * src/support/lyxstring.h (clear): missing method. equivalent of
1092         erase(0, npos).
1093
1094         * all files that contained "stderr": rewrote constructs that used
1095         stderr to use lyxerr instead. (except bmtable)
1096
1097         * src/support/DebugStream.h (level): and the passed t with
1098         Debug::ANY to avoid spurious bits set.
1099
1100         * src/debug.h (Debug::type value): made it accept strings of the
1101         type INFO,INIT,KEY.
1102
1103         * configure.in (Check for programs): Added a check for kpsewhich,
1104         the latex generation will use this later to better the dicovery of
1105         all used files. 
1106
1107         * src/BufferView.C (create_view): we don't need to cast this to
1108         (void*) that is done automatically.
1109         (WorkAreaButtonPress): removed some dead code.
1110
1111 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1112
1113         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
1114         is not overwritten when translated (David Sua'rez de Lis).
1115
1116         * lib/CREDITS: Added David Sua'rez de Lis
1117
1118         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
1119
1120         * src/bufferparams.C (BufferParams): default input encoding is now
1121         "latin1" 
1122
1123         * acinclude.m4 (cross_compiling): comment out macro
1124         LYX_GXX_STRENGTH_REDUCE. 
1125
1126         * acconfig.h: make sure that const is not defined (to empty) when
1127         we are compiling C++. Remove commented out code using SIZEOF_xx
1128         macros.
1129         
1130         * configure.in : move the test for const and inline as late as
1131         possible so that these C tests do not interefere with C++ ones.
1132         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
1133         has not been proven. 
1134
1135 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1136
1137         * src/table.C (getDocBookAlign): remove bad default value for
1138         isColumn parameter.
1139
1140         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
1141         shortcut. 
1142         (ShowFileMenu2): ditto.
1143
1144         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
1145         of files to ignore.
1146
1147 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1148
1149         * Most files: finished the change from the old error code to use
1150         DebugStream for all lyxerr debugging. Only minor changes remain
1151         (e.g. the setting of debug levels using strings instead of number) 
1152
1153 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1154
1155         * src/layout.C (Add): Changed to use compare_no_case instead of
1156         strcasecmp.
1157
1158         * src/FontInfo.C: changed loop variable type too string::size_type.
1159
1160 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1161
1162         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
1163         set ETAGS_ARGS to --c++ 
1164
1165 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
1166
1167         * src/table.C (DocBookEndOfCell): commented out two unused variables
1168
1169         * src/paragraph.C: commented out four unused variables. 
1170
1171         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
1172         insed a if clause with type string::size_type.
1173
1174         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
1175         string::size_type.
1176
1177         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
1178
1179         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
1180         variable, also changed loop to go from 0 to lenght + 1, instead of
1181         -1 to length. This should be correct.
1182
1183         * src/LaTeX.C (scanError): use string::size_type as loop variable
1184         type.
1185
1186         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
1187         (l.896) since y_tmp and row was not used anyway.
1188
1189         * src/insets/insetref.C (escape): use string::size_type as loop
1190         variable type.
1191
1192         * src/insets/insetquotes.C (Width): use string::size_type as loop
1193         variable type.
1194         (Draw): use string::size_type as loop variable type.
1195
1196         * src/insets/insetlatexaccent.C (checkContents): use
1197         string::size_type as loop variable type.
1198
1199         * src/insets/insetlabel.C (escape): use string::size_type as loop
1200         variable type.
1201
1202         * src/insets/insetinfo.C: added an extern for current_view.
1203
1204         * src/insets/insetcommand.C (scanCommand): use string::size_type
1205         as loop variable type.
1206
1207         * most files: removed the RCS tags. With them we had to recompile
1208         a lot of files after a simple cvs commit. Also we have never used
1209         them for anything meaningful. 
1210
1211         * most files: tags-query-replace NULL 0. As adviced several plases
1212         we now use "0" instead of "NULL" in our code. 
1213
1214         * src/support/filetools.C (SpaceLess): use string::size_type as
1215         loop variable type.
1216
1217 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1218
1219         * src/paragraph.C: fixed up some more string stuff.
1220
1221 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1222
1223         * src/support/filetools.h: make modestr a std::string.
1224
1225         * src/filetools.C (GetEnv): made ch really const.
1226
1227         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
1228         made code that used these use max/min from <algorithm> instead.
1229
1230         * changed several c library include files to their equivalent c++
1231         library include files. All is not changed yet.
1232
1233         * created a support subdir in src, put lyxstring and lstrings
1234         there + the extra files atexit, fileblock, strerror. Created
1235         Makefile.am. edited configure.in and src/Makefile.am to use this
1236         new subdir. More files moved to support.
1237
1238         * imported som of the functions from repository lyx, filetools
1239         
1240         * ran tags-query-replace on LString -> string, corrected the bogus
1241         cases. Tried to make use of lstrings.[hC], debugged a lot. There
1242         is still some errors in there. This is errors where too much or
1243         too litle get deleted from strings (string::erase, string::substr,
1244         string::replace), there can also be some off by one errors, or
1245         just plain wrong use of functions from lstrings. Viewing of quotes
1246         is wrong. 
1247
1248         * LyX is now running fairly well with string, but there are
1249         certainly some bugs yet (see above) also string is quite different
1250         from LString among others in that it does not allow null pointers
1251         passed in and will abort if it gets any.
1252         
1253         * Added the revtex4 files I forgot when setting up the repository.
1254
1255 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1256
1257         * All over: Tried to clean everything up so that only the files
1258           that we really need are included in the cvs repository.
1259         * Switched to use automake.
1260         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
1261         * Install has not been checked.
1262
1263 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1264
1265         * po/pt.po: Three errors:
1266                l.533 and l.538 format specification error
1267                l. 402 duplicate entry, I just deleted it.
1268