Bugfix hex.vim, paf.vim

git-svn-id: https://vimsuite.svn.sourceforge.net/svnroot/vimsuite/trunk@208 eb2d0018-73a3-4aeb-bfe9-1def61c9ec69
This commit is contained in:
alterdepp 2011-08-29 07:46:39 +00:00
parent 9adfeaf888
commit c8d8d9e995
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ function! s:HexGetAsciiLine()
catch
let String = '?'
endtry
return String
return strtrans(String)
endfunction
" Get value of current data under cursor for a:Bytes

View File

@ -1,6 +1,6 @@
" Adresse der aktuellen Zeile berechnen und in der Statusline anzeigen
command PafGetAddress! call PafGetAddress()
command! PafGetAddress call PafGetAddress()
function! PafGetAddress()
let RE = ':\x\{2}\x\{4}02\(\x\{4}\)\x\{2}'
let line = search(RE, 'bcnW')