summaryrefslogtreecommitdiff
path: root/libltdl/slist.c
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2012-10-21 23:41:07 +0700
committerGary V. Vaughan <gary@gnu.org>2012-10-22 00:01:13 +0700
commitd98a30fbcebc1ea9818a0bdf5686305eb4388e10 (patch)
tree26b2ea2476ba02915f0f05789d8c9e44d84db2c3 /libltdl/slist.c
parent67759e9fb7858a4717825322324dfafd99248194 (diff)
downloadlibtool-d98a30fbcebc1ea9818a0bdf5686305eb4388e10.tar.gz
syntax-check: fix violations and implement sc_old_style_quoting.
Modern GNU ASCII quoting in output and comments is done 'like this'. * cfg.mk (sc_old_style_quoting): Try to catch most instances of `old style quoting' so that it is not accidentally re- introduced to the code. * HACKING, Makefile.am, NEWS, PORTING, README, TODO, bootstrap, bootstrap.conf, build-aux/edit-readme-alpha, build-aux/git-hooks/commit-msg, build-aux/ltmain.in, doc/libtool.texi, gl/build-aux/bootstrap.in, gl/build-aux/extract-trace, gl/build-aux/funclib.sh, gl/build-aux/inline-source, gl/build-aux/options-parser, libltdl/libltdl/slist.h, libltdl/loaders/loadlibrary.c, libltdl/ltdl.c, libltdl/slist.c, libtoolize.in, m4/argz.m4, m4/libtool.m4, m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, tests/cmdline_wrap.at, tests/configure-iface.at, tests/demo.at, tests/depdemo.at, tests/deplib-in-subdir.at, tests/deplibs-mingw.at, tests/destdir.at, tests/execute-mode.at, tests/f77demo.at, tests/fail.at, tests/inherited_flags.at, tests/libtool.at, tests/libtoolize.at, tests/lt_dladvise.at, tests/lt_dlexit.at, tests/mdemo.at, tests/need_lib_prefix.at, tests/old-ltdl-iface.at, tests/old-m4-iface.at, tests/static.at, tests/stresstest.at, tests/testsuite.at, tests/versioning.at: Convert to upright quotes. Signed-off-by: Gary V. Vaughan <gary@gnu.org>
Diffstat (limited to 'libltdl/slist.c')
-rw-r--r--libltdl/slist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libltdl/slist.c b/libltdl/slist.c
index 5c5f87a4..aa90861a 100644
--- a/libltdl/slist.c
+++ b/libltdl/slist.c
@@ -345,7 +345,7 @@ slist_sort (SList *slist, SListCompare *compare, void *userdata)
used for the boxes. It us usually a very bad idea to mix boxed and
non-boxed items in a single list. */
-/* Return a `boxed' freshly mallocated 1 element list containing
+/* Return a 'boxed' freshly mallocated 1 element list containing
USERDATA. */
SList *
slist_box (const void *userdata)
@@ -361,7 +361,7 @@ slist_box (const void *userdata)
return item;
}
-/* Return the contents of a `boxed' ITEM, recycling the box itself. */
+/* Return the contents of a 'boxed' ITEM, recycling the box itself. */
void *
slist_unbox (SList *item)
{