home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / rexxmd11.zip / rexx-sml.el < prev    next >
Lisp/Scheme  |  1994-07-05  |  5KB  |  146 lines

  1. ;;; rexx-os2.el --- REXX completion for use with rexx-mode.el
  2. ;; Copyright (C) 1994 Free Software Foundation, Inc.
  3.  
  4. ;; Maintainer: Scott Maxwell - scottmax@netcom.com
  5. ;; Keywords: rexx
  6. ;;
  7. ;; This is the small version of the completion file.  If you want
  8. ;; full documentation, you should use rexx-os2.el.  (That is the default.)
  9.  
  10. (setq rexx-command-table
  11.       '(
  12.     ("abbrev" . (nil "function"))
  13.     ("abs" . (nil "function"))
  14.     ("address" . (nil "command and function"))
  15.     ("arg" . (nil "command and function"))
  16.     ("b2x" . (nil "function"))
  17.     ("beep" . (nil "function"))
  18.     ("bitand" . ("BitAnd" "function"))
  19.     ("bitor" . ("BitOr" "function"))
  20.     ("bitxor" . ("BitXor" "function"))
  21.     ("c2d" . ("C2D" "function"))
  22.     ("c2x" . ("C2X" "function"))
  23.     ("call" . (nil "command"))
  24.     ("center" . (nil "function"))
  25.     ("centre" . (nil "function"))
  26.     ("charin" . ("CharIn" "function"))
  27.     ("charout" . ("CharOut" "function"))
  28.     ("chars" . (nil "function"))
  29.     ("compare" . (nil "function"))
  30.     ("condition" . (nil "function"))
  31.     ("copies" . (nil "function"))
  32.     ("d2c" . ("D2C" "function"))
  33.     ("d2x" . ("D2X" "function"))
  34.     ("datatype" . ("DataType" "function"))
  35.     ("date" . (nil "function"))
  36.     ("delstr" . ("DelStr" "function"))
  37.     ("delword" . ("DelWord" "function"))
  38.     ("digits" . (nil "function"))
  39.     ("directory" . (nil "function"))
  40.     ("do" . (nil "command"))
  41.     ("drop" . (nil "command"))
  42.     ("else" . (nil "command"))
  43.     ("errortext" . ("ErrorText" "function"))
  44.     ("endlocal" . ("EndLocal" "function"))
  45.     ("end" . (nil "command"))
  46.     ("exit" . (nil "command"))
  47.     ("filespec" . ("FileSpec" "function"))
  48.     ("form" . (nil "function"))
  49.     ("format" . (nil "function"))
  50.     ("fuzz" . (nil "function"))
  51.     ("if" . (nil "command"))
  52.     ("insert" . (nil "function"))
  53.     ("interpret" . (nil "command"))
  54.     ("iterate" . (nil "command"))
  55.     ("lastpos" . ("LastPos" "function"))
  56.     ("leave" . (nil "command"))
  57.     ("left" . (nil "function"))
  58.     ("length" . (nil "function"))
  59.     ("linein" . ("LineIn" "function"))
  60.     ("lineout" . ("LineOut" "function"))
  61.     ("lines" . (nil "function"))
  62.     ("max" . (nil "function"))
  63.     ("min" . (nil "function"))
  64.     ("nop" . (nil "command"))
  65.     ("numeric" . (nil "command"))
  66.     ("options" . (nil "command"))
  67.     ("overlay" . (nil "function"))
  68.     ("parse" . (nil "command"))
  69.     ("pos" . (nil "function"))
  70.     ("procedure" . (nil "command"))
  71.     ("pull" . (nil "command"))
  72.     ("push" . (nil "command"))
  73.     ("queue" . (nil "command"))
  74.     ("queued" . (nil "function"))
  75.     ("random" . (nil "function"))
  76.     ("return" . (nil "command"))
  77.     ("reverse" . (nil "function"))
  78.     ("right" . (nil "function"))
  79.     ("rxfuncadd" . ("RxFuncAdd" "function"))
  80.     ("rxfuncdrop" . ("RxFuncDrop" "function"))
  81.     ("rxfuncquery" . ("RxFuncQuery" "function"))
  82.     ("say" . (nil "command"))
  83.     ("select" . (nil "command"))
  84.     ("setlocal" . ("SetLocal" "function"))
  85.     ("sign" . (nil "function"))
  86.     ("signal" . (nil "command"))
  87.     ("sourceline" . ("SourceLine" "function"))
  88.     ("space" . (nil "function"))
  89.     ("stream" . (nil "function"))
  90.     ("strip" . (nil "function"))
  91.     ("substr" . ("SubStr" "function"))
  92.     ("subword" . ("SubWord" "function"))
  93.     ("symbol" . (nil "function"))
  94.     ("then" . (nil "command"))
  95.     ("time" . (nil "function"))
  96.     ("trace" . (nil "command and function"))
  97.     ("translate" . (nil "function"))
  98.     ("trunc" . (nil "function"))
  99.     ("value" . (nil "function"))
  100.     ("verify" . (nil "function"))
  101.     ("word" . (nil "function"))
  102.     ("wordindex" . ("WordIndex" "function"))
  103.     ("wordlength" . ("WordLength" "function"))
  104.     ("wordpos" . ("WordPos" "function"))
  105.     ("words" . (nil "function"))
  106.     ("x2b" . ("X2B" "function"))
  107.     ("x2c" . ("X2C" "function"))
  108.     ("x2d" . ("X2D" "function"))
  109.     ("xrange" . ("XRange" "function"))))
  110.  
  111.  
  112.  
  113. (setq rexx-external-function-table
  114.       '(
  115.     ("rxmessagebox" . ("RxMessageBox" "RexxUtil"))
  116.     ("syscls" . ("SysCls" "RexxUtil"))
  117.     ("syscreateobject" . ("SysCreateObject" "RexxUtil"))
  118.     ("syscurpos" . ("SysCurPos" "RexxUtil"))
  119.     ("syscurstate" . ("SysCurState" "RexxUtil"))
  120.     ("sysderegisterclass" . ("SysDeregisterClass" "RexxUtil"))
  121.     ("sysdestroyobject" . ("SysDestroyObject" "RexxUtil"))
  122.     ("sysdriveinfo" . ("SysDriveInfo" "RexxUtil"))
  123.     ("sysdrivemap" . ("SysDriveMap" "RexxUtil"))
  124.     ("sysdropfuncs" . ("SysDropFuncs" "RexxUtil"))
  125.     ("sysfiledelete" . ("SysFileDelete" "RexxUtil"))
  126.     ("sysfiletree" . ("SysFileTree" "RexxUtil"))
  127.     ("sysfilesearch" . ("SysFileSearch" "RexxUtil"))
  128.     ("sysgetea" . ("SysGetEA" "RexxUtil"))
  129.     ("sysgetkey" . ("SysGetKey" "RexxUtil"))
  130.     ("sysgetmessage" . ("SysGetMessage" "RexxUtil"))
  131.     ("sysini" . ("SysIni" "RexxUtil"))
  132.     ("sysmkdir" . ("SysMkDir" "RexxUtil"))
  133.     ("sysos2ver" . ("SysOS2Ver" "RexxUtil"))
  134.     ("sysputea" . ("SysPutEA" "RexxUtil"))
  135.     ("sysqueryclasslist" . ("SysQueryClassList" "RexxUtil"))
  136.     ("sysregisterobjectclass" . ("SysRegisterObjectClass" "RexxUtil"))
  137.     ("sysrmdir" . ("SysRmDir" "RexxUtil"))
  138.     ("syssearchpath" . ("SysSearchPath" "RexxUtil"))
  139.     ("sysseticon" . ("SysSetIcon" "RexxUtil"))
  140.     ("syssetobjectdata" . ("SysSetObjectData" "RexxUtil"))
  141.     ("syssleep" . ("SysSleep" "RexxUtil"))
  142.     ("systempfilename" . ("SysTempFileName" "RexxUtil"))
  143.     ("systextscreenread" . ("SysTextScreenRead" "RexxUtil"))
  144.     ("systextscreensize" . ("SysTextScreenSize" "RexxUtil"))
  145.     ("syswaitnamedpipe" . ("SysWaitNamedPipe" "RexxUtil"))))
  146.