two fixlets from John

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6614 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-03-28 17:52:28 +00:00
parent e8e74c1d70
commit 060cb74205
5 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2003-03-24 John Levon <levon@movementarian.org>
* symbols: add bmod function
2003-03-14 Dekel Tsur <dekelts@tau.ac.il>
* lyx2lyx/lyxconvert_218.py (remove_pextra): Fix conversion of

View File

@ -760,6 +760,7 @@ exp lyxblacktext 0 0 func x
Pr lyxblacktext 0 0 funclim x
gcd lyxblacktext 0 0 funclim x
deg lyxblacktext 0 0 func x
bmod lyxblacktext 0 0 func x
{ mathnormal 0 0 special x
} mathnormal 0 0 special x

View File

@ -1,3 +1,7 @@
2003-03-24 John Levon <levon@movementarian.org>
* ControlMath.C: include Pr function
2003-03-23 John Levon <levon@movementarian.org>
* ControlSpellchecker.C: make "words checked" translatable,

View File

@ -119,7 +119,7 @@ char const * function_names[] = {
"det", "dim", "exp", "gcd", "hom", "inf", "ker",
"lg", "lim", "liminf", "limsup", "ln", "log",
"max", "min", "sec", "sin", "sinh", "sup",
"tan", "tanh", ""
"tan", "tanh", "Pr", ""
};
int const nr_function_names = sizeof(function_names) / sizeof(char const *) - 1;

View File

@ -57,8 +57,12 @@ What's new
- the Home/End keys no longer mark the document as "(changed)"
- fix support for \framebox macro: the argument is handled as text,
and a second optional argument is now supported
- fix support for \framebox macro in mathed: the argument is handled
as text, and a second optional argument is now supported
- add support for macro \bmod in mathed
- add macro \Pr in the list of selectable functions of the math panel
- fix building of xforms dialogs' source on SMP machines [Bug #944,
xforms only]