diff -uNr cream-0.29.orig/cream cream-0.29/cream --- cream-0.29.orig/cream 2004-04-25 15:33:59.000000000 +0200 +++ cream-0.29/cream 2004-04-25 15:34:17.000000000 +0200 @@ -1,4 +1,4 @@ #!/bin/sh -gvim -u "\$VIMRUNTIME/cream/creamrc" "$@" +gvim -u "\$VIM/cream/creamrc" "$@" diff -uNr cream-0.29.orig/cream.desktop cream-0.29/cream.desktop --- cream-0.29.orig/cream.desktop 2004-04-25 15:33:59.000000000 +0200 +++ cream-0.29/cream.desktop 2004-04-25 15:48:28.000000000 +0200 @@ -12,5 +12,5 @@ MapNotify=false Encoding=UTF-8 X-Desktop-File-Install-Version=0.4 -Categories=Application;Development;X-Red-Hat-Base; +Categories=Application;Development; diff -uNr cream-0.29.orig/cream-lib.vim cream-0.29/cream-lib.vim --- cream-0.29.orig/cream-lib.vim 2004-04-25 15:33:59.000000000 +0200 +++ cream-0.29/cream-lib.vim 2004-04-25 20:18:40.775979986 +0200 @@ -472,7 +472,7 @@ " program ctags exists elseif a:property == "ctags" - if executable("ctags") == 1 || + if executable("exuberant-ctags") == 1 || \ executable("tags") == 1 return 1 endif diff -uNr cream-0.29.orig/creamrc cream-0.29/creamrc --- cream-0.29.orig/creamrc 2004-04-25 15:33:59.000000000 +0200 +++ cream-0.29/creamrc 2004-04-25 18:59:49.000000000 +0200 @@ -103,7 +103,7 @@ ""*** else - let $CREAM = $VIMRUNTIME . "/cream/" + let $CREAM = $VIM . "/cream/" endif endif @@ -222,12 +222,13 @@ if has("win32") let quote = '"' + " change slashes to backslashes for system call + let tmpdir = substitute(mydir, '/', '\', 'g') else let quote = '' + let tmpdir = mydir endif set noshellslash - " change slashes to backslashes for system call - let tmpdir = substitute(mydir, '/', '\', 'g') call system("mkdir " . quote . tmpdir . quote) set shellslash @@ -284,12 +285,13 @@ if has("win32") let quote = '"' + " change slashes to backslashes for system call + let tmpdir = substitute(mydir, '/', '\', 'g') else let quote = '' + let tmpdir = mydir endif set noshellslash - " change slashes to backslashes for system call - let tmpdir = substitute(mydir, '/', '\', 'g') call system("mkdir " . quote . tmpdir . quote) set shellslash @@ -324,12 +326,13 @@ if has("win32") let quote = '"' + " change slashes to backslashes for system call + let tmpdir = substitute(mydir, '/', '\', 'g') else let quote = '' + let tmpdir = mydir endif set noshellslash - " change slashes to backslashes for system call - let tmpdir = substitute(mydir, '/', '\', 'g') call system("mkdir " . quote . tmpdir . quote) set shellslash diff -uNr cream-0.29.orig/taglist.vim cream-0.29/taglist.vim --- cream-0.29.orig/taglist.vim 2004-04-25 15:33:59.000000000 +0200 +++ cream-0.29/taglist.vim 2004-04-25 18:07:31.000000000 +0200 @@ -97,7 +97,7 @@ " Location of the exuberant ctags tool if !exists('Tlist_Ctags_Cmd') - let Tlist_Ctags_Cmd = 'ctags' + let Tlist_Ctags_Cmd = 'exuberant-ctags' endif " Tag listing sort type - 'name' or 'order'