Commit 5c25cf1940444a18d083bb5746a6388274b7bb79
1 parent
5816c74c
Exists in
master
removed stops
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
src/idl/dustem_init_params.pro
... | ... | @@ -154,7 +154,7 @@ end else begin |
154 | 154 | test_model = where(pol_mdls eq model,ct) |
155 | 155 | if ct eq 1 then begin |
156 | 156 | message,'You have requested a dust model with polarisation '+model+' but DustEMWrap is not initialized in polarisation mode',/info |
157 | - message,'You should set >dustem_init,model=use_model,polarization=1',/info | |
157 | + message,'You should set dustem_init,model=use_model,polarization=1',/info | |
158 | 158 | stop |
159 | 159 | end |
160 | 160 | end | ... | ... |
src/idl/dustem_init_parinfo.pro
... | ... | @@ -34,7 +34,7 @@ IF keyword_set(up_limited) THEN BEGIN |
34 | 34 | ind=where(up_limited EQ 1,countup) |
35 | 35 | IF countup EQ 0 THEN goto,suite1 |
36 | 36 | IF NOT keyword_set(up_limits) THEN BEGIN |
37 | - message,'up_limits must be set with up_limited' | |
37 | + message,'upper limits must be provided with up_limited',/info | |
38 | 38 | stop |
39 | 39 | ENDIF |
40 | 40 | IF countup NE 0 THEN BEGIN |
... | ... | @@ -49,7 +49,7 @@ IF keyword_set(lo_limited) THEN BEGIN |
49 | 49 | ind=where(lo_limited EQ 1,countlo) |
50 | 50 | IF countlo EQ 0 THEN goto,suite2 |
51 | 51 | IF NOT keyword_set(lo_limits) THEN BEGIN |
52 | - message,'lo_limits must be set with lo_limited', /continue | |
52 | + message,'lower limits must be provided with lo_limited', /info | |
53 | 53 | stop |
54 | 54 | ENDIF |
55 | 55 | IF countlo NE 0 THEN BEGIN | ... | ... |