Changeset 327 for trunk/SRC/Utilities


Ignore:
Timestamp:
12/13/07 17:22:35 (17 years ago)
Author:
pinsard
Message:

modification of headers : mainly blanks around = sign for keywords in declaration of function and pro

Location:
trunk/SRC/Utilities
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Utilities/createfunc.pro

    r325 r327  
    1616; function definition.  
    1717; Warning: the string must start with a ','  
    18 ; for example: KWDLIST = ', TOTO = toto' 
     18; for example: KWDLIST=', TOTO=toto' 
    1919; 
    2020; @keyword _EXTRA  
     
    3838; 
    3939;- 
    40 FUNCTION createfunc, command, FILENAMEIN = filenamein $ 
    41                , KWDLIST = kwdlist, _EXTRA = ex 
     40FUNCTION createfunc, command, FILENAMEIN=filenamein $ 
     41               , KWDLIST=kwdlist, _EXTRA=ex 
    4242; 
    4343  compile_opt idl2, hidden, strictarrsubs 
  • trunk/SRC/Utilities/createpro.pro

    r325 r327  
    1515; definition.  
    1616; Warning: the string must start with a ','  
    17 ; for example: KWDLIST = ', TOTO = toto' 
     17; for example: KWDLIST=', TOTO = toto' 
    1818; 
    1919; @keyword KWDUSED  
     
    4444; 
    4545;- 
    46 PRO createpro, command, FILENAMEIN = filenamein $ 
    47                , KWDLIST = kwdlist, KWDUSED = kwdused, _EXTRA = ex 
     46PRO createpro, command, FILENAMEIN=filenamein $ 
     47             , KWDLIST=kwdlist, KWDUSED=kwdused, _EXTRA=ex 
    4848; 
    4949  compile_opt idl2, hidden, strictarrsubs 
  • trunk/SRC/Utilities/find.pro

    r325 r327  
    107107; 
    108108;- 
    109 FUNCTION find, filein, IODIRECTORY = iodirectory, RECURSIVE = recursive $ 
    110                , REPERTOIRE = repertoire, NOPRO = nopro, ONLYPRO = onlypro $ 
    111                , ONLYNC = onlync, UNIQUE = unique, FIRSTFOUND = firstfound $ 
    112                , LOOKALLDIR = LOOKALLDIR, TRYFIND = tryfind, _EXTRA = ex 
     109FUNCTION find, filein, IODIRECTORY=iodirectory, RECURSIVE=recursive $ 
     110             , REPERTOIRE=repertoire, NOPRO=nopro, ONLYPRO=onlypro $ 
     111             , ONLYNC=onlync, UNIQUE=unique, FIRSTFOUND=firstfound $ 
     112             , LOOKALLDIR=LOOKALLDIR, TRYFIND=tryfind, _EXTRA=ex 
    113113; 
    114114  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/fitintobox.pro

    r325 r327  
    120120;- 
    121121FUNCTION fitintobox, field, nx, ny, nz, firstx, firsty $ 
    122                      , firstz, lastx, lasty, lastz, WDEPTH = wdepth 
     122                   , firstz, lastx, lasty, lastz, WDEPTH=wdepth 
    123123; 
    124124  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/isadirectory.pro

    r325 r327  
    4242; 
    4343;- 
    44 FUNCTION isadirectory, directoryin, TITLE = title, IODIRECTORY = iodirectory, _EXTRA = ex 
     44FUNCTION isadirectory, directoryin, TITLE=title, IODIRECTORY=iodirectory $ 
     45                     , _EXTRA=ex 
    4546; 
    4647  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/isafile.pro

    r325 r327  
    6666; 
    6767;- 
    68 FUNCTION isafile, filein, FILENAME = filename, IODIRECTORY = iodirectory $ 
    69                   , NEW = new, RECURSIVE = RECURSIVE, ONLYPRO = onlypro $ 
    70                   , ONLYNC = onlync, _EXTRA = ex 
     68FUNCTION isafile, filein, FILENAME=filename, IODIRECTORY=iodirectory $ 
     69                , NEW=new, RECURSIVE=RECURSIVE, ONLYPRO=onlypro $ 
     70                , ONLYNC=onlync, _EXTRA=ex 
    7171; 
    7272  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/lineintersection.pro

    r325 r327  
    5454; 
    5555;- 
    56 FUNCTION lineintersection, abc1, abc2, FLOAT = float 
     56FUNCTION lineintersection, abc1, abc2, FLOAT=float 
    5757; 
    5858  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/report.pro

    r325 r327  
    6060; 
    6161;- 
    62 FUNCTION report, textin, DEFAULT_NO = default_no, PARENT = parent $ 
    63                , QUESTION = question, SIMPLE = simple, _EXTRA = ex 
     62FUNCTION report, textin, DEFAULT_NO=default_no, PARENT=parent $ 
     63               , QUESTION=question, SIMPLE=simple, _EXTRA=ex 
    6464; 
    6565  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/testvar.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION testvar, VAR = var 
     30FUNCTION testvar, VAR=var 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/text_box.pro

    r325 r327  
    5050; 
    5151;- 
    52 PRO text_box, text, POS=pos, FG_COLOR=fg_color, BG_COLOR=bg_color,$ 
    53                CENTER=center, RIGHT=right, BOX=box, VERT_SPACE=vert_space, _EXTRA = ex 
     52PRO text_box, text, POS=pos, FG_COLOR=fg_color, BG_COLOR=bg_color $ 
     53            , CENTER=center, RIGHT=right, BOX=box, VERT_SPACE=vert_space $ 
     54            , _EXTRA=ex 
    5455; 
    5556  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/xfile.pro

    r325 r327  
    3434; 
    3535;- 
    36 PRO xfile, filename, _EXTRA = ex 
     36PRO xfile, filename, _EXTRA=ex 
    3737; 
    3838  compile_opt idl2, strictarrsubs 
  • trunk/SRC/Utilities/xhelp.pro

    r325 r327  
    4141  compile_opt idl2, strictarrsubs 
    4242; 
    43   usage="xhelp, filename, _EXTRA = ex" 
     43  usage="xhelp, filename, _EXTRA=ex" 
    4444; 
    4545; check parameters 
Note: See TracChangeset for help on using the changeset viewer.