diff options
| author | Jack Nagel | 2013-03-23 00:09:30 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-03-23 00:10:12 -0500 |
| commit | b008af3ccab20b6af8aeaf399405524a520a606c (patch) | |
| tree | 88304c3b92080aab331af9c8156e952a3eeb3615 | |
| parent | ad990fe936f426804d00b3c6678521b29fc5dab4 (diff) | |
| download | homebrew-b008af3ccab20b6af8aeaf399405524a520a606c.tar.bz2 | |
auctex: fix type error
Fixes #18661.
| -rw-r--r-- | Library/Formula/auctex.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/auctex.rb b/Library/Formula/auctex.rb index 411facf54..29f0dfba8 100644 --- a/Library/Formula/auctex.rb +++ b/Library/Formula/auctex.rb @@ -19,7 +19,7 @@ class Auctex < Formula return a.sub('--with-emacs=', '') end end - return which 'emacs' + which('emacs').to_s end def install |
