@@ -0,0 +1,56 @@
|
|
1
|
+
To: vim_dev@googlegroups.com
|
2
|
+
Subject: Patch 7.3.567
|
3
|
+
Fcc: outbox
|
4
|
+
From: Bram Moolenaar <Bram@moolenaar.net>
|
5
|
+
Mime-Version: 1.0
|
6
|
+
Content-Type: text/plain; charset=UTF-8
|
7
|
+
Content-Transfer-Encoding: 8bit
|
8
|
+
------------
|
9
|
+
|
10
|
+
Patch 7.3.567
|
11
|
+
Problem: Missing copyright notice.
|
12
|
+
Solution: Add Vim copyright notice. (Taro Muraoka)
|
13
|
+
Files: src/dehqx.py
|
14
|
+
|
15
|
+
|
16
|
+
*** ../vim-7.3.566/src/dehqx.py 2010-08-15 21:57:32.000000000 +0200
|
17
|
+
--- src/dehqx.py 2012-06-29 11:27:41.000000000 +0200
|
18
|
+
***************
|
19
|
+
*** 1,7 ****
|
20
|
+
# Python script to get both the data and resource fork from a BinHex encoded
|
21
|
+
# file.
|
22
|
+
! # Author: Taro Muraoka
|
23
|
+
! # Last Change: 2003 Oct 25
|
24
|
+
|
25
|
+
import sys
|
26
|
+
import binhex
|
27
|
+
--- 1,10 ----
|
28
|
+
# Python script to get both the data and resource fork from a BinHex encoded
|
29
|
+
# file.
|
30
|
+
! # Author: MURAOKA Taro <koron.kaoriya@gmail.com>
|
31
|
+
! # Last Change: 2012 Jun 29
|
32
|
+
! #
|
33
|
+
! # Copyright (C) 2003,12 MURAOKA Taro <koron.kaoriya@gmail.com>
|
34
|
+
! # THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
|
35
|
+
|
36
|
+
import sys
|
37
|
+
import binhex
|
38
|
+
*** ../vim-7.3.566/src/version.c 2012-06-20 22:55:56.000000000 +0200
|
39
|
+
--- src/version.c 2012-06-29 11:45:36.000000000 +0200
|
40
|
+
***************
|
41
|
+
*** 716,717 ****
|
42
|
+
--- 716,719 ----
|
43
|
+
{ /* Add new patch number below this line */
|
44
|
+
+ /**/
|
45
|
+
+ 567,
|
46
|
+
/**/
|
47
|
+
|
48
|
+
--
|
49
|
+
hundred-and-one symptoms of being an internet addict:
|
50
|
+
66. You create a homepage with the impression to cure the afflicted...but
|
51
|
+
your hidden agenda is to receive more e-mail.
|
52
|
+
|
53
|
+
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
54
|
+
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
55
|
+
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
56
|
+
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|