From: Rob Pike
Alternatively, you can use
-hg change 99999
.
$ hg file 99999 somefile diff --git a/doc/debugging_with_gdb.html b/doc/debugging_with_gdb.html index 4f1308adb7..b893f931a3 100644 --- a/doc/debugging_with_gdb.html +++ b/doc/debugging_with_gdb.html @@ -179,7 +179,7 @@ $ gdb regexp.test -d $GOROOT If for some reason GDB still can't find that directory or that script, you can load it by hand by telling gdb (assuming you have the go sources in~/go/
): -+
(gdb) source ~/go/src/pkg/runtime/runtime-gdb.py diff --git a/doc/go1.1.html b/doc/go1.1.html index 1574ed805d..b7e8ee9f05 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -131,7 +131,7 @@ to convert the code to Go 1.0 first.Changes to the standard library
-debug/elf
+debug/elf
Previous versions of the debug/elf package intentionally skipped over the first symbol in the ELF symbol table, since it is always an empty symbol. This symbol @@ -141,7 +141,7 @@ calls the debug/elf functions Symbols or ImportedSymbols may need to be adjusted to account for the additional symbol and the change in symbol offsets.
-html/template
+html/template
Templates using the undocumented and only partially implemented diff --git a/doc/go_spec.html b/doc/go_spec.html index 66294c7a5a..c5611cb1f7 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2637,7 +2637,7 @@ a[:] // same as a[0 : len(a)]
For arrays or strings, the indices
low
andhigh
are -in range if0 <=
, +in range iflow
<=high
<= len(a)0
<=low
<=high
<=len(a)
, otherwise they are out of range. For slices, the upper index bound is the slice capacitycap(a)
rather than the length. A constant index must be non-negative and representable by a value of type