Skip to content

Commit 65b8997

Browse files
committed
chore: make .igraph.progress() and .igraph.status() more internal
1 parent 7e2c5fe commit 65b8997

6 files changed

Lines changed: 34 additions & 15 deletions

File tree

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
^\.aviator/config\.yml$
5151
^src/vendor/cigraph/CITATION\.cff$
5252
^R/revdep\.R$
53+
^man/dot-igraph.progress\.Rd$
54+
^man/dot-igraph.status\.Rd$
5355
^man/dot-extract_constructor_and_modifiers\.Rd$
5456
^man/dot-apply_modifiers\.Rd$
5557
^man/handle_vertex_type_arg\.Rd$

NAMESPACE

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ export("vertex_attr<-")
104104
export(.data)
105105
export(.env)
106106
export(.from)
107-
export(.igraph.progress)
108-
export(.igraph.status)
109107
export(.inc)
110108
export(.innei)
111109
export(.nei)

R/console.R

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ console <- function() {
6868

6969
.igraph.pb <- NULL
7070

71-
#' @rdname console
71+
#' igraph progress
7272
#' @param percent,message,clean Used internally by `.igraph.progress()` and `.igraph.status()`
73-
#' @export
73+
#' @dev
7474
.igraph.progress <- function(percent, message, clean = FALSE) {
7575
if (clean) {
7676
if (!is.null(.igraph.pb)) {
@@ -90,8 +90,9 @@ console <- function() {
9090
}
9191
}
9292

93-
#' @rdname console
94-
#' @export
93+
#' igraph status
94+
#' @inheritParams .igraph.progress
95+
#' @dev
9596
.igraph.status <- function(message) {
9697
type <- igraph_opt("verbose")
9798
if (is.logical(type) && type) {

man/console.Rd

Lines changed: 0 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/dot-igraph.progress.Rd

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/dot-igraph.status.Rd

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)