summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2018-10-08 22:37:21 +0200
committerpgen <p.gen.progs@gmail.com>2018-10-08 22:37:21 +0200
commitfdc9bbedae48ef73e040b2ad0bd4d637261346f9 (patch)
treec391968bad1f7726d0ac3b8f38a2bd067d1b0c1b
parent7ec39d7df253dd6f7dc92854e5582949dfa823a5 (diff)
Rename ptrlist.[ch] to list.[ch]
-rw-r--r--Makefile.am4
-rw-r--r--Makefile.in8
-rw-r--r--index.c2
-rw-r--r--list.c (renamed from ptrlist.c)2
-rw-r--r--list.h (renamed from ptrlist.h)0
-rw-r--r--smenu.c2
-rw-r--r--utils.c2
7 files changed, 10 insertions, 10 deletions
diff --git a/Makefile.am b/Makefile.am
index cebe16b..6f47d11 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
bin_PROGRAMS = smenu
-smenu_SOURCES = smenu.c smenu.h ptrlist.c ptrlist.h xmalloc.c xmalloc.h \
- index.c index.h utf8.c utf8.h fgetc.c fgetc.h \
+smenu_SOURCES = smenu.c smenu.h list.c list.h xmalloc.c xmalloc.h \
+ index.c index.h utf8.c utf8.h fgetc.c fgetc.h \
utils.c utils.h getopt.c getopt.h
dist_man_MANS = smenu.1
EXTRA_DIST = smenu.spec.in smenu.spec ChangeLog build.sh version \
diff --git a/Makefile.in b/Makefile.in
index 6e9b41d..c3b0403 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -102,7 +102,7 @@ CONFIG_CLEAN_FILES = smenu.spec
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"
PROGRAMS = $(bin_PROGRAMS)
-am_smenu_OBJECTS = smenu.$(OBJEXT) ptrlist.$(OBJEXT) xmalloc.$(OBJEXT) \
+am_smenu_OBJECTS = smenu.$(OBJEXT) list.$(OBJEXT) xmalloc.$(OBJEXT) \
index.$(OBJEXT) utf8.$(OBJEXT) fgetc.$(OBJEXT) utils.$(OBJEXT) \
getopt.$(OBJEXT)
smenu_OBJECTS = $(am_smenu_OBJECTS)
@@ -307,8 +307,8 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
-smenu_SOURCES = smenu.c smenu.h ptrlist.c ptrlist.h xmalloc.c xmalloc.h \
- index.c index.h utf8.c utf8.h fgetc.c fgetc.h \
+smenu_SOURCES = smenu.c smenu.h list.c list.h xmalloc.c xmalloc.h \
+ index.c index.h utf8.c utf8.h fgetc.c fgetc.h \
utils.c utils.h getopt.c getopt.h
dist_man_MANS = smenu.1
@@ -427,7 +427,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fgetc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/index.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptrlist.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/smenu.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utf8.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@
diff --git a/index.c b/index.c
index e021b29..b1e69d6 100644
--- a/index.c
+++ b/index.c
@@ -9,7 +9,7 @@
#include <string.h>
#include "xmalloc.h"
-#include "ptrlist.h"
+#include "list.h"
#include "index.h"
/* List of matching words matching the current search */
diff --git a/ptrlist.c b/list.c
index ec0eabf..6f0996f 100644
--- a/ptrlist.c
+++ b/list.c
@@ -6,7 +6,7 @@
#include <errno.h>
#include "xmalloc.h"
-#include "ptrlist.h"
+#include "list.h"
/* ********************************************************************* */
/* Tiny list immplementation. */
diff --git a/ptrlist.h b/list.h
index 76c7b40..76c7b40 100644
--- a/ptrlist.h
+++ b/list.h
diff --git a/smenu.c b/smenu.c
index 516e141..76dc443 100644
--- a/smenu.c
+++ b/smenu.c
@@ -39,7 +39,7 @@
#include <wchar.h>
#include "xmalloc.h"
-#include "ptrlist.h"
+#include "list.h"
#include "index.h"
#include "utf8.h"
#include "fgetc.h"
diff --git a/utils.c b/utils.c
index e595593..c854821 100644
--- a/utils.c
+++ b/utils.c
@@ -4,7 +4,7 @@
#include <ctype.h>
#include <stdarg.h>
#include "xmalloc.h"
-#include "ptrlist.h"
+#include "list.h"
#include "utils.h"
/* ****************** */