Skip to content
This repository has been archived by the owner on Aug 20, 2022. It is now read-only.

Commit

Permalink
Fix is_modified
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Jan 14, 2016
1 parent 496ed4a commit 0d5f655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/gista/resource/remote.vim
Expand Up @@ -24,7 +24,7 @@ function! gista#resource#remote#is_modified(lhs, rhs) abort
\]
let lhs = s:D.omit(a:lhs, unnecessary_fields)
let rhs = s:D.omit(a:rhs, unnecessary_fields)
return string(lhs) !=# string(rhs)
return lhs != rhs
endfunction

function! gista#resource#remote#get(gistid, ...) abort
Expand Down

0 comments on commit 0d5f655

Please sign in to comment.