Make cspace()'s second argument const. Make `escapes' in lputs() const.

This commit is contained in:
Tim J. Robbins 2002-07-08 06:00:55 +00:00
parent 05018c64fd
commit dfb072f405
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=99573
2 changed files with 4 additions and 3 deletions

View File

@ -50,7 +50,7 @@ extern int rflags; /* regex flags to use */
void cfclose(struct s_command *, struct s_command *);
void compile(void);
void cspace(SPACE *, char *, size_t, enum e_spflag);
void cspace(SPACE *, const char *, size_t, enum e_spflag);
char *cu_fgets(char *, int, int *);
int mf_fgets(SPACE *, enum e_spflag);
int lastline(void);

View File

@ -471,7 +471,8 @@ lputs(s)
char *s;
{
int count;
char *escapes, *p;
const char *escapes;
char *p;
struct winsize win;
static int termwidth = -1;
@ -601,7 +602,7 @@ regsub(sp, string, src)
void
cspace(sp, p, len, spflag)
SPACE *sp;
char *p;
const char *p;
size_t len;
enum e_spflag spflag;
{