1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 16:27:59 +01:00

fixed hints

This commit is contained in:
Martin Stubenschrott
2007-04-28 15:39:28 +00:00
parent 4019129519
commit cdcf828bb9
5 changed files with 12 additions and 13 deletions

View File

@@ -524,7 +524,7 @@ var g_mappings = [/*{{{*/
[
["gP"],
["gP"],
"Open (put) an URL based on the current Clipboard contents in a new buffer",
"Open (put) an URL based on the current clipboard contents in a new buffer",
"Works like <code class=mapping>P</code>, but inverts the <code class=setting>'activate'</code> setting.",
function(count) { openURLsInNewTab(readFromClipboard(), false); }
],
@@ -1969,11 +1969,15 @@ function set(args, special)
function source(filename, silent)
{
if (!filename) return;
if (!filename)
return;
try
{
var fd = fopen(filename, "<");
if (!fd) return;
if (!fd)
return;
var s = fd.read();
fd.close();