|
Karsten Hopp |
54efc5 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
54efc5 |
Subject: Patch 7.3.1108
|
|
Karsten Hopp |
54efc5 |
Fcc: outbox
|
|
Karsten Hopp |
54efc5 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
54efc5 |
Mime-Version: 1.0
|
|
Karsten Hopp |
54efc5 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
54efc5 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
54efc5 |
------------
|
|
Karsten Hopp |
54efc5 |
|
|
Karsten Hopp |
54efc5 |
Patch 7.3.1108
|
|
Karsten Hopp |
54efc5 |
Problem: Error message for os.fchdir() (Charles Peacech)
|
|
Karsten Hopp |
54efc5 |
Solution: Clear the error. (ZyX)
|
|
Karsten Hopp |
54efc5 |
Files: src/if_py_both.h
|
|
Karsten Hopp |
54efc5 |
|
|
Karsten Hopp |
54efc5 |
|
|
Karsten Hopp |
54efc5 |
*** ../vim-7.3.1107/src/if_py_both.h 2013-06-02 18:54:16.000000000 +0200
|
|
Karsten Hopp |
54efc5 |
--- src/if_py_both.h 2013-06-03 20:01:23.000000000 +0200
|
|
Karsten Hopp |
54efc5 |
***************
|
|
Karsten Hopp |
54efc5 |
*** 5413,5418 ****
|
|
Karsten Hopp |
54efc5 |
--- 5413,5420 ----
|
|
Karsten Hopp |
54efc5 |
if (PyObject_SetAttrString(os, "fchdir", get_attr(m, "fchdir")))
|
|
Karsten Hopp |
54efc5 |
return -1;
|
|
Karsten Hopp |
54efc5 |
}
|
|
Karsten Hopp |
54efc5 |
+ else
|
|
Karsten Hopp |
54efc5 |
+ PyErr_Clear();
|
|
Karsten Hopp |
54efc5 |
|
|
Karsten Hopp |
54efc5 |
return 0;
|
|
Karsten Hopp |
54efc5 |
}
|
|
Karsten Hopp |
54efc5 |
*** ../vim-7.3.1107/src/version.c 2013-06-03 19:41:01.000000000 +0200
|
|
Karsten Hopp |
54efc5 |
--- src/version.c 2013-06-03 20:00:42.000000000 +0200
|
|
Karsten Hopp |
54efc5 |
***************
|
|
Karsten Hopp |
54efc5 |
*** 730,731 ****
|
|
Karsten Hopp |
54efc5 |
--- 730,733 ----
|
|
Karsten Hopp |
54efc5 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
54efc5 |
+ /**/
|
|
Karsten Hopp |
54efc5 |
+ 1108,
|
|
Karsten Hopp |
54efc5 |
/**/
|
|
Karsten Hopp |
54efc5 |
|
|
Karsten Hopp |
54efc5 |
--
|
|
Karsten Hopp |
54efc5 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
54efc5 |
71. You wonder how people walk
|
|
Karsten Hopp |
54efc5 |
|
|
Karsten Hopp |
54efc5 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
54efc5 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
54efc5 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
54efc5 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|