Commit 7e334c95 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey Committed by Benno Schulenberg
Browse files

tweaks: harmonize some prototypes with their functions

Match three variable names in the prototypes
to the changd ones in their functions in utils.c.
parent 11072ed5
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
...@@ -601,9 +601,9 @@ char *mallocstrcpy(char *dest, const char *src); ...@@ -601,9 +601,9 @@ char *mallocstrcpy(char *dest, const char *src);
char *free_and_assign(char *dest, char *src); char *free_and_assign(char *dest, char *src);
size_t get_page_start(size_t column); size_t get_page_start(size_t column);
size_t xplustabs(void); size_t xplustabs(void);
size_t actual_x(const char *s, size_t column); size_t actual_x(const char *text, size_t column);
size_t strnlenpt(const char *s, size_t maxlen); size_t strnlenpt(const char *text, size_t maxlen);
size_t strlenpt(const char *s); size_t strlenpt(const char *text);
void new_magicline(void); void new_magicline(void);
#if !defined(NANO_TINY) || defined(ENABLE_HELP) #if !defined(NANO_TINY) || defined(ENABLE_HELP)
void remove_magicline(void); void remove_magicline(void);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment