diff options
Diffstat (limited to 'src/ring.cpp')
-rw-r--r-- | src/ring.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ring.cpp b/src/ring.cpp index 702807d..077c58d 100644 --- a/src/ring.cpp +++ b/src/ring.cpp @@ -320,7 +320,10 @@ StateEditFile::do_edit(tecoInt id) * <file> may also be a glob pattern, in which case * all regular files matching the pattern are opened/edited. * Globbing is performed exactly the same as the - * EN command does. + * \fBEN\fP command does. + * Also refer to the section called + * .B Glob Patterns + * for more details. * * File names of buffers in the ring are normalized * by making them absolute. @@ -379,7 +382,7 @@ StateEditFile::got_file(const gchar *filename) return &States::start; } - if (is_glob_pattern(filename)) { + if (Globber::is_pattern(filename)) { Globber globber(filename, G_FILE_TEST_IS_REGULAR); gchar *globbed_filename; |