Ignore:
Timestamp:
03/27/07 15:43:18 (17 years ago)
Author:
pinsard
Message:

improvements/corrections of some *.pro headers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ForOldVersion/updatekwd.pro

    r231 r238  
    77; @categories compatibility with previous version 
    88; 
    9 ; @examples  
     9; @examples 
    1010; IDL> \@updatekwd 
    11 ;   (must be insert as an include in a procedure or function)  
     11;   (must be insert as an include in a procedure or function) 
    1212; 
    1313; @restrictions the compatibility can be made only if the keyword 
    1414;               given through _extra are given with their complete name 
    1515; 
    16 ; @history Sebastien Masson (smasson\@lodyc.jussieu.fr) 
     16; @history 
     17; Sebastien Masson (smasson\@lodyc.jussieu.fr) 
    1718;                      July 2005 
    18 ; @version $Id$ 
     19; @version 
     20; $Id$ 
    1921; 
    2022;- 
     
    4143  old = strtrim(strlowcase(old[1:*]), 2) 
    4244  new = strtrim(strlowcase(new[1:*]), 2) 
    43 ;   
     45; 
    4446; what are the keywords of the present routine? 
    4547; 
     
    6466    FOR i = 0, n_elements(alltags)-1 DO BEGIN 
    6567      isold = (where(old EQ alltags[i], count))[0] 
    66       IF count EQ 1 THEN BEGIN  
     68      IF count EQ 1 THEN BEGIN 
    6769        dummy = where(kwds EQ new[isold], count) 
    68         IF count EQ 1 THEN BEGIN  
     70        IF count EQ 1 THEN BEGIN 
    6971          dummy = execute(new[isold] + ' = ex.' + alltags[i]) 
    7072;           dummy = execute('ex = get_extra(' + new[isold] + ' = ex.' $ 
Note: See TracChangeset for help on using the changeset viewer.