From 7e334c95cb43c5d115c9ed1dc1c535f642a4c4b3 Mon Sep 17 00:00:00 2001
From: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sun, 6 Aug 2017 11:20:56 -0500
Subject: [PATCH] tweaks: harmonize some prototypes with their functions

Match three variable names in the prototypes
to the changd ones in their functions in utils.c.
---
 src/proto.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/proto.h b/src/proto.h
index d74ace67..6c36c4ac 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -601,9 +601,9 @@ char *mallocstrcpy(char *dest, const char *src);
 char *free_and_assign(char *dest, char *src);
 size_t get_page_start(size_t column);
 size_t xplustabs(void);
-size_t actual_x(const char *s, size_t column);
-size_t strnlenpt(const char *s, size_t maxlen);
-size_t strlenpt(const char *s);
+size_t actual_x(const char *text, size_t column);
+size_t strnlenpt(const char *text, size_t maxlen);
+size_t strlenpt(const char *text);
 void new_magicline(void);
 #if !defined(NANO_TINY) || defined(ENABLE_HELP)
 void remove_magicline(void);
-- 
GitLab