Skip to content

Commit a36889c

Browse files
committed
Merge branch 'kaoriya'
Conflicts: src/eval.c src/proto/job.pro
2 parents d933d72 + 2c0a37e commit a36889c

25 files changed

+36
-1156
lines changed

src/Make_mvc.mak

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,6 @@ OBJ = \
558558
$(OUTDIR)\getchar.obj \
559559
$(OUTDIR)\hardcopy.obj \
560560
$(OUTDIR)\hashtab.obj \
561-
$(OUTDIR)\job.obj \
562561
$(OUTDIR)\main.obj \
563562
$(OUTDIR)\mark.obj \
564563
$(OUTDIR)\mbyte.obj \
@@ -1125,8 +1124,6 @@ $(OUTDIR)/hardcopy.obj: $(OUTDIR) hardcopy.c $(INCL)
11251124

11261125
$(OUTDIR)/hashtab.obj: $(OUTDIR) hashtab.c $(INCL)
11271126

1128-
$(OUTDIR)/job.obj: $(OUTDIR) job.c $(INCL)
1129-
11301127
$(OUTDIR)/gui.obj: $(OUTDIR) gui.c $(INCL) $(GUI_INCL)
11311128

11321129
$(OUTDIR)/gui_beval.obj: $(OUTDIR) gui_beval.c $(INCL) $(GUI_INCL)
@@ -1298,7 +1295,6 @@ proto.h: \
12981295
proto/getchar.pro \
12991296
proto/hardcopy.pro \
13001297
proto/hashtab.pro \
1301-
proto/job.pro \
13021298
proto/main.pro \
13031299
proto/mark.pro \
13041300
proto/memfile.pro \

src/buffer.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,6 @@ buf_clear_file(buf)
568568
#endif
569569
buf->b_p_eol = TRUE;
570570
buf->b_start_eol = TRUE;
571-
buf->b_p_lasteol = TRUE;
572-
buf->b_start_lasteol = TRUE;
573571
#ifdef FEAT_MBYTE
574572
buf->b_p_bomb = FALSE;
575573
buf->b_start_bomb = FALSE;
@@ -722,9 +720,6 @@ free_buffer_stuff(buf, free_options)
722720
ga_clear(&buf->b_s.b_langp);
723721
#endif
724722
}
725-
#ifdef FEAT_EVAL
726-
emarklist_cleanup(&buf->b_emarklist);
727-
#endif
728723
#ifdef FEAT_EVAL
729724
vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
730725
hash_init(&buf->b_vars->dv_hashtab);
@@ -2675,9 +2670,6 @@ get_winopts(buf)
26752670
if (p_fdls >= 0)
26762671
curwin->w_p_fdl = p_fdls;
26772672
#endif
2678-
#ifdef FEAT_EVAL
2679-
emarklist_init(&buf->b_emarklist);
2680-
#endif
26812673
#ifdef FEAT_SYN_HL
26822674
check_colorcolumn(curwin);
26832675
#endif

0 commit comments

Comments
 (0)