diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-07-13 01:56:48 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-07-13 01:56:48 -0400 |
commit | 6263ad529db436ff798f65fd014cfe345354b2f6 (patch) | |
tree | b8172653c1af5ddb28888a22b30248e0bf0e3412 /common | |
parent | 5b01369d62f5bcdb36002bc49c2d546e223c9214 (diff) | |
download | pentadactyl-6263ad529db436ff798f65fd014cfe345354b2f6.tar.gz |
Fix help tag. Closes issue #594.
Diffstat (limited to 'common')
-rw-r--r-- | common/locale/en-US/repeat.xml | 2 | ||||
-rw-r--r-- | common/modules/bootstrap.jsm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/locale/en-US/repeat.xml b/common/locale/en-US/repeat.xml index cc44e4d6..b4ba7fff 100644 --- a/common/locale/en-US/repeat.xml +++ b/common/locale/en-US/repeat.xml @@ -372,7 +372,7 @@ </item> <item> - <tags>:ru :runtime</tags> + <tags>:runt :runtime</tags> <spec>:runt<oa>ime</oa><oa>!</oa> <a>file</a> …</spec> <description> <p> diff --git a/common/modules/bootstrap.jsm b/common/modules/bootstrap.jsm index 3aa08d4b..18f2de79 100644 --- a/common/modules/bootstrap.jsm +++ b/common/modules/bootstrap.jsm @@ -176,6 +176,6 @@ else } }; -}catch(e){ dump(e + "\n" + (e.stack || Error().stack)); Cu.reportError(e) } +}catch(e){ dump(e + "\n" + (e.stack || Error().stack)); Components.utils.reportError(e) } // vim: set fdm=marker sw=4 sts=4 et ft=javascript: |