Mercurial > emacs
annotate lisp/progmodes/asm-mode.el @ 63092:80ef8a2a052d
(debug): Don't bury the buffer unless it's in a dedicated window.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Mon, 06 Jun 2005 19:47:05 +0000 |
| parents | aac0a33f5772 |
| children | 18a818a2ee7c 3ebd9bdb4fe5 |
| 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 |
|
49570
288cda7c05fb
(asm-font-lock-keywords): Allow arbitrary
Andreas Schwab <schwab@suse.de>
parents:
49402
diff
changeset
|
3 ;; Copyright (C) 1991, 2003 Free Software Foundation, Inc. |
| 869 | 4 |
|
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> |
| 11098 | 6 ;; Maintainer: FSF |
|
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
7 ;; Keywords: tools, languages |
|
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
8 |
| 473 | 9 ;; This file is part of GNU Emacs. |
| 10 | |
| 11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 12 ;; it under the terms of the GNU General Public License as published by | |
| 869 | 13 ;; the Free Software Foundation; either version 2, or (at your option) |
| 473 | 14 ;; any later version. |
| 15 | |
| 16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 ;; GNU General Public License for more details. | |
| 20 | |
| 21 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 24 ;; Boston, MA 02111-1307, USA. | |
| 473 | 25 |
|
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
26 ;;; Commentary: |
|
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
27 |
|
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
28 ;; This mode was written by Eric S. Raymond <esr@snark.thyrsus.com>, |
| 473 | 29 ;; inspired by an earlier asm-mode by Martin Neitzel. |
| 30 | |
| 31 ;; This minor mode is based on text mode. It defines a private abbrev table | |
| 32 ;; that can be used to save abbrevs for assembler mnemonics. It binds just | |
| 33 ;; five keys: | |
| 34 ;; | |
| 35 ;; TAB tab to next tab stop | |
| 36 ;; : 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
|
37 ;; 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
|
38 ;; 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
|
39 ;; 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
|
40 ;; Asm mode buffers. |
| 473 | 41 ;; C-j, C-m newline and tab to tab stop |
| 42 ;; | |
| 43 ;; 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
|
44 |
| 473 | 45 ;; This mode runs two hooks: |
| 11098 | 46 ;; 1) An asm-mode-set-comment-hook before the part of the initialization |
| 473 | 47 ;; depending on asm-comment-char, and |
| 48 ;; 2) an asm-mode-hook at the end of initialization. | |
| 49 | |
|
810
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
50 ;;; Code: |
|
80303373daae
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
803
diff
changeset
|
51 |
| 20781 | 52 (defgroup asm nil |
| 53 "Mode for editing assembler code." | |
| 54 :group 'languages) | |
| 55 | |
| 23312 | 56 (defcustom asm-comment-char ?\; |
| 20781 | 57 "*The comment-start character assumed by Asm mode." |
| 58 :type 'character | |
| 59 :group 'asm) | |
| 473 | 60 |
|
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
|
61 (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
|
62 (let ((st (make-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
|
63 (modify-syntax-entry ?\n ">" st) |
|
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 (modify-syntax-entry ?/ ". 14b" st) |
|
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
|
65 (modify-syntax-entry ?* ". 23b" st) |
|
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
|
66 st) |
| 2670 | 67 "Syntax table used while in Asm mode.") |
| 473 | 68 |
| 69 (defvar asm-mode-abbrev-table nil | |
| 2670 | 70 "Abbrev table used while in Asm mode.") |
| 473 | 71 (define-abbrev-table 'asm-mode-abbrev-table ()) |
| 72 | |
|
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
|
73 (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
|
74 (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
|
75 ;; 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
|
76 (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
|
77 (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
|
78 (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
|
79 (define-key map "\C-m" '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
|
80 map) |
| 2670 | 81 "Keymap for Asm mode.") |
| 473 | 82 |
|
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
83 (defconst asm-font-lock-keywords |
|
49570
288cda7c05fb
(asm-font-lock-keywords): Allow arbitrary
Andreas Schwab <schwab@suse.de>
parents:
49402
diff
changeset
|
84 '(("^\\(\\(\\sw\\|\\s_\\)+\\)\\>:?[ \t]*\\(\\sw+\\(\\.\\sw+\\)*\\)?" |
|
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
85 (1 font-lock-function-name-face) (3 font-lock-keyword-face nil t)) |
|
51655
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
86 ;; label started from ".". |
|
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
87 ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>:" |
|
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
88 1 font-lock-function-name-face) |
|
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
89 ("^\\((\\sw+)\\)?\\s +\\(\\(\\.?\\sw\\|\\s_\\)+\\(\\.\\sw+\\)*\\)" |
|
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
90 2 font-lock-keyword-face) |
|
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
91 ;; directive started from ".". |
|
abc46b69deaa
* progmodes/asm-mode.el (asm-font-lock-keywords): Support
Masatake YAMATO <jet@gyve.org>
parents:
50401
diff
changeset
|
92 ("^\\(\\.\\(\\sw\\|\\s_\\)+\\)\\>[^:]?" |
|
57662
7e610a0ca662
(asm-font-lock-keywords): Use font-lock-variable-name-face for registers.
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
93 1 font-lock-keyword-face) |
|
7e610a0ca662
(asm-font-lock-keywords): Use font-lock-variable-name-face for registers.
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
94 ;; %register |
|
7e610a0ca662
(asm-font-lock-keywords): Use font-lock-variable-name-face for registers.
Nick Roberts <nickrob@snap.net.nz>
parents:
52401
diff
changeset
|
95 ("%\\sw+" . font-lock-variable-name-face)) |
|
9385
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
96 "Additional expressions to highlight in Assembler mode.") |
|
297f0781c8ae
(asm-font-lock-keywords): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
7384
diff
changeset
|
97 |
| 473 | 98 ;;;###autoload |
| 99 (defun asm-mode () | |
| 100 "Major mode for editing typical assembler code. | |
| 2670 | 101 Features a private abbrev table and the following bindings: |
| 473 | 102 |
| 103 \\[asm-colon]\toutdent a preceding label, tab to next tab stop. | |
| 104 \\[tab-to-tab-stop]\ttab to next tab stop. | |
| 105 \\[asm-newline]\tnewline, then tab to next tab stop. | |
| 106 \\[asm-comment]\tsmart placement of assembler comments. | |
| 107 | |
| 108 The character used for making comments is set by the variable | |
| 23312 | 109 `asm-comment-char' (which defaults to `?\\;'). |
| 473 | 110 |
| 11098 | 111 Alternatively, you may set this variable in `asm-mode-set-comment-hook', |
| 112 which is called near the beginning of mode initialization. | |
| 473 | 113 |
| 2670 | 114 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. |
| 473 | 115 |
| 6469 | 116 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
|
117 \\{asm-mode-map}" |
| 473 | 118 (interactive) |
| 119 (kill-all-local-variables) | |
| 120 (setq mode-name "Assembler") | |
| 121 (setq major-mode 'asm-mode) | |
| 122 (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
|
123 (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
|
124 (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
|
125 (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
|
126 ;; 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
|
127 (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
|
128 |
| 473 | 129 (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
|
130 ;; 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
|
131 ;; 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
|
132 (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
|
133 (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
|
134 (set-syntax-table (make-syntax-table 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
|
135 (modify-syntax-entry asm-comment-char "<") |
|
49402
99a31f21f1c9
(asm-mode): Added syntax table entries for /* */ comments.
Juanma Barranquero <lekktu@gmail.com>
parents:
31983
diff
changeset
|
136 |
|
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
|
137 (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
|
138 (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
|
139 (make-local-variable 'comment-add) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
140 (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
|
141 (make-local-variable 'comment-start-skip) |
|
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
|
142 (setq comment-start-skip "\\(?:\\s<+\\|/\\*+\\)[ \t]*") |
|
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
|
143 (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
|
144 (setq comment-end-skip "[ \t]*\\(\\s>\\|\\*+/\\)") |
| 473 | 145 (make-local-variable 'comment-end) |
| 146 (setq comment-end "") | |
| 147 (setq fill-prefix "\t") | |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
148 (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
|
149 |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
150 (defun asm-indent-line () |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
151 "Auto-indent the current line." |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
152 (interactive) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
153 (let* ((savep (point)) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
154 (indent (condition-case nil |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
155 (save-excursion |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
156 (forward-line 0) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
157 (skip-chars-forward " \t") |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
158 (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
|
159 (max (asm-calculate-indentation) 0)) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
160 (error 0)))) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
161 (if savep |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
162 (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
|
163 (indent-line-to indent)))) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
164 |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
165 (defun asm-calculate-indentation () |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
166 (or |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
167 ;; 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
|
168 (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
|
169 ;; Same thing for `;;;' comments. |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
170 (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
|
171 ;; 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
|
172 (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
|
173 ;; 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
|
174 (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
|
175 |
| 473 | 176 (defun asm-colon () |
| 177 "Insert a colon; if it follows a label, delete the label's indentation." | |
| 178 (interactive) | |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
179 (let ((labelp nil)) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
180 (save-excursion |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
181 (skip-syntax-backward "w_") |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
182 (skip-syntax-backward " ") |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
183 (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
|
184 (call-interactively 'self-insert-command) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
185 (when labelp |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
186 (delete-horizontal-space) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
187 (tab-to-tab-stop)))) |
| 473 | 188 |
|
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57662
diff
changeset
|
189 ;; 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
|
190 (defalias 'asm-newline 'newline-and-indent) |
| 473 | 191 |
| 192 (defun asm-comment () | |
| 193 "Convert an empty comment to a `larger' kind, or start a new one. | |
| 194 These are the known comment classes: | |
| 195 | |
| 196 1 -- comment to the right of the code (at the comment-column) | |
| 197 2 -- comment on its own line, indented like code | |
| 198 3 -- comment on its own line, beginning at the left-most column. | |
| 199 | |
| 200 Suggested usage: while writing your code, trigger asm-comment | |
| 201 repeatedly until you are satisfied with the kind of comment." | |
| 202 (interactive) | |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
203 (comment-normalize-vars) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
204 (let (comempty comment) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
205 (save-excursion |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
206 (beginning-of-line) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
207 (setq comment (comment-search-forward (line-end-position) t)) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
208 (setq comempty (looking-at "[ \t]*$"))) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
209 |
| 473 | 210 (cond |
| 211 | |
| 212 ;; 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
|
213 ;; Just like `comment-dwim'. -stef |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
214 ((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
|
215 (indent-according-to-mode) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
216 (insert asm-comment-char asm-comment-char ?\ )) |
| 473 | 217 |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
218 ;; 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
|
219 ;; 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
|
220 ((or (null comment) (< (point) comment)) |
| 473 | 221 (indent-for-comment)) |
| 222 | |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
223 ;; 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
|
224 ((or (not comempty) (save-excursion (goto-char comment) (bolp))) |
| 473 | 225 (insert asm-comment-char)) |
| 226 | |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
227 ;; 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
|
228 ((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
|
229 (goto-char comment) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
230 (insert asm-comment-char) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
231 (indent-for-comment)) |
| 473 | 232 |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
233 ;; Empty comment ends non-empty code line => new comment above. |
| 473 | 234 (t |
|
50401
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
235 (goto-char comment) |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
236 (skip-chars-backward " \t") |
|
465c72f54419
(asm-calculate-indentation, asm-indent-line): New functions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50397
diff
changeset
|
237 (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
|
238 (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
|
239 (asm-comment))))) |
| 473 | 240 |
| 18383 | 241 (provide 'asm-mode) |
| 242 | |
| 52401 | 243 ;;; arch-tag: 210e695f-f338-4376-8913-a4c5c72ac848 |
| 473 | 244 ;;; asm-mode.el ends here |
