mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-30 04:55:47 +01:00
Fix bug.
This commit is contained in:
@@ -1316,7 +1316,7 @@ var Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference]),
|
||||
* Escapes a string against shell meta-characters and argument
|
||||
* separators.
|
||||
*/
|
||||
shellEscape: function shellEscape(str) '"' + String.replace(str, /[\\"$]/g, "\\$&") + '"',
|
||||
shellEscape: function shellEscape(str) '"' + String.replace(str, /[\\"$`]/g, "\\$&") + '"',
|
||||
|
||||
/**
|
||||
* Suspend execution for at least *delay* milliseconds. Functions by
|
||||
|
||||
Reference in New Issue
Block a user