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