comparison src/buffer.c @ 16859:0154363d3b98 v8.1.1431

patch 8.1.1431: popup window listed as "Scratch" commit https://github.com/vim/vim/commit/c6896e20f8e7e8d9fe0fd1ad333aae1130d714e1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 30 22:32:34 2019 +0200 patch 8.1.1431: popup window listed as "Scratch" Problem: Popup window listed as "Scratch". Solution: List them as "Popup".
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 May 2019 22:45:04 +0200
parents ce04ebdf26b8
children a836d122231a
comparison
equal deleted inserted replaced
16858:b1c49e3da5f6 16859:0154363d3b98
5780 return buf->b_fname; 5780 return buf->b_fname;
5781 #ifdef FEAT_JOB_CHANNEL 5781 #ifdef FEAT_JOB_CHANNEL
5782 if (bt_prompt(buf)) 5782 if (bt_prompt(buf))
5783 return (char_u *)_("[Prompt]"); 5783 return (char_u *)_("[Prompt]");
5784 #endif 5784 #endif
5785 #ifdef FEAT_TEXT_PROP
5786 if (bt_popup(buf))
5787 return (char_u *)_("[Popup]");
5788 #endif
5785 return (char_u *)_("[Scratch]"); 5789 return (char_u *)_("[Scratch]");
5786 } 5790 }
5787 5791
5788 if (buf->b_fname == NULL) 5792 if (buf->b_fname == NULL)
5789 return (char_u *)_("[No Name]"); 5793 return (char_u *)_("[No Name]");