1
0
forked from aniani/vim

patch 7.4.2189

Problem:    Cannot detect encoding in a fifo.
Solution:   Extend the stdin way of detecting encoding to fifo.  Add a test
            for detecting encoding on stdin and fifo. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2016-08-09 22:14:05 +02:00
parent c9fb77c692
commit f71d7b9ee5
7 changed files with 168 additions and 47 deletions

View File

@@ -980,7 +980,8 @@ extern char *(*dyn_libintl_textdomain)(const char *domainname);
#define READ_STDIN 0x04 /* read from stdin */
#define READ_BUFFER 0x08 /* read from curbuf (converting stdin) */
#define READ_DUMMY 0x10 /* reading into a dummy buffer */
#define READ_KEEP_UNDO 0x20 /* keep undo info*/
#define READ_KEEP_UNDO 0x20 /* keep undo info */
#define READ_FIFO 0x40 /* read from fifo or socket */
/* Values for change_indent() */
#define INDENT_SET 1 /* set indent */