From 2dd91c0b03bfd3781e17e338cd51f8f5a1a005f8 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Wed, 14 Apr 2010 21:50:23 -0700 Subject: [PATCH] elf.nm: fix load error --- extra/elf/nm/nm-docs.factor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/elf/nm/nm-docs.factor b/extra/elf/nm/nm-docs.factor index a7b7ad426e..31ca3debf4 100644 --- a/extra/elf/nm/nm-docs.factor +++ b/extra/elf/nm/nm-docs.factor @@ -3,7 +3,7 @@ USING: elf help.markup help.syntax ; IN: elf.nm -HELP: nm +HELP: elf-nm { $values { "path" "a pathname string" } } @@ -17,6 +17,7 @@ HELP: print-symbol ARTICLE: "elf.nm" "ELF nm" "The " { $vocab-link "elf.nm" } " vocab prints the values, sections and names of the symbols in a given ELF file. In an ELF executable or shared library, the symbol values are typically their virtual addresses. In a relocatable ELF object, they are section-relative offsets." +{ $subsections elf-nm } ; ABOUT: "elf.nm"