]> git.lyx.org Git - lyx.git/blobdiff - ChangeLog
fix some of the bugs reported, should hopefully be a bit better now.
[lyx.git] / ChangeLog
index d2817af56334b5e387b6d0771328e8662b97664e..692aea7a97f9874c3b8dd36d898654f90ff3687b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,241 @@
+2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
+       version also. 
+
+       * src/paragraph.C (FirstPhysicalPar): remove assert and comment
+       that obviously was wrong...
+
+       * src/lyxfont.C (textWidth): have c as char c[2] instead of char
+       c, this avoids warnings with purify and islower.
+
+       * src/insets/figinset.C: rename struct queue to struct
+       queue_element and rewrite to use a std::queue. gsqueue is now a
+       std::queue<queue_element>
+       (runqueue): reflect move to std::queue
+       (addwait): ditto
+
+       * src/support/lstrings.h (tostr): specialize for bool, otherwise
+       we would get "1" "0" instead of "true" "false. Also make the tostr
+       functions inline.
+
+2000-01-21  Juergen Vigna  <jug@sad.it>
+
+       * src/buffer.C (writeFileAscii): Disabled code for special groff
+       handling of tabulars till I fix this in table.C
+
+2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * src/support/mkdir.C (mkdir): change second argument of mkdir to
+       unsigned long int.
+       * src/support/lyxlib.h: ditto.
+
+2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
+       and 'j' look better. This might fix the "macron" bug that has been
+       observed.
+
+       * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
+       functions as one template function. Delete the old versions.
+
+       * src/support/lyxsum.C: move using std::ifstream inside
+       MODERN_STL_STREAMS
+
+       * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
+       and putenv.C
+
+       * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
+
+       * src/mathed/formula.C: delete #include "bufferlist.h" never used
+
+       * src/insets/figinset.C (InitFigures): use new instead of malloc
+       to allocate memory for figures and bitmaps.
+       (DoneFigures): use delete[] instead of free to deallocate memory
+       for figures and bitmaps.
+       (runqueue): use new to allocate 
+       (getfigdata): use new/delete[] instead of malloc/free
+       (RegisterFigure): ditto
+
+       * some files: moved some declarations closer to first use, small
+       whitespace changes use preincrement instead of postincrement where
+       it does not make a difference.
+       
+       * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
+       step on the way to use stl::containers for key maps. 
+
+       * src/bufferlist.h: add a typedef for const_iterator and const
+       versions of begin and end.
+
+       * src/bufferlist.[Ch]: change name of member variable _state to
+       state_. (avoid reserved names)
+       (makePup): removed
+       (getFileNames): returns the filenames of the buffers in a vector.
+
+       * configure.in (ALL_LINGUAS): added ro
+
+       * src/support/putenv.C: new file
+
+       * src/support/mkdir.C: new file
+
+2000-01-20  Allan Rae <rae@lyx.org>
+
+       * lib/layouts/IEEEtran.layout: Added several theorem environments
+
+       * lib/templates/IEEEtran.lyx: Example theorem environments and a
+       couple of minor additions.
+
+       * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
+       (except for those in footnotes of course)
+
+2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
+
+       * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
+       std::sort and std::lower_bound instead of qsort and handwritten
+       binarysearch.
+       (struct compara): struct that holds the functors used by std::sort
+       and std::lower_bound in MathedLookupBOP.
+
+2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * src/support/LAssert.h: do not do partial specialization. We do
+       not really need it.
+
+       * src/support/lyxlib.h: note that lyx::getUserName() and
+       lyx::date() are not in use right now. Should these be suppressed?
+
+       * src/buffer.C (makeLaTeXFile): we do not need the user name here.
+       (makeLinuxDocFile): do not put date and user name in linuxdoc
+       headers. 
+
+       * src/support/lyxlib.h (kill): change first argument to long int,
+       since that's what solaris uses.
+
+       * src/support/kill.C (kill): fix declaration to match prototype.
+
+       * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
+       actually check whether namespaces are supported. This is not what
+       it used to do.
+
+       * src/support/lyxsum.C: add a using directive.
+
+2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/support/kill.C: if we have namespace support we don't have
+       to include lyxlib.h.
+
+       * src/support/lyxlib.h: use namespace lyx if supported.
+
+2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/support/date.C: new file
+
+       * src/support/chdir.C: new file
+
+       * src/support/getUserName.C: new file
+
+       * src/support/getcwd.C: new file
+
+       * src/support/abort.C: new file
+
+       * src/support/kill.C: new file
+
+       * src/support/lyxlib.h: moved all the functions in this file
+       insede struct lyx. Added also kill and abort to this struct. This
+       is a way to avoid the "kill is not defined in <csignal>", we make
+       C++ wrappers for functions that are not ANSI C or ANSI C++.
+
+       * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
+       instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
+       lyx it has been renamed to sum.
+
+2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * src/text.C: add using directives for std::min and std::max.
+
+2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * src/texrow.C (getIdFromRow): actually return something useful in
+       id and pos. Hopefully fixes the bug with positionning of errorbox
+       insets. 
+
+       * src/lyx_main.C (easyParse): output an error and exit if an
+       incorrect command line option has been given.
+
+       * src/spellchecker.C (ispell_check_word): document a memory leak.
+
+       * src/bufferlist.C (write): fix mismatched allocation/deletion,
+       where a "struct utimbuf" is allocated with "new" and deleted with
+       "delete[]". 
+
+2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/text2.C (CutSelection): don't delete double spaces.
+       (PasteSelection): ditto
+       (CopySelection): ditto
+       
+       * src/text.C (Backspace): don't delete double spaces.
+
+       * src/lyxlex.C (next): fix a bug that were only present with
+       conformant std::istream::get to read comment lines, use
+       std::istream::getline instead. This seems to fix the problem.
+
+2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
+       allowed to insert space before space" editing problem. Please read
+       commends at the beginning of the function. Comments about usage
+       are very welcome.
+
+       * src/text.C (InsertChar): fix for the "not allowed to insert
+       space before space" editing problem.
+
+       * src/text2.C (DeleteEmptyParagraphMechanism): when
+       IsEmptyTableRow can only return false this last "else if" will
+       always be a no-op. Commented out.
+
+       * src/text.C (RedoParagraph): As far as I can understand tmp
+       cursor is not really needed.
+
+       * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
+       present it could only return false anyway. 
+       (several functions): Did something not so smart...added a const
+       specifier on a lot of methods.
+       
+       * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
+       and add a tmp->text.resize. The LyXParagraph constructor does the
+       resize for us.
+       (BreakParagraphConservative): ditto
+
+       * src/support/path.h (Path): add a define so that the wrong usage
+       "Path("/tmp") will be flagged as a compilation error:
+       "`unnamed_Path' undeclared (first use this function)"
+
+2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
+       which was bogus for several reasons.
+
+       * src/LaTeX.C (scanAux): fix the regular expression used to scan
+       .aux files. 
+       (runBibTeX): ditto.
+
+       * autogen.sh: do not use "type -path" (what's that anyway?).
+
+       * src/support/filetools.C (findtexfile): remove extraneous space
+       which caused a kpsewhich warning (at least with kpathsea version
+       3.0). 
+
+2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
+
+       * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
+
+       * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
+
 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
 
        * src/paragraph.C (BreakParagraph): do not reserve space on text