Skip to content

Commit 77e5d90

Browse files
committed
Qualify read.table calls
Closes #133.
1 parent f12019c commit 77e5d90

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
# development version
33

4+
* crayon now does not fail to install from source if the utils package
5+
is not loaded (#133).
6+
47
# 1.5.0
58

69
* You can use the new `cli.default_num_colors` option to set the default

R/ansi-palette.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ truecolor <- as.integer(256 ^ 3)
8989
#' ansi_palette_show("dichro", colors = truecolor)
9090

9191
ansi_palettes <- rbind(
92-
read.table(
92+
utils::read.table(
9393
"tools/ansi-palettes.txt",
9494
comment = ";",
9595
stringsAsFactors = FALSE
9696
),
97-
read.table(
97+
utils::read.table(
9898
"tools/ansi-iterm-palettes.txt",
9999
comment = ";",
100100
stringsAsFactors = FALSE

0 commit comments

Comments
 (0)