Skip to content

Commit

Permalink
CHANGE: removed mention of boot in boot-print and loud-print doc-…
Browse files Browse the repository at this point in the history
…strings (these can be use also after boot)

related to: Oldes/Rebol-issues#1920
  • Loading branch information
Oldes committed Nov 27, 2020
1 parent 69752c2 commit 6ba777e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mezz/base-debug.reb
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ probe: func [
]

boot-print: func [
"Prints during boot when not quiet."
"Prints when not quiet."
data
][
unless system/options/quiet [print :data]
]

loud-print: func [
"Prints during boot when verbose."
"Prints when verbose."
data
][
if system/options/flags/verbose [print :data]
Expand Down

0 comments on commit 6ba777e

Please sign in to comment.