aboutsummaryrefslogtreecommitdiff
path: root/src/interp/msgdb.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/msgdb.boot')
-rw-r--r--src/interp/msgdb.boot10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interp/msgdb.boot b/src/interp/msgdb.boot
index 6623cb5b..9f11e30e 100644
--- a/src/interp/msgdb.boot
+++ b/src/interp/msgdb.boot
@@ -326,11 +326,11 @@ throwPatternMsg(key,args) ==
spadThrow()
sayKeyedMsgAsTeX(key, args) ==
- $texFormatting: fluid := true
+ $texFormatting: local := true
sayKeyedMsgLocal(key, args)
sayKeyedMsg(key,args) ==
- $texFormatting: fluid := false
+ $texFormatting: local := false
sayKeyedMsgLocal(key, args)
sayKeyedMsgLocal(key, args) ==
@@ -395,15 +395,15 @@ systemErrorHere what ==
keyedSystemError("S2GE0017",[what])
isKeyedMsgInDb(key,dbName) ==
- $msgDatabaseName : fluid := pathname dbName
+ $msgDatabaseName : local := pathname dbName
fetchKeyedMsg(key,true)
getKeyedMsgInDb(key,dbName) ==
- $msgDatabaseName : fluid := pathname dbName
+ $msgDatabaseName : local := pathname dbName
fetchKeyedMsg(key,false)
sayKeyedMsgFromDb(key,args,dbName) ==
- $msgDatabaseName : fluid := pathname dbName
+ $msgDatabaseName : local := pathname dbName
msg := segmentKeyedMsg getKeyedMsg key
msg := substituteSegmentedMsg(msg,args)
if $displayMsgNumber then msg := ['"%b",key,":",'"%d",:msg]