aboutsummaryrefslogtreecommitdiff
path: root/src/interp/br-util.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-04-17 18:27:08 +0000
committerdos-reis <gdr@axiomatics.org>2011-04-17 18:27:08 +0000
commit0de5ea3df4ffff2d97202a66629e19e0579410ea (patch)
tree211b1d1d466c64aac746e9c377acf34adfb1c18b /src/interp/br-util.boot
parent1642c3f8ce94264813f4d7ac79f24f16f5fb7ded (diff)
downloadopen-axiom-0de5ea3df4ffff2d97202a66629e19e0579410ea.tar.gz
cleanup
Diffstat (limited to 'src/interp/br-util.boot')
-rw-r--r--src/interp/br-util.boot20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/interp/br-util.boot b/src/interp/br-util.boot
index 5c8a5a15..960d0181 100644
--- a/src/interp/br-util.boot
+++ b/src/interp/br-util.boot
@@ -52,7 +52,7 @@ browserAutoloadOnceTrigger() == nil
----------------------> Global Variables <-----------------------
$includeUnexposed? := true --default setting
-$tick := char '_` --field separator for database files
+$tick := char "`" --field separator for database files
$charUnderscore := ('__) --needed because of parser bug
$wild1 := '"[^`]*" --phrase used to convert keys to grep strings
$browseCountThreshold := 10 --the maximum number of names that will display
@@ -75,11 +75,11 @@ $docTableHash := hashTable 'EQUAL --see dbExpandOpAlistIfNecessary
$groupChoice := nil --see dbShowOperationsFromConform
------------------> Initial Settings <---------------------
-$pmFilterDelimiters := [char '_(,char '_),char '_ ]
+$pmFilterDelimiters := [char "(",char ")",char " "]
$dbKindAlist :=
- [[char 'a,:'"attribute"],[char 'o,:'"operation"],
- [char 'd,:'"domain"],[char 'p,:'"package"],
- [char 'c,:'"category"],[char 'x,:'"default_ package"]]
+ [[char "a",:'"attribute"],[char "o",:'"operation"],
+ [char "d",:'"domain"],[char "p",:'"package"],
+ [char "c",:'"category"],[char "x",:'"default_ package"]]
$OpViewTable := '(
(names "Name" "Names" dbShowOpNames)
(documentation "Name" "Names" dbShowOpDocumentation)
@@ -348,7 +348,7 @@ bcStarSpaceOp(op,exposed?) ==
null $includeUnexposed? => nil
not exposed? =>
htSayUnexposed()
- if op.0 = char '_* then htSay '" "
+ if op.0 = char "*" then htSay '" "
htBlank()
bcStarConform form ==
@@ -371,7 +371,7 @@ asharpConstructors() ==
extractFileNameFromPath s == fn(s,0,#s) where
fn(s,i,m) ==
- k := charPosition(char '_/,s,i)
+ k := charPosition(char "/",s,i)
k = m => subString(s,i)
fn(s,k + 1,m)
@@ -604,7 +604,7 @@ dbNotAvailablePage(:options) ==
--=======================================================================
-- Utility Functions for Manipulating Browse Datalines
--=======================================================================
-dbpHasDefaultCategory? s == #s > 1 and s.1 = char 'x --s is part 3 of line
+dbpHasDefaultCategory? s == #s > 1 and s.1 = char "x" --s is part 3 of line
dbKind line == line.0
@@ -632,9 +632,9 @@ dbConname(line) == dbPart(line,5,1)
dbComments line == dbReadComments(string2Integer dbPart(line,7,1))
dbNewConname(line) == --dbName line unless kind is 'a or 'o => name in 5th pos.
- (kind := line.0) = char 'a or kind = char 'o =>
+ (kind := line.0) = char "a" or kind = char "o" =>
conform := dbPart(line,5,1)
- k := charPosition(char '_(,conform,1)
+ k := charPosition(char "(",conform,1)
subString(conform,1,k - 1)
dbName line