• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revision992d5c69d5e917b03abcee24d2fbed8348e21c23 (tree)
Time2006-10-13 04:14:26
Authorvimboss
Commitervimboss

Log Message

updated for version 7.0-132

Change Summary

Incremental Difference

diff -r 1dfe9032bd92 -r 992d5c69d5e9 src/fileio.c
--- a/src/fileio.c Tue Oct 10 19:56:03 2006 +0000
+++ b/src/fileio.c Thu Oct 12 19:14:26 2006 +0000
@@ -416,20 +416,20 @@
416416 msg_scroll = msg_save;
417417 return FAIL;
418418 }
419- }
420-#endif
421-
422-#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
423- /*
424- * MS-Windows allows opening a device, but we will probably get stuck
425- * trying to read it.
426- */
427- if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
428- {
429- filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option"), 0);
430- msg_end();
431- msg_scroll = msg_save;
432- return FAIL;
419+
420+# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
421+ /*
422+ * MS-Windows allows opening a device, but we will probably get stuck
423+ * trying to read it.
424+ */
425+ if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
426+ {
427+ filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option"), 0);
428+ msg_end();
429+ msg_scroll = msg_save;
430+ return FAIL;
431+ }
432+# endif
433433 }
434434 #endif
435435
diff -r 1dfe9032bd92 -r 992d5c69d5e9 src/version.c
--- a/src/version.c Tue Oct 10 19:56:03 2006 +0000
+++ b/src/version.c Thu Oct 12 19:14:26 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 132,
671+/**/
670672 131,
671673 /**/
672674 130,
Show on old repository browser