aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-05 22:47:54 +0000
committerRichard M. Stallman1993-05-05 22:47:54 +0000
commit1d928d69396f4a73c03d6b2010fbdd9d1a556a18 (patch)
tree64c320111986d985f95d3c28bf27953e50da7cc8
parent3731572535613aafbd32e4e2abb9f9ca61afe344 (diff)
downloademacs-1d928d69396f4a73c03d6b2010fbdd9d1a556a18.tar.gz
emacs-1d928d69396f4a73c03d6b2010fbdd9d1a556a18.zip
Doc fix.
-rw-r--r--lisp/progmodes/asm-mode.el18
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.
82Features a private asm-mode-abbrev-table and the following bindings: 82Features 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
89The character used for making comments is set by the variable 89The character used for making comments is set by the variable
90asm-comment-char (which defaults to ?;). You may want to set this 90`asm-comment-char' (which defaults to `?;').
91appropriately for the assembler on your machine in defaults.el.
92 91
93Alternatively, you may set this variable in asm-set-comment-hook, which is 92Alternatively, you may set this variable in `asm-set-comment-hook', which is
94called near the beginning of mode initialization. 93called near the beginning of mode initialization.
95 94
96Turning on asm-mode calls the value of the variable asm-mode-hook, 95Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization.
97if that value is non-nil, at the end of initialization.
98 96
99Special commands:\\{asm-mode-map} 97Special commands:\\{asm-mode-map}
100" 98"