Skip to content

Commit 2c0a37e

Browse files
committed
Revert +experiments +obsoletes patches
1 parent e2f5728 commit 2c0a37e

26 files changed

+36
-1152
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
@@ -564,8 +564,6 @@ buf_clear_file(buf)
564564
#endif
565565
buf->b_p_eol = TRUE;
566566
buf->b_start_eol = TRUE;
567-
buf->b_p_lasteol = TRUE;
568-
buf->b_start_lasteol = TRUE;
569567
#ifdef FEAT_MBYTE
570568
buf->b_p_bomb = FALSE;
571569
buf->b_start_bomb = FALSE;
@@ -718,9 +716,6 @@ free_buffer_stuff(buf, free_options)
718716
ga_clear(&buf->b_s.b_langp);
719717
#endif
720718
}
721-
#ifdef FEAT_EVAL
722-
emarklist_cleanup(&buf->b_emarklist);
723-
#endif
724719
#ifdef FEAT_EVAL
725720
vars_clear(&buf->b_vars->dv_hashtab); /* free all internal variables */
726721
hash_init(&buf->b_vars->dv_hashtab);
@@ -2671,9 +2666,6 @@ get_winopts(buf)
26712666
if (p_fdls >= 0)
26722667
curwin->w_p_fdl = p_fdls;
26732668
#endif
2674-
#ifdef FEAT_EVAL
2675-
emarklist_init(&buf->b_emarklist);
2676-
#endif
26772669
#ifdef FEAT_SYN_HL
26782670
check_colorcolumn(curwin);
26792671
#endif

0 commit comments

Comments
 (0)