=================================================================== RCS file: /home/cvs/OpenXM/src/k097/help.k,v retrieving revision 1.9 retrieving revision 1.12 diff -u -p -r1.9 -r1.12 --- OpenXM/src/k097/help.k 2001/01/08 05:26:48 1.9 +++ OpenXM/src/k097/help.k 2003/11/20 09:24:35 1.12 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/k097/help.k,v 1.8 2001/01/05 11:14:25 takayama Exp $ */ +/* $OpenXM: OpenXM/src/k097/help.k,v 1.11 2003/11/20 09:20:36 takayama Exp $ */ if (K00_verbose) Println("help.k: 8/6, 1996 --- 8/7, 1996. 3/6, 1997 --- 12/21, 1997."); @@ -516,7 +516,7 @@ HelpAdd(["Length", ]); HelpAdd(["Transpose", - ["Transpose(<.) return the transpose of the matrix << m >>", + ["Transpose(<>.) return the transpose of the matrix << m >>", "(array of array <>)."], ["m"], ["NewMatrix"], @@ -571,6 +571,18 @@ HelpAdd(["IsPolynomial", ["obj"], ["DC","Is*","Tag"], "check if a given object is a polynomial." +]); + +HelpAdd(["QuoteMode", + ["QuoteMode(1) sets the parser in the quotemode; if unknown function symbol", + "comes, it automatically translates the expression into a tree.", + "Example 1: class polymake extends PrimitiveObject {local ; def hogera() { return(1);} } ", + " QuoteMode(1); polymake.foo(1,2): ", + "Example 2: polymake=\"polymake\"; ", + " QuoteMode(1); polymake.foo(1,2): ", + "QuoteMode(0) turns off the quotemode."], + ["Tag"], + "Change into the quote mode." ]);