Mercurial > emacs
annotate lisp/progmodes/asm-mode.el @ 92898:3aa36f5712f6
(mark-diary-entries): Move some constant variables outside the
diary-date-forms loop.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 14 Mar 2008 02:52:35 +0000 |
parents | a1342e6e097a |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
1 ;;; asm-mode.el --- mode for editing assembler code |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
2 |
79717 | 3 ;; Copyright (C) 1991, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
64699
629afbe74e61
Update copyright for release of 22.1 for progmodes directory.
Nick Roberts <nickrob@snap.net.nz>
parents:
64394
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
869 | 5 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
6 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> |
11098 | 7 ;; Maintainer: FSF |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
8 ;; Keywords: tools, languages |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
9 |
473 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
78234
c1ec1c8a8d2e
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
473 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
473 | 26 |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
27 ;;; Commentary: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
28 |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
29 ;; This mode was written by Eric S. Raymond <esr@snark.thyrsus.com>, |
473 | 30 ;; inspired by an earlier asm-mode by Martin Neitzel. |
31 | |
32 ;; This minor mode is based on text mode. It defines a private abbrev table | |
33 ;; that can be used to save abbrevs for assembler mnemonics. It binds just | |
34 ;; five keys: | |
35 ;; | |
36 ;; TAB tab to next tab stop | |
37 ;; : outdent preceding label, tab to tab stop | |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
38 ;; comment char place or move comment |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
39 ;; asm-comment-char specifies which character this is; |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
40 ;; you can use a different character in different |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
41 ;; Asm mode buffers. |
473 | 42 ;; C-j, C-m newline and tab to tab stop |
43 ;; | |
44 ;; Code is indented to the first tab stop level. | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
45 |
473 | 46 ;; This mode runs two hooks: |
11098 | 47 ;; 1) An asm-mode-set-comment-hook before the part of the initialization |
473 | 48 ;; depending on asm-comment-char, and |
49 ;; 2) an asm-mode-hook at the end of initialization. | |
50 | |
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
51 ;;; Code: |
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
52 |
20781 | 53 (defgroup asm nil |
54 "Mode for editing assembler code." | |
66963
a11fdee52c05
Add :link (custom-group-link font-lock-faces) to defgroup.
Juri Linkov <juri@jurta.org>
parents:
64699
diff
changeset
|
55 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces) |
20781 | 56 :group 'languages) |
57 | |
23312 | 58 (defcustom asm-comment-char ?\; |
20781 | 59 "*The comment-start character assumed by Asm mode." |
60 :type 'character | |
61 :group 'asm) | |
473 | 62 |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
63 (defvar asm-mode-syntax-table |
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
64 (let ((st (make-syntax-table))) |
70227
3f695578124f
(asm-mode, asm-mode-syntax-table): Add
Masatake YAMATO <jet@gyve.org>
parents:
68773
diff
changeset
|
65 (modify-syntax-entry ?\n "> b" st) |
3f695578124f
(asm-mode, asm-mode-syntax-table): Add
Masatake YAMATO <jet@gyve.org>
parents:
68773
diff
changeset
|
66 (modify-syntax-entry ?/ ". 124b" st) |
3f695578124f
(asm-mode, asm-mode-syntax-table): Add
Masatake YAMATO <jet@gyve.org>
parents:
68773
diff
changeset
|
67 (modify-syntax-entry ?* ". 23" st) |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
68 st) |
2670 | 69 "Syntax table used while in Asm mode.") |
473 | 70 |
71 (defvar asm-mode-abbrev-table nil | |
2670 | 72 "Abbrev table used while in Asm mode.") |
473 | 73 (define-abbrev-table 'asm-mode-abbrev-table ()) |
74 | |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
75 (defvar asm-mode-map |
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
76 (let ((map (make-sparse-keymap))) |
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
77 ;; Note that the comment character isn't set up until asm-mode is called. |
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
78 (define-key map ":" 'asm-colon) |
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
79 (define-key map "\C-c;" 'comment-region) |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
80 (define-key map "\C-j" 'newline-and-indent) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
81 (define-key map "\C-m" 'newline-and-indent) |
79625
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
82 (define-key map [menu-bar] (make-sparse-keymap)) |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
83 (define-key map [menu-bar asm-mode] (cons "Asm" map)) |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
84 (define-key map [asm-colon] |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
85 '("Insert Colon" . asm-colon)) |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
86 (define-key map [comment-region] |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
87 '("Comment Region" . comment-region)) |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
88 (define-key map [newline-and-indent] |
63628cd913b8
(asm-mode-map): Add a major mode menu.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78234
diff
changeset
|
89 '("Insert Newline and Indent" . newline-and-indent)) |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
90 map) |
2670 | 91 "Keymap for Asm mode.") |
473 | 92 |
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
93 (defconst asm-font-lock-keywords |
68134
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
94 (append |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
95 '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.\\sw+\\)*\\)?" |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
96 (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t)) |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
97 ;; label started from ".". |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
98 ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>:" |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
99 1 font-lock-function-name-face) |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
100 ("^\\((\\sw+)\\)?\\s +\\(\\(\\.?\\sw\\|\\s_\\)+\\(\\.\\sw+\\)*\\)" |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
101 2 font-lock-keyword-face) |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
102 ;; directive started from ".". |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
103 ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>[^:]?" |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
104 1 font-lock-keyword-face) |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
105 ;; %register |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
106 ("%\\sw+" . font-lock-variable-name-face)) |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
107 cpp-font-lock-keywords) |
48bf79d0aede
2006-01-06 Masatake YAMATO <jet@gyve.org>
Masatake YAMATO <jet@gyve.org>
parents:
66963
diff
changeset
|
108 "Additional expressions to highlight in Assembler mode.") |
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
109 |
473 | 110 ;;;###autoload |
111 (defun asm-mode () | |
112 "Major mode for editing typical assembler code. | |
2670 | 113 Features a private abbrev table and the following bindings: |
473 | 114 |
115 \\[asm-colon]\toutdent a preceding label, tab to next tab stop. | |
116 \\[tab-to-tab-stop]\ttab to next tab stop. | |
117 \\[asm-newline]\tnewline, then tab to next tab stop. | |
118 \\[asm-comment]\tsmart placement of assembler comments. | |
119 | |
120 The character used for making comments is set by the variable | |
23312 | 121 `asm-comment-char' (which defaults to `?\\;'). |
473 | 122 |
11098 | 123 Alternatively, you may set this variable in `asm-mode-set-comment-hook', |
124 which is called near the beginning of mode initialization. | |
473 | 125 |
2670 | 126 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. |
473 | 127 |
6469 | 128 Special commands: |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
129 \\{asm-mode-map}" |
473 | 130 (interactive) |
131 (kill-all-local-variables) | |
132 (setq mode-name "Assembler") | |
133 (setq major-mode 'asm-mode) | |
134 (setq local-abbrev-table asm-mode-abbrev-table) | |
9472
06623e3543db
* asm-mode.el: (asm-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9385
diff
changeset
|
135 (make-local-variable 'font-lock-defaults) |
06623e3543db
* asm-mode.el: (asm-mode): Set font-lock-defaults.
Simon Marshall <simon@gnu.org>
parents:
9385
diff
changeset
|
136 (setq font-lock-defaults '(asm-font-lock-keywords)) |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
137 (set (make-local-variable 'indent-line-function) 'asm-indent-line) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
138 ;; Stay closer to the old TAB behavior (was tab-to-tab-stop). |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
139 (set (make-local-variable 'tab-always-indent) nil) |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
140 |
473 | 141 (run-hooks 'asm-mode-set-comment-hook) |
11105
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
142 ;; Make our own local child of asm-mode-map |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
143 ;; so we can define our own comment character. |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
144 (use-local-map (nconc (make-sparse-keymap) asm-mode-map)) |
8963d6de6f07
(asm-mode): Make a per-buffer child keymap here.
Richard M. Stallman <rms@gnu.org>
parents:
11098
diff
changeset
|
145 (local-set-key (vector asm-comment-char) 'asm-comment) |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
146 (set-syntax-table (make-syntax-table asm-mode-syntax-table)) |
70227
3f695578124f
(asm-mode, asm-mode-syntax-table): Add
Masatake YAMATO <jet@gyve.org>
parents:
68773
diff
changeset
|
147 (modify-syntax-entry asm-comment-char "< b") |
49402
99a31f21f1c9
(asm-mode): Added syntax table entries for /* */ comments.
Juanma Barranquero <lekktu@gmail.com>
parents:
31983
diff
changeset
|
148 |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
149 (make-local-variable 'comment-start) |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
150 (setq comment-start (string asm-comment-char)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
151 (make-local-variable 'comment-add) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
152 (setq comment-add 1) |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
153 (make-local-variable 'comment-start-skip) |
70227
3f695578124f
(asm-mode, asm-mode-syntax-table): Add
Masatake YAMATO <jet@gyve.org>
parents:
68773
diff
changeset
|
154 (setq comment-start-skip "\\(?:\\s<+\\|/[/*]+\\)[ \t]*") |
50397
a3e1934e4ead
(asm-mode-syntax-table): Setup entries that do not depend on asm-comment-char.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50352
diff
changeset
|
155 (make-local-variable 'comment-end-skip) |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
156 (setq comment-end-skip "[ \t]*\\(\\s>\\|\\*+/\\)") |
473 | 157 (make-local-variable 'comment-end) |
158 (setq comment-end "") | |
159 (setq fill-prefix "\t") | |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
160 (run-mode-hooks 'asm-mode-hook)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
161 |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
162 (defun asm-indent-line () |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
163 "Auto-indent the current line." |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
164 (interactive) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
165 (let* ((savep (point)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
166 (indent (condition-case nil |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
167 (save-excursion |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
168 (forward-line 0) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
169 (skip-chars-forward " \t") |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
170 (if (>= (point) savep) (setq savep nil)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
171 (max (asm-calculate-indentation) 0)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
172 (error 0)))) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
173 (if savep |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
174 (save-excursion (indent-line-to indent)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
175 (indent-line-to indent)))) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
176 |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
177 (defun asm-calculate-indentation () |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
178 (or |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
179 ;; Flush labels to the left margin. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
180 (and (looking-at "\\(\\sw\\|\\s_\\)+:") 0) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
181 ;; Same thing for `;;;' comments. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
182 (and (looking-at "\\s<\\s<\\s<") 0) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
183 ;; Simple `;' comments go to the comment-column. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
184 (and (looking-at "\\s<\\(\\S<\\|\\'\\)") comment-column) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
185 ;; The rest goes at the first tab stop. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
186 (or (car tab-stop-list) tab-width))) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
187 |
473 | 188 (defun asm-colon () |
189 "Insert a colon; if it follows a label, delete the label's indentation." | |
190 (interactive) | |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
191 (let ((labelp nil)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
192 (save-excursion |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
193 (skip-syntax-backward "w_") |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
194 (skip-syntax-backward " ") |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
195 (if (setq labelp (bolp)) (delete-horizontal-space))) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
196 (call-interactively 'self-insert-command) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
197 (when labelp |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
198 (delete-horizontal-space) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
199 (tab-to-tab-stop)))) |
473 | 200 |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57662
diff
changeset
|
201 ;; Obsolete since Emacs-22.1. |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
202 (defalias 'asm-newline 'newline-and-indent) |
473 | 203 |
204 (defun asm-comment () | |
205 "Convert an empty comment to a `larger' kind, or start a new one. | |
206 These are the known comment classes: | |
207 | |
208 1 -- comment to the right of the code (at the comment-column) | |
209 2 -- comment on its own line, indented like code | |
210 3 -- comment on its own line, beginning at the left-most column. | |
211 | |
212 Suggested usage: while writing your code, trigger asm-comment | |
213 repeatedly until you are satisfied with the kind of comment." | |
214 (interactive) | |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
215 (comment-normalize-vars) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
216 (let (comempty comment) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
217 (save-excursion |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
218 (beginning-of-line) |
64394
f0ee06ae643c
(asm-comment): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
219 (with-no-warnings |
f0ee06ae643c
(asm-comment): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64085
diff
changeset
|
220 (setq comment (comment-search-forward (line-end-position) t))) |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
221 (setq comempty (looking-at "[ \t]*$"))) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
222 |
473 | 223 (cond |
224 | |
225 ;; Blank line? Then start comment at code indent level. | |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
226 ;; Just like `comment-dwim'. -stef |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
227 ((save-excursion (beginning-of-line) (looking-at "^[ \t]*$")) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
228 (indent-according-to-mode) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
229 (insert asm-comment-char asm-comment-char ?\ )) |
473 | 230 |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
231 ;; Nonblank line w/o comment => start a comment at comment-column. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
232 ;; Also: point before the comment => jump inside. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
233 ((or (null comment) (< (point) comment)) |
473 | 234 (indent-for-comment)) |
235 | |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
236 ;; Flush-left or non-empty comment present => just insert character. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
237 ((or (not comempty) (save-excursion (goto-char comment) (bolp))) |
473 | 238 (insert asm-comment-char)) |
239 | |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
240 ;; Empty code-level comment => upgrade to next comment level. |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
241 ((save-excursion (goto-char comment) (skip-chars-backward " \t") (bolp)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
242 (goto-char comment) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
243 (insert asm-comment-char) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
244 (indent-for-comment)) |
473 | 245 |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
246 ;; Empty comment ends non-empty code line => new comment above. |
473 | 247 (t |
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
248 (goto-char comment) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
249 (skip-chars-backward " \t") |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
250 (delete-region (point) (line-end-position)) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
251 (beginning-of-line) (insert "\n") (backward-char) |
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
252 (asm-comment))))) |
473 | 253 |
18383 | 254 (provide 'asm-mode) |
255 | |
52401 | 256 ;;; arch-tag: 210e695f-f338-4376-8913-a4c5c72ac848 |
473 | 257 ;;; asm-mode.el ends here |