From 23c2b99e9d23e726ede9442728272616e66d416f Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 4 Mar 2012 00:24:20 +0000 Subject: Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines. Fixes Savannah bug #34530. --- vpath.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'vpath.c') diff --git a/vpath.c b/vpath.c index 4e515b7..f541d6a 100644 --- a/vpath.c +++ b/vpath.c @@ -30,7 +30,7 @@ struct vpath { struct vpath *next; /* Pointer to next struct in the linked list. */ const char *pattern;/* The pattern to match. */ - const char *percent;/* Pointer into `pattern' where the `%' is. */ + const char *percent;/* Pointer into 'pattern' where the '%' is. */ unsigned int patlen;/* Length of the pattern. */ const char **searchpath; /* Null-terminated list of directories. */ unsigned int maxlen;/* Maximum length of any entry in the list. */ @@ -90,7 +90,7 @@ build_vpath_lists () struct vpath *save_vpaths = vpaths; char gp[] = "%"; - /* Empty `vpaths' so the new one will have no next, and `vpaths' + /* Empty 'vpaths' so the new one will have no next, and 'vpaths' will still be nil if P contains no existing directories. */ vpaths = 0; @@ -123,7 +123,7 @@ build_vpath_lists () struct vpath *save_vpaths = vpaths; char gp[] = "%"; - /* Empty `vpaths' so the new one will have no next, and `vpaths' + /* Empty 'vpaths' so the new one will have no next, and 'vpaths' will still be nil if P contains no existing directories. */ vpaths = 0; @@ -600,18 +600,18 @@ print_vpath_data_base (void) } if (vpaths == 0) - puts (_("# No `vpath' search paths.")); + puts (_("# No 'vpath' search paths.")); else - printf (_("\n# %u `vpath' search paths.\n"), nvpaths); + printf (_("\n# %u 'vpath' search paths.\n"), nvpaths); if (general_vpath == 0) - puts (_("\n# No general (`VPATH' variable) search path.")); + puts (_("\n# No general ('VPATH' variable) search path.")); else { const char **path = general_vpath->searchpath; unsigned int i; - fputs (_("\n# General (`VPATH' variable) search path:\n# "), stdout); + fputs (_("\n# General ('VPATH' variable) search path:\n# "), stdout); for (i = 0; path[i] != 0; ++i) printf ("%s%c", path[i], -- cgit v1.2.3