branch: elpa/nasm-mode commit e641c8ae56ed65717905a5b06d9acee2c9afe7cb Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Flesh out a little more commentary. --- README.md | 6 +++--- nasm-mode.el | 7 +++++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f202ca4..8a65ddb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # nasm-mode `nasm-mode` is a major mode for editing [NASM][nasm] x86 assembly -language programs. It includes syntax highlighting, auto indentation, -and imenu integration. Unlike Emacs' generic `asm-mode`, it -understands NASM-specific syntax. Requires Emacs 24.3 or higher. +programs. It includes syntax highlighting, automatic indentation, and +imenu integration. Unlike Emacs' generic `asm-mode`, it understands +NASM-specific syntax. Requires Emacs 24.3 or higher. The instruction and keyword lists are from NASM 2.11.08. diff --git a/nasm-mode.el b/nasm-mode.el index 6c7448d..0a4d3fb 100644 --- a/nasm-mode.el +++ b/nasm-mode.el @@ -9,6 +9,13 @@ ;;; Commentary: +;; A major mode for editing NASM x86 assembly programs. It includes +;; syntax highlighting, automatic indentation, and imenu integration. +;; Unlike Emacs' generic `asm-mode`, it understands NASM-specific +;; syntax. + +;; NASM Home: http://www.nasm.us/ + ;; Labels without colons are not recognized as labels by this mode, ;; since, without a parser equal to that of NASM itself, it's ;; otherwise ambiguous between macros and labels. This covers both