summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-11-06 21:58:19 +0000
committerJim Meyering <jim@meyering.net>1999-11-06 21:58:19 +0000
commit44dbec6a604522b369d595002313986f80b24416 (patch)
tree147bf7ac38987ef685f7a47379a83dcdb697ef73 /m4
parent0d3ddaa85ca4517b4876074ed813f6143215a0e5 (diff)
downloadcoreutils-44dbec6a604522b369d595002313986f80b24416.tar.xz
remove backticks from comments
Diffstat (limited to 'm4')
-rw-r--r--m4/link-follow.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/link-follow.m4 b/m4/link-follow.m4
index a57ab88a6..18b6bff0d 100644
--- a/m4/link-follow.m4
+++ b/m4/link-follow.m4
@@ -7,7 +7,7 @@ AC_DEFUN(jm_AC_FUNC_LINK_FOLLOWS_SYMLINK,
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 @@ AC_DEFUN(jm_AC_FUNC_LINK_FOLLOWS_SYMLINK,
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 ();