diff options
| author | Richard M. Stallman | 1993-05-05 22:47:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-05 22:47:54 +0000 |
| commit | 1d928d69396f4a73c03d6b2010fbdd9d1a556a18 (patch) | |
| tree | 64c320111986d985f95d3c28bf27953e50da7cc8 | |
| parent | 3731572535613aafbd32e4e2abb9f9ca61afe344 (diff) | |
| download | emacs-1d928d69396f4a73c03d6b2010fbdd9d1a556a18.tar.gz emacs-1d928d69396f4a73c03d6b2010fbdd9d1a556a18.zip | |
Doc fix.
| -rw-r--r-- | lisp/progmodes/asm-mode.el | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/lisp/progmodes/asm-mode.el b/lisp/progmodes/asm-mode.el index 51e11f64a54..26097a50139 100644 --- a/lisp/progmodes/asm-mode.el +++ b/lisp/progmodes/asm-mode.el | |||
| @@ -50,17 +50,17 @@ | |||
| 50 | ;;; Code: | 50 | ;;; Code: |
| 51 | 51 | ||
| 52 | (defvar asm-comment-char ?; | 52 | (defvar asm-comment-char ?; |
| 53 | "*The comment-start character assumed by asm-mode.") | 53 | "*The comment-start character assumed by Asm mode.") |
| 54 | 54 | ||
| 55 | (defvar asm-mode-syntax-table nil | 55 | (defvar asm-mode-syntax-table nil |
| 56 | "Syntax table used while in asm mode.") | 56 | "Syntax table used while in Asm mode.") |
| 57 | 57 | ||
| 58 | (defvar asm-mode-abbrev-table nil | 58 | (defvar asm-mode-abbrev-table nil |
| 59 | "Abbrev table used while in asm mode.") | 59 | "Abbrev table used while in Asm mode.") |
| 60 | (define-abbrev-table 'asm-mode-abbrev-table ()) | 60 | (define-abbrev-table 'asm-mode-abbrev-table ()) |
| 61 | 61 | ||
| 62 | (defvar asm-mode-map nil | 62 | (defvar asm-mode-map nil |
| 63 | "Keymap for asm-mode") | 63 | "Keymap for Asm mode.") |
| 64 | 64 | ||
| 65 | (if asm-mode-map | 65 | (if asm-mode-map |
| 66 | nil | 66 | nil |
| @@ -79,7 +79,7 @@ | |||
| 79 | ;;;###autoload | 79 | ;;;###autoload |
| 80 | (defun asm-mode () | 80 | (defun asm-mode () |
| 81 | "Major mode for editing typical assembler code. | 81 | "Major mode for editing typical assembler code. |
| 82 | Features a private asm-mode-abbrev-table and the following bindings: | 82 | Features a private abbrev table and the following bindings: |
| 83 | 83 | ||
| 84 | \\[asm-colon]\toutdent a preceding label, tab to next tab stop. | 84 | \\[asm-colon]\toutdent a preceding label, tab to next tab stop. |
| 85 | \\[tab-to-tab-stop]\ttab to next tab stop. | 85 | \\[tab-to-tab-stop]\ttab to next tab stop. |
| @@ -87,14 +87,12 @@ Features a private asm-mode-abbrev-table and the following bindings: | |||
| 87 | \\[asm-comment]\tsmart placement of assembler comments. | 87 | \\[asm-comment]\tsmart placement of assembler comments. |
| 88 | 88 | ||
| 89 | The character used for making comments is set by the variable | 89 | The character used for making comments is set by the variable |
| 90 | asm-comment-char (which defaults to ?;). You may want to set this | 90 | `asm-comment-char' (which defaults to `?;'). |
| 91 | appropriately for the assembler on your machine in defaults.el. | ||
| 92 | 91 | ||
| 93 | Alternatively, you may set this variable in asm-set-comment-hook, which is | 92 | Alternatively, you may set this variable in `asm-set-comment-hook', which is |
| 94 | called near the beginning of mode initialization. | 93 | called near the beginning of mode initialization. |
| 95 | 94 | ||
| 96 | Turning on asm-mode calls the value of the variable asm-mode-hook, | 95 | Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. |
| 97 | if that value is non-nil, at the end of initialization. | ||
| 98 | 96 | ||
| 99 | Special commands:\\{asm-mode-map} | 97 | Special commands:\\{asm-mode-map} |
| 100 | " | 98 | " |