txlyre 1 week ago
parent
commit
a5560e6ff6
2 changed files with 3 additions and 0 deletions
  1. 1 0
      help.h
  2. 2 0
      readme.md

+ 1 - 0
help.h

@@ -144,6 +144,7 @@ const char *V2HELP =\
 "E. monadic exit          exit with exit code" "\n"\
 "E. monadic exit          exit with exit code" "\n"\
 "L. monadic lines         shortcut for (4t.10)]:" "\n"\
 "L. monadic lines         shortcut for (4t.10)]:" "\n"\
 "L. dyadic  tackleft      prepend x to y" "\n"\
 "L. dyadic  tackleft      prepend x to y" "\n"\
+"R. monadic setrecdepth   set max recursion depth" "\n"\
 "R. dyadic  tackright     append x to y" "\n"\
 "R. dyadic  tackright     append x to y" "\n"\
 "v. monadic value         get value of var x (udf if not defined)" "\n"\
 "v. monadic value         get value of var x (udf if not defined)" "\n"\
 "x. monadic show          identity for strings, same as $ repr for other" "\n"\
 "x. monadic show          identity for strings, same as $ repr for other" "\n"\

+ 2 - 0
readme.md

@@ -113,6 +113,7 @@ l 3
 ```
 ```
 
 
 # Quick reference (also available in the interpreter itself)
 # Quick reference (also available in the interpreter itself)
+Note: integrated quickref has priority over the following one.  
 
 
 ```
 ```
 / comment
 / comment
@@ -301,6 +302,7 @@ y. monadic system        exec system command (yields output)
 y. dyadic  system2       exec system command with input
 y. dyadic  system2       exec system command with input
 E. monadic exit          exit with exit code
 E. monadic exit          exit with exit code
 L. dyadic  tackleft      prepend x to y
 L. dyadic  tackleft      prepend x to y
+R. monadic setrecdepth   set max recursion depth
 R. dyadic  tackright     append x to y
 R. dyadic  tackright     append x to y
 v. monadic value         get value of var x (udf if not defined)
 v. monadic value         get value of var x (udf if not defined)
 x. monadic show          identity for strings, same as $ repr for other
 x. monadic show          identity for strings, same as $ repr for other