a bug fix. Set LICENSE. Diffuse 0.3.3 - 2009-04-13 - fixed a bug handling the backspace key with the cursor in the first column Diffuse 0.3.2 - 2009-04-13 - POSIX installer with '--destdir=' and '--files-only' options for packagers - vi-like keybindings for line mode - '-m' option to open modified files in separate tabs - 'Merge From Left Then Right' and 'Merge From Right Then Left' menu items - drag-n-drop support - preferences for behaviour of tabs - files with edits now tagged with '*' - auto indent - 'Open File In New Tab...' and 'Open Modified Files...' menu items - 'Save All' menu item - mac-style line ending support - new end of line display behaviour - improved organisation of menu items - button bar no longer grabs keyboard focus - removed dependence on urllib module - errors are now reported on stderr - removed TODO list - minor bug fixes
13 lines
537 B
Text
13 lines
537 B
Text
$NetBSD: patch-aa,v 1.3 2009/04/16 22:43:31 wiz Exp $
|
|
|
|
--- src/usr/bin/diffuse.orig 2009-04-13 22:24:24.000000000 +0000
|
|
+++ src/usr/bin/diffuse
|
|
@@ -1296,7 +1296,7 @@ class VCSs:
|
|
if len(s) > 2 and s[0] in 'ACMR':
|
|
k = os.path.join(self.root, prefs.convertToNativePath(s[2:]))
|
|
if not isabs:
|
|
- k = replpath(pwd, k)
|
|
+ k = relpath(pwd, k)
|
|
r[k] = s[0]
|
|
for k in sorted(r.keys()):
|
|
v = r[k]
|