summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.3.523
blob: 7eec3ea2f39d54e9f96ca84a7df64c01760ffabe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
To: vim_dev@googlegroups.com
Subject: Patch 7.3.523
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 7.3.523
Problem:    ":diffupdate" doesn't check for files changed elsewhere.
Solution:   Add the ! flag. (Christian Brabandt)
Files:	    runtime/doc/diff.txt, src/diff.c, src/ex_cmds.h


*** ../vim-7.3.522/runtime/doc/diff.txt	2010-08-15 21:57:16.000000000 +0200
--- runtime/doc/diff.txt	2012-05-18 18:41:49.000000000 +0200
***************
*** 178,184 ****
  nodiff" before hiding it.
  
  							*:diffu* *:diffupdate*
! :diffu[pdate]			Update the diff highlighting and folds.
  
  Vim attempts to keep the differences updated when you make changes to the
  text.  This mostly takes care of inserted and deleted lines.  Changes within a
--- 178,184 ----
  nodiff" before hiding it.
  
  							*:diffu* *:diffupdate*
! :diffu[pdate][!]		Update the diff highlighting and folds.
  
  Vim attempts to keep the differences updated when you make changes to the
  text.  This mostly takes care of inserted and deleted lines.  Changes within a
***************
*** 187,192 ****
--- 187,195 ----
  
  	:diffupdate
  
+ If the ! is included Vim will check if the file was changed externally and
+ needs to be reloaded.  It will prompt for each changed file, like `:checktime`
+ was used.
  
  Vim will show filler lines for lines that are missing in one window but are
  present in another.  These lines were inserted in another file or deleted in
*** ../vim-7.3.522/src/diff.c	2010-09-21 16:56:29.000000000 +0200
--- src/diff.c	2012-05-18 18:45:09.000000000 +0200
***************
*** 783,788 ****
--- 783,797 ----
  	goto theend;
      }
  
+     /* :diffupdate! */
+     if (eap != NULL && eap->forceit)
+ 	for (idx_new = idx_orig; idx_new < DB_COUNT; ++idx_new)
+ 	{
+ 	    buf = curtab->tp_diffbuf[idx_new];
+ 	    if (buf_valid(buf))
+ 		buf_check_timestamp(buf, FALSE);
+ 	}
+ 
      /* Write the first buffer to a tempfile. */
      buf = curtab->tp_diffbuf[idx_orig];
      if (diff_write(buf, tmp_orig) == FAIL)
*** ../vim-7.3.522/src/ex_cmds.h	2012-02-13 00:01:38.000000000 +0100
--- src/ex_cmds.h	2012-05-18 18:37:56.000000000 +0200
***************
*** 304,310 ****
  EX(CMD_display,		"display",	ex_display,
  			EXTRA|NOTRLCOM|TRLBAR|SBOXOK|CMDWIN),
  EX(CMD_diffupdate,	"diffupdate",	ex_diffupdate,
! 			TRLBAR),
  EX(CMD_diffget,		"diffget",	ex_diffgetput,
  			RANGE|EXTRA|TRLBAR|MODIFY),
  EX(CMD_diffoff,		"diffoff",	ex_diffoff,
--- 304,310 ----
  EX(CMD_display,		"display",	ex_display,
  			EXTRA|NOTRLCOM|TRLBAR|SBOXOK|CMDWIN),
  EX(CMD_diffupdate,	"diffupdate",	ex_diffupdate,
! 			BANG|TRLBAR),
  EX(CMD_diffget,		"diffget",	ex_diffgetput,
  			RANGE|EXTRA|TRLBAR|MODIFY),
  EX(CMD_diffoff,		"diffoff",	ex_diffoff,
*** ../vim-7.3.522/src/version.c	2012-05-18 18:34:15.000000000 +0200
--- src/version.c	2012-05-18 18:39:13.000000000 +0200
***************
*** 716,717 ****
--- 716,719 ----
  {   /* Add new patch number below this line */
+ /**/
+     523
  /**/

-- 
"The future's already arrived - it's just not evenly distributed yet."
		-- William Gibson

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///