diff options
author | 2009-02-21 23:20:54 -0500 | |
---|---|---|
committer | 2009-02-21 23:20:54 -0500 | |
commit | b3c8aac95d0048b2acb54e28194987fc63a6f0ee (patch) | |
tree | 22d0d406dafda16c1c1b4b1c69b160ec22a57234 /core/ext | |
parent | 41de704f3aefa118cbfc18eeb56629019f166478 (diff) | |
download | textadept-b3c8aac95d0048b2acb54e28194987fc63a6f0ee.tar.gz textadept-b3c8aac95d0048b2acb54e28194987fc63a6f0ee.zip |
Fixed ctags browser bug with filenames; core/ext/pm/ctags_browser.lua
Diffstat (limited to 'core/ext')
-rw-r--r-- | core/ext/pm/ctags_browser.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/pm/ctags_browser.lua b/core/ext/pm/ctags_browser.lua index 503804c2..23556f68 100644 --- a/core/ext/pm/ctags_browser.lua +++ b/core/ext/pm/ctags_browser.lua @@ -116,7 +116,7 @@ function get_contents_for(full_path, expanding) tags = {} current_file = nil current_dir = '' -- ctags file will specify absolute paths - os.execute('ctags -f '..FILE_OUT..' '..(buffer.filename or '')) + os.execute('ctags -f "'..FILE_OUT..'" '..(buffer.filename or '')) f = io.open(FILE_OUT, 'rb') if not f then return {} end elseif not expanding then |