Skip to content

Commit

Permalink
Release 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
n-t-roff committed Jul 5, 2016
1 parent 254131f commit 34c196f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ex.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ var int exitoneof; /* exit command loop on EOF */
#define FIXUNDO (inopen >= 0 && (inopen || !inglobal))
#define ckaw() {if (chng && value(AUTOWRITE)) wop(0);}
#define copy(a,b,c) Copy((char *) (a), (char *) (b), (c))
#define eq(a, b) ((a) != NULL && (b) != NULL && strcmp(a, b) == 0)
#define eq(a, b) ((void *)(a) != NULL && (void *)(b) != NULL && strcmp(a, b) == 0)
#define getexit(a) copy(a, resetlab, sizeof (JMP_BUF))
#define lastchar() lastc
#define outchar(c) (*Outchar)(c)
Expand Down
3 changes: 2 additions & 1 deletion ex_cmdsub.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,8 @@ tagfind(bool quick)
* Loop once for each file in tags "path".
*/
safecp(tagfbuf, svalue(TAGS), sizeof tagfbuf, "Tag too long");
fne = tagfbuf - 1;
fne = tagfbuf;
fne--;
#ifdef FASTTAG
ft_iofbuf = smalloc(MAXBSIZE);
#endif
Expand Down
4 changes: 3 additions & 1 deletion ex_put.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,14 +1188,16 @@ ttcharoff(void)
#ifdef VSTATUS
tty.c_cc[VSTATUS] = vdis;
#endif
# ifdef VSTART
/*
* The following is sample code if USG ever lets people change
* their start/stop chars. As long as they can't we can't get
* into trouble so we just leave them alone.
*/
# ifdef VSTART
if (tty.c_cc[VSTART] != CTRL('q'))
tty.c_cc[VSTART] = vdis;
# endif
# ifdef VSTOP
if (tty.c_cc[VSTOP] != CTRL('s'))
tty.c_cc[VSTOP] = vdis;
# endif
Expand Down
2 changes: 1 addition & 1 deletion ex_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@

#include "ex.h"

static char *versionstring = "@(#)Version 4.1.0 (gritter) 6/24/16";
static char *versionstring = "@(#)Version 4.1.1 (gritter) 7/5/16";

void
printver(void)
Expand Down

0 comments on commit 34c196f

Please sign in to comment.