# HG changeset patch # User Jim Meyering # Date 941925499 0 # Node ID 60c54054ec2d3a2ecd3915ee83c1a9446afab3e9 # Parent a5fdde5c40b1bb8d30caf1278e9c9fc886859ba3 remove backticks from comments diff --git a/m4/link-follow.m4 b/m4/link-follow.m4 --- a/m4/link-follow.m4 +++ b/m4/link-follow.m4 @@ -7,7 +7,7 @@ AC_CACHE_CHECK([whether link(2) follows symlinks], jm_ac_cv_func_link_follows_symlink, [ - # Create a regular file, `conftest.file'. + # Create a regular file. echo > conftest.file AC_TRY_RUN( [ @@ -29,11 +29,11 @@ const char *hard = "conftest.hard"; struct stat sb_file, sb_hard; - /* Create a symlink `conftest.sym' to it. */ + /* Create a symlink to the regular file. */ if (symlink (file, sym)) abort (); - /* Create a hard link `conftest.hard' to that symlink. */ + /* Create a hard link to that symlink. */ if (link (sym, hard)) abort ();