diff options
| author | Rianol Jou | 2012-07-23 13:29:31 +0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-09-11 22:48:31 -0700 |
| commit | 05eceb8eef84473ab7a4cd607721228160702cc9 (patch) | |
| tree | 0102315c9e0c13097ce61f54ec4b60835bd24971 /Library/Formula | |
| parent | b01c5e00733ad1768ad1e09b5d47e2a87813a044 (diff) | |
| download | homebrew-05eceb8eef84473ab7a4cd607721228160702cc9.tar.bz2 | |
tmux: Correct japanese sonant mark display
Closes #13544.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/tmux.rb | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Library/Formula/tmux.rb b/Library/Formula/tmux.rb index f12619b2b..5e7b5c166 100644 --- a/Library/Formula/tmux.rb +++ b/Library/Formula/tmux.rb @@ -15,12 +15,17 @@ class Tmux < Formula depends_on :libtool end - # This patch adds the implementation of osdep_get_cwd for Darwin platform, - # so that tmux can get current working directory correctly under Mac OS. - # NOTE: it applies to 1.6 only, and should be removed when 1.7 is out. - # (because it has been merged upstream) def patches - DATA if build.stable? + # Fix for Japanese characters. See: + # http://sourceforge.net/tracker/?func=detail&aid=3566884&group_id=200378&atid=973264 + p = ['http://sourceforge.net/tracker/download.php?group_id=200378&atid=973264&file_id=453002&aid=3566884'] + # This patch adds the implementation of osdep_get_cwd for Darwin platform, + # so that tmux can get current working directory correctly under Mac OS. + # NOTE: it applies to 1.6 only, and should be removed when 1.7 is out. + # (because it has been merged upstream) + p << DATA if build.stable? + + p end def install |
