comparison src/buffer.c @ 15510:41fbbcea0f1b v8.1.0763

patch 8.1.0763: nobody is using the Sun Workshop support commit https://github.com/vim/vim/commit/bb1969b6ab28120c93b77817e7b6075e1aecf663 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 15:45:25 2019 +0100 patch 8.1.0763: nobody is using the Sun Workshop support Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 16:00:08 +0100
parents 98c35d312987
children dd725a8ab112
comparison
equal deleted inserted replaced
15509:2650d9461407 15510:41fbbcea0f1b
656 /* 656 /*
657 * Remove the buffer from the list. 657 * Remove the buffer from the list.
658 */ 658 */
659 if (wipe_buf) 659 if (wipe_buf)
660 { 660 {
661 #ifdef FEAT_SUN_WORKSHOP
662 if (usingSunWorkShop)
663 workshop_file_closed_lineno((char *)buf->b_ffname,
664 (int)buf->b_last_cursor.lnum);
665 #endif
666 if (buf->b_sfname != buf->b_ffname) 661 if (buf->b_sfname != buf->b_ffname)
667 VIM_CLEAR(buf->b_sfname); 662 VIM_CLEAR(buf->b_sfname);
668 else 663 else
669 buf->b_sfname = NULL; 664 buf->b_sfname = NULL;
670 VIM_CLEAR(buf->b_ffname); 665 VIM_CLEAR(buf->b_ffname);