Skip to content

Commit abd8417

Browse files
Hello71gauteh
authored andcommitted
em: is_regular -> is_regular_file
they are the same, but is_regular_file is standard so boost removed is_regular
1 parent 0bfdee6 commit abd8417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modes/edit_message.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ namespace Astroid {
12901290
for (string &fname : fnames) {
12911291
path p (fname.c_str());
12921292

1293-
if (!is_regular (p)) {
1293+
if (!is_regular_file (p)) {
12941294
LOG (error) << "em: attach: file is not regular: " << p.c_str();
12951295
} else {
12961296
LOG (info) << "em: attaching file: " << p.c_str();

0 commit comments

Comments
 (0)