Mercurial > emacs
annotate lisp/progmodes/make-mode.el @ 42811:cf0c0ef57504
*** empty log message ***
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Thu, 17 Jan 2002 19:29:24 +0000 |
| parents | d00b43e2316c |
| children | 7d7d818ed852 |
| rev | line source |
|---|---|
|
13402
1f9832fe9e44
(makefile-define-space-face): Don't make face if non-X.
Karl Heuer <kwzh@gnu.org>
parents:
13333
diff
changeset
|
1 ;;; make-mode.el --- makefile editing commands for Emacs |
| 809 | 2 |
|
41642
d00b43e2316c
Move `provide' to the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41641
diff
changeset
|
3 ;; Copyright (C) 1992,94,99,2000,2001 Free Software Foundation, Inc. |
| 841 | 4 |
| 809 | 5 ;; Author: Thomas Neumann <tom@smart.bo.open.de> |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
6 ;; Eric S. Raymond <esr@snark.thyrsus.com> |
| 17976 | 7 ;; Maintainer: FSF |
| 809 | 8 ;; Adapted-By: ESR |
|
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
809
diff
changeset
|
9 ;; Keywords: unix, tools |
| 809 | 10 |
| 2671 | 11 ;; RMS: |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
12 ;; This needs work. |
| 2671 | 13 ;; Also, the doc strings need fixing: the first line doesn't stand alone, |
| 14 ;; and other usage is not high quality. Symbol names don't have `...'. | |
| 15 | |
| 809 | 16 ;; This file is part of GNU Emacs. |
| 17 | |
| 18 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 19 ;; it under the terms of the GNU General Public License as published by | |
| 12244 | 20 ;; the Free Software Foundation; either version 2, or (at your option) |
| 809 | 21 ;; any later version. |
| 22 | |
| 23 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 26 ;; GNU General Public License for more details. | |
| 27 | |
| 28 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 29 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 30 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 31 ;; Boston, MA 02111-1307, USA. | |
| 809 | 32 |
|
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
33 ;;; Commentary: |
|
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
34 |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
35 ;; A major mode for editing makefiles. The mode knows about Makefile |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
36 ;; syntax and defines M-n and M-p to move to next and previous productions. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
37 ;; |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
38 ;; The keys $, =, : and . are electric; they try to help you fill in a |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
39 ;; macro reference, macro definition, ordinary target name, or special |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
40 ;; target name, respectively. Such names are completed using a list of |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
41 ;; targets and macro names parsed out of the makefile. This list is |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
42 ;; automatically updated, if necessary, whenever you invoke one of |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
43 ;; these commands. You can force it to be updated with C-c C-p. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
44 ;; |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
45 ;; The command C-c C-f adds certain filenames in the current directory |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
46 ;; as targets. You can filter out filenames by setting the variable |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
47 ;; makefile-ignored-files-in-pickup-regex. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
48 ;; |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
49 ;; The command C-c C-u grinds for a bit, then pops up a report buffer |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
50 ;; showing which target names are up-to-date with respect to their |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
51 ;; prerequisites, which targets are out-of-date, and which have no |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
52 ;; prerequisites. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
53 ;; |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
54 ;; The command C-c C-b pops up a browser window listing all target and |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
55 ;; macro names. You can mark or unmark items wit C-c SPC, and insert |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
56 ;; all marked items back in the Makefile with C-c TAB. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
57 ;; |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
58 ;; The command C-c TAB in the makefile buffer inserts a GNU make builtin. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
59 ;; You will be prompted for the builtin's args. |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
60 ;; |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
61 ;; There are numerous other customization variables. |
|
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
62 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
63 ;; |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
64 ;; To Do: |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
65 ;; |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
66 ;; * Eliminate electric stuff entirely. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
67 ;; * It might be nice to highlight targets differently depending on |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
68 ;; whether they are up-to-date or not. Not sure how this would |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
69 ;; interact with font-lock. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
70 ;; * Would be nice to edit the commands in ksh-mode and have |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
71 ;; indentation and slashification done automatically. Hard. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
72 ;; * Consider removing browser mode. It seems useless. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
73 ;; * ":" should notice when a new target is made and add it to the |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
74 ;; list (or at least set makefile-need-target-pickup). |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
75 ;; * Make browser into a major mode. |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
76 ;; * Clean up macro insertion stuff. It is a mess. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
77 ;; * Browser entry and exit is weird. Normalize. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
78 ;; * Browser needs to be rewritten. Right now it is kind of a crock. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
79 ;; Should at least: |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
80 ;; * Act more like dired/buffer menu/whatever. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
81 ;; * Highlight as mouse traverses. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
82 ;; * B2 inserts. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
83 ;; * Update documentation above. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
84 ;; * Update texinfo manual. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
85 ;; * Update files.el. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
86 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
87 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
88 |
| 809 | 89 ;;; Code: |
| 90 | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
91 ;; Sadly we need this for a macro. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
92 (eval-when-compile |
| 28503 | 93 (require 'imenu) |
| 94 (require 'dabbrev) | |
| 95 (require 'add-log)) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
96 |
| 809 | 97 ;;; ------------------------------------------------------------ |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2671
diff
changeset
|
98 ;;; Configurable stuff |
| 809 | 99 ;;; ------------------------------------------------------------ |
| 100 | |
| 19008 | 101 (defgroup makefile nil |
| 102 "Makefile editing commands for Emacs." | |
| 103 :group 'tools | |
| 104 :prefix "makefile-") | |
| 809 | 105 |
|
19028
f2458ec72074
(makefile-space-face): Add defface.
Richard M. Stallman <rms@gnu.org>
parents:
19008
diff
changeset
|
106 (defface makefile-space-face |
|
f2458ec72074
(makefile-space-face): Add defface.
Richard M. Stallman <rms@gnu.org>
parents:
19008
diff
changeset
|
107 '((((class color)) (:background "hotpink")) |
| 22837 | 108 (t (:reverse-video t))) |
|
19028
f2458ec72074
(makefile-space-face): Add defface.
Richard M. Stallman <rms@gnu.org>
parents:
19008
diff
changeset
|
109 "Face to use for highlighting leading spaces in Font-Lock mode." |
|
f2458ec72074
(makefile-space-face): Add defface.
Richard M. Stallman <rms@gnu.org>
parents:
19008
diff
changeset
|
110 :group 'faces |
|
f2458ec72074
(makefile-space-face): Add defface.
Richard M. Stallman <rms@gnu.org>
parents:
19008
diff
changeset
|
111 :group 'makemode) |
|
f2458ec72074
(makefile-space-face): Add defface.
Richard M. Stallman <rms@gnu.org>
parents:
19008
diff
changeset
|
112 |
| 19008 | 113 (defcustom makefile-browser-buffer-name "*Macros and Targets*" |
| 28503 | 114 "*Name of the macro- and target browser buffer." |
| 19008 | 115 :type 'string |
| 116 :group 'makefile) | |
| 117 | |
| 118 (defcustom makefile-target-colon ":" | |
| 28503 | 119 "*String to append to all target names inserted by `makefile-insert-target'. |
| 19008 | 120 \":\" or \"::\" are common values." |
| 121 :type 'string | |
| 122 :group 'makefile) | |
| 809 | 123 |
| 19008 | 124 (defcustom makefile-macro-assign " = " |
| 28503 | 125 "*String to append to all macro names inserted by `makefile-insert-macro'. |
| 809 | 126 The normal value should be \" = \", since this is what |
| 26136 | 127 standard make expects. However, newer makes such as dmake |
| 809 | 128 allow a larger variety of different macro assignments, so you |
| 19008 | 129 might prefer to use \" += \" or \" := \" ." |
| 130 :type 'string | |
| 131 :group 'makefile) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
132 |
| 19008 | 133 (defcustom makefile-electric-keys nil |
| 28503 | 134 "*If non-nil, Makefile mode should install electric keybindings. |
| 19008 | 135 Default is nil." |
| 136 :type 'boolean | |
| 137 :group 'makefile) | |
| 138 | |
| 139 (defcustom makefile-use-curly-braces-for-macros-p nil | |
| 28503 | 140 "*Controls the style of generated macro references. |
| 19008 | 141 Non-nil means macro references should use curly braces, like `${this}'. |
| 142 nil means use parentheses, like `$(this)'." | |
| 143 :type 'boolean | |
| 144 :group 'makefile) | |
| 809 | 145 |
| 19008 | 146 (defcustom makefile-tab-after-target-colon t |
| 28503 | 147 "*If non-nil, insert a TAB after a target colon. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
148 Otherwise, a space is inserted. |
| 19008 | 149 The default is t." |
| 150 :type 'boolean | |
| 151 :group 'makefile) | |
| 809 | 152 |
| 19008 | 153 (defcustom makefile-browser-leftmost-column 10 |
| 28503 | 154 "*Number of blanks to the left of the browser selection mark." |
| 19008 | 155 :type 'integer |
| 156 :group 'makefile) | |
| 809 | 157 |
| 19008 | 158 (defcustom makefile-browser-cursor-column 10 |
| 28503 | 159 "*Column the cursor goes to when it moves up or down in the Makefile browser." |
| 19008 | 160 :type 'integer |
| 161 :group 'makefile) | |
| 809 | 162 |
| 19008 | 163 (defcustom makefile-backslash-column 48 |
| 164 "*Column in which `makefile-backslash-region' inserts backslashes." | |
| 165 :type 'integer | |
| 166 :group 'makefile) | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
167 |
| 19008 | 168 (defcustom makefile-backslash-align t |
| 28503 | 169 "*If non-nil, `makefile-backslash-region' will align backslashes." |
| 19008 | 170 :type 'boolean |
| 171 :group 'makefile) | |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
172 |
| 19008 | 173 (defcustom makefile-browser-selected-mark "+ " |
| 28503 | 174 "*String used to mark selected entries in the Makefile browser." |
| 19008 | 175 :type 'string |
| 176 :group 'makefile) | |
| 809 | 177 |
| 19008 | 178 (defcustom makefile-browser-unselected-mark " " |
| 28503 | 179 "*String used to mark unselected entries in the Makefile browser." |
| 19008 | 180 :type 'string |
| 181 :group 'makefile) | |
| 809 | 182 |
| 19008 | 183 (defcustom makefile-browser-auto-advance-after-selection-p t |
| 28503 | 184 "*If non-nil, cursor will move after item is selected in Makefile browser." |
| 19008 | 185 :type 'boolean |
| 186 :group 'makefile) | |
| 809 | 187 |
| 19008 | 188 (defcustom makefile-pickup-everything-picks-up-filenames-p nil |
| 28503 | 189 "*If non-nil, `makefile-pickup-everything' picks up filenames as targets. |
|
19896
b27fcef497c1
(makefile-pickup-everything-picks-up-filenames-p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19028
diff
changeset
|
190 This means it calls `makefile-pickup-filenames-as-targets'. |
| 19008 | 191 Otherwise filenames are omitted." |
| 192 :type 'boolean | |
| 193 :group 'makefile) | |
| 809 | 194 |
| 19008 | 195 (defcustom makefile-cleanup-continuations-p t |
| 28503 | 196 "*If non-nil, automatically clean up continuation lines when saving. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
197 A line is cleaned up by removing all whitespace following a trailing |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
198 backslash. This is done silently. |
| 26136 | 199 IMPORTANT: Please note that enabling this option causes Makefile mode |
| 19008 | 200 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\"." |
| 201 :type 'boolean | |
| 202 :group 'makefile) | |
| 809 | 203 |
| 26621 | 204 (defcustom makefile-mode-hook nil |
| 28503 | 205 "*Normal hook run by `makefile-mode'." |
| 26621 | 206 :type 'hook |
| 207 :group 'makefile) | |
| 208 | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
209 (defvar makefile-browser-hook '()) |
| 809 | 210 |
| 211 ;; | |
| 212 ;; Special targets for DMake, Sun's make ... | |
| 213 ;; | |
| 19008 | 214 (defcustom makefile-special-targets-list |
| 809 | 215 '(("DEFAULT") ("DONE") ("ERROR") ("EXPORT") |
| 216 ("FAILED") ("GROUPEPILOG") ("GROUPPROLOG") ("IGNORE") | |
| 217 ("IMPORT") ("INCLUDE") ("INCLUDEDIRS") ("INIT") | |
| 218 ("KEEP_STATE") ("MAKEFILES") ("MAKE_VERSION") ("NO_PARALLEL") | |
| 219 ("PARALLEL") ("PHONY") ("PRECIOUS") ("REMOVE") | |
| 220 ("SCCS_GET") ("SILENT") ("SOURCE") ("SUFFIXES") | |
| 221 ("WAIT") ("c.o") ("C.o") ("m.o") | |
| 222 ("el.elc") ("y.c") ("s.o")) | |
| 28503 | 223 "*List of special targets. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
224 You will be offered to complete on one of those in the minibuffer whenever |
| 28503 | 225 you enter a \".\" at the beginning of a line in `makefile-mode'." |
| 19008 | 226 :type '(repeat (list string)) |
| 227 :group 'makefile) | |
| 809 | 228 |
| 19008 | 229 (defcustom makefile-runtime-macros-list |
|
14688
217222b416f7
(makefile-runtime-macros-list): Add + to the list.
Richard M. Stallman <rms@gnu.org>
parents:
14375
diff
changeset
|
230 '(("@") ("&") (">") ("<") ("*") ("^") ("+") ("?") ("%") ("$")) |
| 28503 | 231 "*List of macros that are resolved by make at runtime. |
| 26136 | 232 If you insert a macro reference using `makefile-insert-macro-ref', the name |
| 233 of the macro is checked against this list. If it can be found its name will | |
| 19008 | 234 not be enclosed in { } or ( )." |
| 235 :type '(repeat (list string)) | |
| 236 :group 'makefile) | |
| 809 | 237 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
238 ;; Note that the first big subexpression is used by font lock. Note |
| 24271 | 239 ;; that if you change this regexp you might have to fix the imenu |
| 240 ;; index in makefile-imenu-generic-expression. | |
| 809 | 241 (defconst makefile-dependency-regex |
|
22684
f1cde5061b0b
(makefile-font-lock-keywords): Recognize automatic variable references.
Richard M. Stallman <rms@gnu.org>
parents:
21096
diff
changeset
|
242 "^ *\\([^ \n\t#:=]+\\([ \t]+\\([^ \t\n#:=]+\\|\\$[({][^ \t\n#})]+[})]\\)\\)*\\)[ \t]*:\\([ \t]*$\\|\\([^=\n].*$\\)\\)" |
| 809 | 243 "Regex used to find dependency lines in a makefile.") |
| 244 | |
| 26136 | 245 ;; Note that the first subexpression is used by font lock. Note |
| 24271 | 246 ;; that if you change this regexp you might have to fix the imenu |
| 247 ;; index in makefile-imenu-generic-expression. | |
| 809 | 248 (defconst makefile-macroassign-regex |
|
38600
1d8c9639b73c
(makefile-macroassign-regex): Recognize the ?= operator.
Eli Zaretskii <eliz@gnu.org>
parents:
38418
diff
changeset
|
249 "^ *\\([^ \n\t][^:#= \t\n]*\\)[ \t]*[*:+]?[:?]?=" |
| 809 | 250 "Regex used to find macro assignment lines in a makefile.") |
| 251 | |
| 252 (defconst makefile-ignored-files-in-pickup-regex | |
|
5312
aad805608eec
(makefile-ignored-files-in-pickup-regex): Supply missing \\.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
253 "\\(^\\..*\\)\\|\\(.*~$\\)\\|\\(.*,v$\\)\\|\\(\\.[chy]\\)" |
| 809 | 254 "Regex for filenames that will NOT be included in the target list.") |
| 255 | |
|
14117
50df7ee940e8
(makefile-space-face): Don't work on
Karl Heuer <kwzh@gnu.org>
parents:
13995
diff
changeset
|
256 (if (fboundp 'facemenu-unlisted-faces) |
|
50df7ee940e8
(makefile-space-face): Don't work on
Karl Heuer <kwzh@gnu.org>
parents:
13995
diff
changeset
|
257 (add-to-list 'facemenu-unlisted-faces 'makefile-space-face)) |
|
12912
e519963ce31a
(makefile-space-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12373
diff
changeset
|
258 (defvar makefile-space-face 'makefile-space-face |
|
e519963ce31a
(makefile-space-face): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
12373
diff
changeset
|
259 "Face to use for highlighting leading spaces in Font-Lock mode.") |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
260 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
261 (defconst makefile-font-lock-keywords |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
262 (list |
| 28503 | 263 |
|
9477
7a8a379513e4
* makefile.el: (makefile-mode-syntax-table): Made `'' and ``' be
Simon Marshall <simon@gnu.org>
parents:
9454
diff
changeset
|
264 ;; Do macro assignments. These get the "variable-name" face rather |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
265 ;; arbitrarily. |
|
9477
7a8a379513e4
* makefile.el: (makefile-mode-syntax-table): Made `'' and ``' be
Simon Marshall <simon@gnu.org>
parents:
9454
diff
changeset
|
266 (list makefile-macroassign-regex 1 'font-lock-variable-name-face) |
| 28503 | 267 |
|
16511
f81633edcbf5
(makefile-font-lock-keywords): Handle dependencies
Richard M. Stallman <rms@gnu.org>
parents:
16461
diff
changeset
|
268 ;; Do dependencies. These get the function name face. |
|
f81633edcbf5
(makefile-font-lock-keywords): Handle dependencies
Richard M. Stallman <rms@gnu.org>
parents:
16461
diff
changeset
|
269 (list makefile-dependency-regex 1 'font-lock-function-name-face) |
| 28503 | 270 |
|
9477
7a8a379513e4
* makefile.el: (makefile-mode-syntax-table): Made `'' and ``' be
Simon Marshall <simon@gnu.org>
parents:
9454
diff
changeset
|
271 ;; Variable references even in targets/strings/comments: |
|
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
19896
diff
changeset
|
272 '("\\$[({]\\([-a-zA-Z0-9_.]+\\)[}):]" 1 font-lock-constant-face prepend) |
| 28503 | 273 |
|
22684
f1cde5061b0b
(makefile-font-lock-keywords): Recognize automatic variable references.
Richard M. Stallman <rms@gnu.org>
parents:
21096
diff
changeset
|
274 ;; Automatic variable references. |
|
f1cde5061b0b
(makefile-font-lock-keywords): Recognize automatic variable references.
Richard M. Stallman <rms@gnu.org>
parents:
21096
diff
changeset
|
275 '("\\$\\([@%<?^+*]\\)" 1 font-lock-reference-face prepend) |
| 28503 | 276 |
| 277 ;; Fontify conditionals and includes. | |
| 278 ;; Note that plain `if' is an automake conditional, and not a bug. | |
|
37469
6c4e7c0d989a
(makefile-font-lock-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35932
diff
changeset
|
279 (list |
|
6c4e7c0d989a
(makefile-font-lock-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35932
diff
changeset
|
280 (concat "^\\(?: [ \t]*\\)?" |
|
6c4e7c0d989a
(makefile-font-lock-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35932
diff
changeset
|
281 (regexp-opt '("-include" "-sinclude" "include" "sinclude" "ifeq" |
|
6c4e7c0d989a
(makefile-font-lock-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35932
diff
changeset
|
282 "if" "ifneq" "ifdef" "ifndef" "endif" "else") t) |
|
6c4e7c0d989a
(makefile-font-lock-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35932
diff
changeset
|
283 "\\>[ \t]*\\([^: \t\n#]*\\)") |
|
6c4e7c0d989a
(makefile-font-lock-keywords):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
35932
diff
changeset
|
284 '(1 font-lock-keyword-face) '(2 font-lock-variable-name-face)) |
|
28802
f7eed599c0df
(makefile-mode-abbrev-table): New variable.
Gerd Moellmann <gerd@gnu.org>
parents:
28503
diff
changeset
|
285 |
| 12936 | 286 ;; Highlight lines that contain just whitespace. |
| 287 ;; They can cause trouble, especially if they start with a tab. | |
| 288 '("^[ \t]+$" . makefile-space-face) | |
| 289 | |
|
12961
e8028ecec7ea
(makefile-font-lock-keywords): Highlight lines with
Richard M. Stallman <rms@gnu.org>
parents:
12938
diff
changeset
|
290 ;; Highlight shell comments that Make treats as commands, |
|
e8028ecec7ea
(makefile-font-lock-keywords): Highlight lines with
Richard M. Stallman <rms@gnu.org>
parents:
12938
diff
changeset
|
291 ;; since these can fool people. |
|
13804
da3a679bbfac
(makefile-font-lock-keywords): Fix bad structure
Karl Heuer <kwzh@gnu.org>
parents:
13493
diff
changeset
|
292 '("^\t+#" 0 makefile-space-face t) |
|
12961
e8028ecec7ea
(makefile-font-lock-keywords): Highlight lines with
Richard M. Stallman <rms@gnu.org>
parents:
12938
diff
changeset
|
293 |
|
e8028ecec7ea
(makefile-font-lock-keywords): Highlight lines with
Richard M. Stallman <rms@gnu.org>
parents:
12938
diff
changeset
|
294 ;; Highlight spaces that precede tabs. |
|
e8028ecec7ea
(makefile-font-lock-keywords): Highlight lines with
Richard M. Stallman <rms@gnu.org>
parents:
12938
diff
changeset
|
295 ;; They can make a tab fail to be effective. |
|
e8028ecec7ea
(makefile-font-lock-keywords): Highlight lines with
Richard M. Stallman <rms@gnu.org>
parents:
12938
diff
changeset
|
296 '("^\\( +\\)\t" 1 makefile-space-face))) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
297 |
|
24248
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
298 (defvar makefile-imenu-generic-expression |
|
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
299 (list |
|
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
300 (list "Dependencies" makefile-dependency-regex 1) |
|
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
301 (list "Macro Assignment" makefile-macroassign-regex 1)) |
| 26136 | 302 "Imenu generic expression for Makefile mode. See `imenu-generic-expression'.") |
|
24248
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
303 |
| 809 | 304 ;;; ------------------------------------------------------------ |
| 305 ;;; The following configurable variables are used in the | |
| 306 ;;; up-to-date overview . | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2671
diff
changeset
|
307 ;;; The standard configuration assumes that your `make' program |
| 809 | 308 ;;; can be run in question/query mode using the `-q' option, this |
| 309 ;;; means that the command | |
| 310 ;;; | |
| 311 ;;; make -q foo | |
| 312 ;;; | |
| 313 ;;; should return an exit status of zero if the target `foo' is | |
| 314 ;;; up to date and a nonzero exit status otherwise. | |
| 315 ;;; Many makes can do this although the docs/manpages do not mention | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
316 ;;; it. Try it with your favourite one. GNU make, System V make, and |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
317 ;;; Dennis Vadura's DMake have no problems. |
| 809 | 318 ;;; Set the variable `makefile-brave-make' to the name of the |
| 319 ;;; make utility that does this on your system. | |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2671
diff
changeset
|
320 ;;; To understand what this is all about see the function definition |
| 809 | 321 ;;; of `makefile-query-by-make-minus-q' . |
| 322 ;;; ------------------------------------------------------------ | |
| 323 | |
| 19008 | 324 (defcustom makefile-brave-make "make" |
| 28503 | 325 "*How to invoke make, for `makefile-query-targets'. |
| 19008 | 326 This should identify a `make' command that can handle the `-q' option." |
| 327 :type 'string | |
| 328 :group 'makefile) | |
| 809 | 329 |
| 19008 | 330 (defcustom makefile-query-one-target-method 'makefile-query-by-make-minus-q |
| 28503 | 331 "*Function to call to determine whether a make target is up to date. |
| 12936 | 332 The function must satisfy this calling convention: |
| 809 | 333 |
| 334 * As its first argument, it must accept the name of the target to | |
| 335 be checked, as a string. | |
| 336 | |
| 337 * As its second argument, it may accept the name of a makefile | |
| 26136 | 338 as a string. Depending on what you're going to do you may |
| 809 | 339 not need this. |
| 340 | |
| 341 * It must return the integer value 0 (zero) if the given target | |
| 342 should be considered up-to-date in the context of the given | |
| 19008 | 343 makefile, any nonzero integer value otherwise." |
| 344 :type 'function | |
| 345 :group 'makefile) | |
| 809 | 346 |
| 19008 | 347 (defcustom makefile-up-to-date-buffer-name "*Makefile Up-to-date overview*" |
| 28503 | 348 "*Name of the Up-to-date overview buffer." |
| 19008 | 349 :type 'string |
| 350 :group 'makefile) | |
| 809 | 351 |
| 352 ;;; --- end of up-to-date-overview configuration ------------------ | |
| 353 | |
| 28503 | 354 (defvar makefile-mode-abbrev-table nil |
| 355 "Abbrev table in use in Makefile buffers.") | |
| 356 (if makefile-mode-abbrev-table | |
| 357 () | |
| 358 (define-abbrev-table 'makefile-mode-abbrev-table ())) | |
| 359 | |
| 809 | 360 (defvar makefile-mode-map nil |
| 12936 | 361 "The keymap that is used in Makefile mode.") |
| 362 | |
| 809 | 363 (if makefile-mode-map |
| 364 () | |
| 365 (setq makefile-mode-map (make-sparse-keymap)) | |
| 366 ;; set up the keymap | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
367 (define-key makefile-mode-map "\C-c:" 'makefile-insert-target-ref) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
368 (if makefile-electric-keys |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
369 (progn |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
370 (define-key makefile-mode-map "$" 'makefile-insert-macro-ref) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
371 (define-key makefile-mode-map ":" 'makefile-electric-colon) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
372 (define-key makefile-mode-map "=" 'makefile-electric-equal) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
373 (define-key makefile-mode-map "." 'makefile-electric-dot))) |
| 809 | 374 (define-key makefile-mode-map "\C-c\C-f" 'makefile-pickup-filenames-as-targets) |
| 375 (define-key makefile-mode-map "\C-c\C-b" 'makefile-switch-to-browser) | |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
376 (define-key makefile-mode-map "\C-c\C-c" 'comment-region) |
| 809 | 377 (define-key makefile-mode-map "\C-c\C-p" 'makefile-pickup-everything) |
| 378 (define-key makefile-mode-map "\C-c\C-u" 'makefile-create-up-to-date-overview) | |
| 379 (define-key makefile-mode-map "\C-c\C-i" 'makefile-insert-gmake-function) | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
380 (define-key makefile-mode-map "\C-c\C-\\" 'makefile-backslash-region) |
| 809 | 381 (define-key makefile-mode-map "\M-p" 'makefile-previous-dependency) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
382 (define-key makefile-mode-map "\M-n" 'makefile-next-dependency) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
383 (define-key makefile-mode-map "\e\t" 'makefile-complete) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
384 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
385 ;; Make menus. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
386 (define-key makefile-mode-map [menu-bar makefile-mode] |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
387 (cons "Makefile" (make-sparse-keymap "Makefile"))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
388 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
389 (define-key makefile-mode-map [menu-bar makefile-mode browse] |
|
12033
f7638ab47de7
Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11638
diff
changeset
|
390 '("Pop up Makefile Browser" . makefile-switch-to-browser)) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
391 (define-key makefile-mode-map [menu-bar makefile-mode complete] |
|
12033
f7638ab47de7
Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11638
diff
changeset
|
392 '("Complete Target or Macro" . makefile-complete)) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
393 (define-key makefile-mode-map [menu-bar makefile-mode pickup] |
|
12033
f7638ab47de7
Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11638
diff
changeset
|
394 '("Find Targets and Macros" . makefile-pickup-everything)) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
395 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
396 (define-key makefile-mode-map [menu-bar makefile-mode prev] |
|
12033
f7638ab47de7
Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11638
diff
changeset
|
397 '("Move to Previous Dependency" . makefile-previous-dependency)) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
398 (define-key makefile-mode-map [menu-bar makefile-mode next] |
|
12033
f7638ab47de7
Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11638
diff
changeset
|
399 '("Move to Next Dependency" . makefile-next-dependency))) |
| 809 | 400 |
| 401 (defvar makefile-browser-map nil | |
| 402 "The keymap that is used in the macro- and target browser.") | |
| 403 (if makefile-browser-map | |
| 404 () | |
| 405 (setq makefile-browser-map (make-sparse-keymap)) | |
| 406 (define-key makefile-browser-map "n" 'makefile-browser-next-line) | |
| 26136 | 407 (define-key makefile-browser-map "\C-n" 'makefile-browser-next-line) |
| 809 | 408 (define-key makefile-browser-map "p" 'makefile-browser-previous-line) |
| 409 (define-key makefile-browser-map "\C-p" 'makefile-browser-previous-line) | |
| 410 (define-key makefile-browser-map " " 'makefile-browser-toggle) | |
| 411 (define-key makefile-browser-map "i" 'makefile-browser-insert-selection) | |
| 26136 | 412 (define-key makefile-browser-map "I" 'makefile-browser-insert-selection-and-quit) |
| 809 | 413 (define-key makefile-browser-map "\C-c\C-m" 'makefile-browser-insert-continuation) |
| 414 (define-key makefile-browser-map "q" 'makefile-browser-quit) | |
| 415 ;; disable horizontal movement | |
| 416 (define-key makefile-browser-map "\C-b" 'undefined) | |
| 26136 | 417 (define-key makefile-browser-map "\C-f" 'undefined)) |
| 809 | 418 |
| 419 | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
420 (defvar makefile-mode-syntax-table nil) |
| 809 | 421 (if makefile-mode-syntax-table |
| 422 () | |
| 423 (setq makefile-mode-syntax-table (make-syntax-table)) | |
| 424 (modify-syntax-entry ?\( "() " makefile-mode-syntax-table) | |
| 425 (modify-syntax-entry ?\) ")( " makefile-mode-syntax-table) | |
| 426 (modify-syntax-entry ?\[ "(] " makefile-mode-syntax-table) | |
|
12938
123200a483ae
(makefile-mode-syntax-table): "]" is a close-paren.
Richard M. Stallman <rms@gnu.org>
parents:
12937
diff
changeset
|
427 (modify-syntax-entry ?\] ")[ " makefile-mode-syntax-table) |
| 26136 | 428 (modify-syntax-entry ?\{ "(} " makefile-mode-syntax-table) |
| 809 | 429 (modify-syntax-entry ?\} "){ " makefile-mode-syntax-table) |
|
9477
7a8a379513e4
* makefile.el: (makefile-mode-syntax-table): Made `'' and ``' be
Simon Marshall <simon@gnu.org>
parents:
9454
diff
changeset
|
430 (modify-syntax-entry ?\' "\" " makefile-mode-syntax-table) |
|
7a8a379513e4
* makefile.el: (makefile-mode-syntax-table): Made `'' and ``' be
Simon Marshall <simon@gnu.org>
parents:
9454
diff
changeset
|
431 (modify-syntax-entry ?\` "\" " makefile-mode-syntax-table) |
| 809 | 432 (modify-syntax-entry ?# "< " makefile-mode-syntax-table) |
| 433 (modify-syntax-entry ?\n "> " makefile-mode-syntax-table)) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
434 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
435 |
| 809 | 436 ;;; ------------------------------------------------------------ |
| 437 ;;; Internal variables. | |
| 438 ;;; You don't need to configure below this line. | |
| 439 ;;; ------------------------------------------------------------ | |
| 440 | |
| 441 (defvar makefile-target-table nil | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
442 "Table of all target names known for this buffer.") |
| 809 | 443 |
| 444 (defvar makefile-macro-table nil | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
445 "Table of all macro names known for this buffer.") |
| 809 | 446 |
| 447 (defvar makefile-browser-client | |
| 12936 | 448 "A buffer in Makefile mode that is currently using the browser.") |
| 809 | 449 |
| 450 (defvar makefile-browser-selection-vector nil) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
451 (defvar makefile-has-prereqs nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
452 (defvar makefile-need-target-pickup t) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
453 (defvar makefile-need-macro-pickup t) |
| 809 | 454 |
| 455 (defvar makefile-mode-hook '()) | |
| 456 | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
457 ;; Each element looks like '("GNU MAKE FUNCTION" "ARG" "ARG" ... ) |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
458 ;; Each "ARG" is used as a prompt for a required argument. |
| 809 | 459 (defconst makefile-gnumake-functions-alist |
| 460 '( | |
| 461 ;; Text functions | |
| 462 ("subst" "From" "To" "In") | |
| 463 ("patsubst" "Pattern" "Replacement" "In") | |
| 464 ("strip" "Text") | |
| 465 ("findstring" "Find what" "In") | |
| 466 ("filter" "Pattern" "Text") | |
| 467 ("filter-out" "Pattern" "Text") | |
| 468 ("sort" "List") | |
| 469 ;; Filename functions | |
| 470 ("dir" "Names") | |
| 471 ("notdir" "Names") | |
| 472 ("suffix" "Names") | |
| 473 ("basename" "Names") | |
|
15523
682a3d405c49
(makefile-gnumake-functions-alist): Add `addprefix'.
Richard M. Stallman <rms@gnu.org>
parents:
14688
diff
changeset
|
474 ("addprefix" "Prefix" "Names") |
| 809 | 475 ("addsuffix" "Suffix" "Names") |
| 476 ("join" "List 1" "List 2") | |
| 477 ("word" "Index" "Text") | |
| 478 ("words" "Text") | |
| 479 ("firstword" "Text") | |
| 480 ("wildcard" "Pattern") | |
| 481 ;; Misc functions | |
| 482 ("foreach" "Variable" "List" "Text") | |
| 483 ("origin" "Variable") | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
484 ("shell" "Command"))) |
| 809 | 485 |
| 486 | |
| 487 ;;; ------------------------------------------------------------ | |
| 488 ;;; The mode function itself. | |
| 489 ;;; ------------------------------------------------------------ | |
| 490 | |
|
2534
0099d6be2b11
(makefile-mode): Fix typo in autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
2400
diff
changeset
|
491 ;;;###autoload |
| 809 | 492 (defun makefile-mode () |
| 493 "Major mode for editing Makefiles. | |
| 12936 | 494 This function ends by invoking the function(s) `makefile-mode-hook'. |
| 809 | 495 |
| 496 \\{makefile-mode-map} | |
| 497 | |
| 498 In the browser, use the following keys: | |
| 499 | |
| 500 \\{makefile-browser-map} | |
| 501 | |
| 12936 | 502 Makefile mode can be configured by modifying the following variables: |
| 809 | 503 |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
504 `makefile-browser-buffer-name': |
| 809 | 505 Name of the macro- and target browser buffer. |
| 506 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
507 `makefile-target-colon': |
| 809 | 508 The string that gets appended to all target names |
| 12936 | 509 inserted by `makefile-insert-target'. |
| 809 | 510 \":\" or \"::\" are quite common values. |
| 511 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
512 `makefile-macro-assign': |
| 809 | 513 The string that gets appended to all macro names |
| 12936 | 514 inserted by `makefile-insert-macro'. |
| 809 | 515 The normal value should be \" = \", since this is what |
| 26136 | 516 standard make expects. However, newer makes such as dmake |
| 809 | 517 allow a larger variety of different macro assignments, so you |
| 518 might prefer to use \" += \" or \" := \" . | |
| 519 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
520 `makefile-tab-after-target-colon': |
| 809 | 521 If you want a TAB (instead of a space) to be appended after the |
| 522 target colon, then set this to a non-nil value. | |
| 523 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
524 `makefile-browser-leftmost-column': |
| 809 | 525 Number of blanks to the left of the browser selection mark. |
| 526 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
527 `makefile-browser-cursor-column': |
| 809 | 528 Column in which the cursor is positioned when it moves |
| 529 up or down in the browser. | |
| 530 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
531 `makefile-browser-selected-mark': |
| 809 | 532 String used to mark selected entries in the browser. |
| 533 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
534 `makefile-browser-unselected-mark': |
| 809 | 535 String used to mark unselected entries in the browser. |
| 536 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
537 `makefile-browser-auto-advance-after-selection-p': |
| 809 | 538 If this variable is set to a non-nil value the cursor |
| 539 will automagically advance to the next line after an item | |
| 540 has been selected in the browser. | |
| 541 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
542 `makefile-pickup-everything-picks-up-filenames-p': |
| 809 | 543 If this variable is set to a non-nil value then |
| 12936 | 544 `makefile-pickup-everything' also picks up filenames as targets |
|
19896
b27fcef497c1
(makefile-pickup-everything-picks-up-filenames-p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
19028
diff
changeset
|
545 (i.e. it calls `makefile-pickup-filenames-as-targets'), otherwise |
| 809 | 546 filenames are omitted. |
| 547 | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
548 `makefile-cleanup-continuations-p': |
| 26136 | 549 If this variable is set to a non-nil value then Makefile mode |
| 809 | 550 will assure that no line in the file ends with a backslash |
| 551 (the continuation character) followed by any whitespace. | |
| 552 This is done by silently removing the trailing whitespace, leaving | |
| 553 the backslash itself intact. | |
| 26136 | 554 IMPORTANT: Please note that enabling this option causes Makefile mode |
| 12936 | 555 to MODIFY A FILE WITHOUT YOUR CONFIRMATION when \"it seems necessary\". |
| 809 | 556 |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
557 `makefile-browser-hook': |
| 809 | 558 A function or list of functions to be called just before the |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
559 browser is entered. This is executed in the makefile buffer. |
| 809 | 560 |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
561 `makefile-special-targets-list': |
| 809 | 562 List of special targets. You will be offered to complete |
| 12936 | 563 on one of those in the minibuffer whenever you enter a `.'. |
| 564 at the beginning of a line in Makefile mode." | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
565 |
| 809 | 566 (interactive) |
| 567 (kill-all-local-variables) | |
|
6798
2594f541e694
(makefile-mode): make-local-variable misspelled as make-local-file.
Karl Heuer <kwzh@gnu.org>
parents:
6146
diff
changeset
|
568 (make-local-variable 'local-write-file-hooks) |
|
6146
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
569 (setq local-write-file-hooks |
|
7024
f00ad05e91b0
(makefile-mode): Removed extra quote before makefile-warn-suspicious-lines.
Richard M. Stallman <rms@gnu.org>
parents:
6798
diff
changeset
|
570 '(makefile-cleanup-continuations makefile-warn-suspicious-lines)) |
|
6146
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
571 (make-local-variable 'makefile-target-table) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
572 (make-local-variable 'makefile-macro-table) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
573 (make-local-variable 'makefile-has-prereqs) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
574 (make-local-variable 'makefile-need-target-pickup) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
575 (make-local-variable 'makefile-need-macro-pickup) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
576 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
577 ;; Font lock. |
|
9477
7a8a379513e4
* makefile.el: (makefile-mode-syntax-table): Made `'' and ``' be
Simon Marshall <simon@gnu.org>
parents:
9454
diff
changeset
|
578 (make-local-variable 'font-lock-defaults) |
|
35932
2b3447fcf42b
(makefile-mode): Set SYNTAX-BEGIN member
Eli Zaretskii <eliz@gnu.org>
parents:
30468
diff
changeset
|
579 (setq font-lock-defaults |
|
2b3447fcf42b
(makefile-mode): Set SYNTAX-BEGIN member
Eli Zaretskii <eliz@gnu.org>
parents:
30468
diff
changeset
|
580 ;; SYNTAX-BEGIN set to backward-paragraph to avoid slow-down |
|
2b3447fcf42b
(makefile-mode): Set SYNTAX-BEGIN member
Eli Zaretskii <eliz@gnu.org>
parents:
30468
diff
changeset
|
581 ;; near the end of a large buffer, due to parse-partial-sexp's |
|
2b3447fcf42b
(makefile-mode): Set SYNTAX-BEGIN member
Eli Zaretskii <eliz@gnu.org>
parents:
30468
diff
changeset
|
582 ;; trying to parse all the way till the beginning of buffer. |
|
2b3447fcf42b
(makefile-mode): Set SYNTAX-BEGIN member
Eli Zaretskii <eliz@gnu.org>
parents:
30468
diff
changeset
|
583 '(makefile-font-lock-keywords nil nil nil backward-paragraph)) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
584 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
585 ;; Add-log. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
586 (make-local-variable 'add-log-current-defun-function) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
587 (setq add-log-current-defun-function 'makefile-add-log-defun) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
588 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
589 ;; Imenu. |
|
24248
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
590 (make-local-variable 'imenu-generic-expression) |
|
fd94cf07b4cc
(makefile-imenu-generic-expression): New var.
Richard M. Stallman <rms@gnu.org>
parents:
22837
diff
changeset
|
591 (setq imenu-generic-expression makefile-imenu-generic-expression) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
592 |
|
11638
2b1d5f2e99cc
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
9758
diff
changeset
|
593 ;; Dabbrev. |
|
2b1d5f2e99cc
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
9758
diff
changeset
|
594 (make-local-variable 'dabbrev-abbrev-skip-leading-regexp) |
|
2b1d5f2e99cc
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
9758
diff
changeset
|
595 (setq dabbrev-abbrev-skip-leading-regexp "\\$") |
|
2b1d5f2e99cc
(makefile-mode): Set dabbrev-abbrev-skip-leading-regexp.
Richard M. Stallman <rms@gnu.org>
parents:
9758
diff
changeset
|
596 |
| 28503 | 597 ;; Other abbrevs. |
| 598 (setq local-abbrev-table makefile-mode-abbrev-table) | |
| 599 | |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
600 ;; Filling. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
601 (make-local-variable 'fill-paragraph-function) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
602 (setq fill-paragraph-function 'makefile-fill-paragraph) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
603 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
604 ;; Comment stuff. |
|
5464
4823e14b1314
(makefile-mode): Make comment-start, comment-end,
Richard M. Stallman <rms@gnu.org>
parents:
5312
diff
changeset
|
605 (make-local-variable 'comment-start) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
606 (setq comment-start "#") |
|
5464
4823e14b1314
(makefile-mode): Make comment-start, comment-end,
Richard M. Stallman <rms@gnu.org>
parents:
5312
diff
changeset
|
607 (make-local-variable 'comment-end) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
608 (setq comment-end "") |
|
5464
4823e14b1314
(makefile-mode): Make comment-start, comment-end,
Richard M. Stallman <rms@gnu.org>
parents:
5312
diff
changeset
|
609 (make-local-variable 'comment-start-skip) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
610 (setq comment-start-skip "#+[ \t]*") |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
611 |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
612 ;; Make sure TAB really inserts \t. |
|
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
613 (set (make-local-variable 'indent-line-function) 'indent-to-left-margin) |
|
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
614 |
| 809 | 615 ;; become the current major mode |
| 616 (setq major-mode 'makefile-mode) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
617 (setq mode-name "Makefile") |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
618 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
619 ;; Activate keymap and syntax table. |
| 809 | 620 (use-local-map makefile-mode-map) |
| 621 (set-syntax-table makefile-mode-syntax-table) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
622 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
623 ;; Real TABs are important in makefiles |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
624 (setq indent-tabs-mode t) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
625 (run-hooks 'makefile-mode-hook)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
626 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
627 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
628 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
629 ;;; Motion code. |
| 809 | 630 |
| 631 (defun makefile-next-dependency () | |
| 12936 | 632 "Move point to the beginning of the next dependency line." |
| 809 | 633 (interactive) |
| 634 (let ((here (point))) | |
| 635 (end-of-line) | |
| 636 (if (re-search-forward makefile-dependency-regex (point-max) t) | |
| 637 (progn (beginning-of-line) t) ; indicate success | |
| 638 (goto-char here) nil))) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
639 |
| 809 | 640 (defun makefile-previous-dependency () |
| 12936 | 641 "Move point to the beginning of the previous dependency line." |
| 809 | 642 (interactive) |
| 643 (let ((here (point))) | |
| 644 (beginning-of-line) | |
| 645 (if (re-search-backward makefile-dependency-regex (point-min) t) | |
| 646 (progn (beginning-of-line) t) ; indicate success | |
| 647 (goto-char here) nil))) | |
| 648 | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
649 |
| 809 | 650 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
651 ;;; Electric keys. Blech. |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
652 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
653 (defun makefile-electric-dot (arg) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
654 "Prompt for the name of a special target to insert. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
655 Only does electric insertion at beginning of line. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
656 Anywhere else just self-inserts." |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
657 (interactive "p") |
| 809 | 658 (if (bolp) |
| 659 (makefile-insert-special-target) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
660 (self-insert-command arg))) |
| 809 | 661 |
| 662 (defun makefile-insert-special-target () | |
|
13995
33b51573611f
(makefile-insert-special-target,
Karl Heuer <kwzh@gnu.org>
parents:
13847
diff
changeset
|
663 "Prompt for and insert a special target name. |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
664 Uses `makefile-special-targets' list." |
| 809 | 665 (interactive) |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
666 (makefile-pickup-targets) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
667 (let ((special-target |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
668 (completing-read "Special target: " |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
669 makefile-special-targets-list nil nil nil))) |
| 809 | 670 (if (zerop (length special-target)) |
| 671 () | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
672 (insert "." special-target ":") |
| 809 | 673 (makefile-forward-after-target-colon)))) |
| 674 | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
675 (defun makefile-electric-equal (arg) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
676 "Prompt for name of a macro to insert. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
677 Only does prompting if point is at beginning of line. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
678 Anywhere else just self-inserts." |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
679 (interactive "p") |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
680 (makefile-pickup-macros) |
| 809 | 681 (if (bolp) |
| 682 (call-interactively 'makefile-insert-macro) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
683 (self-insert-command arg))) |
| 809 | 684 |
| 685 (defun makefile-insert-macro (macro-name) | |
| 686 "Prepare definition of a new macro." | |
| 687 (interactive "sMacro Name: ") | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
688 (makefile-pickup-macros) |
| 809 | 689 (if (not (zerop (length macro-name))) |
| 690 (progn | |
| 691 (beginning-of-line) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
692 (insert macro-name makefile-macro-assign) |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
693 (setq makefile-need-macro-pickup t) |
| 809 | 694 (makefile-remember-macro macro-name)))) |
| 695 | |
| 696 (defun makefile-insert-macro-ref (macro-name) | |
| 12936 | 697 "Complete on a list of known macros, then insert complete ref at point." |
| 809 | 698 (interactive |
| 699 (list | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
700 (progn |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
701 (makefile-pickup-macros) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
702 (completing-read "Refer to macro: " makefile-macro-table nil nil nil)))) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
703 (makefile-do-macro-insertion macro-name)) |
| 809 | 704 |
| 705 (defun makefile-insert-target (target-name) | |
| 706 "Prepare definition of a new target (dependency line)." | |
| 707 (interactive "sTarget: ") | |
| 708 (if (not (zerop (length target-name))) | |
| 709 (progn | |
| 710 (beginning-of-line) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
711 (insert target-name makefile-target-colon) |
| 809 | 712 (makefile-forward-after-target-colon) |
| 713 (end-of-line) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
714 (setq makefile-need-target-pickup t) |
| 809 | 715 (makefile-remember-target target-name)))) |
| 716 | |
| 717 (defun makefile-insert-target-ref (target-name) | |
| 26136 | 718 "Complete on a list of known targets, then insert TARGET-NAME at point." |
| 809 | 719 (interactive |
| 720 (list | |
|
5312
aad805608eec
(makefile-ignored-files-in-pickup-regex): Supply missing \\.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
721 (progn |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
722 (makefile-pickup-targets) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
723 (completing-read "Refer to target: " makefile-target-table nil nil nil)))) |
| 809 | 724 (if (not (zerop (length target-name))) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
725 (insert target-name " "))) |
| 809 | 726 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
727 (defun makefile-electric-colon (arg) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
728 "Prompt for name of new target. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
729 Prompting only happens at beginning of line. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
730 Anywhere else just self-inserts." |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
731 (interactive "p") |
| 809 | 732 (if (bolp) |
| 733 (call-interactively 'makefile-insert-target) | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
734 (self-insert-command arg))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
735 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
736 |
| 809 | 737 |
| 738 ;;; ------------------------------------------------------------ | |
| 739 ;;; Extracting targets and macros from an existing makefile | |
| 740 ;;; ------------------------------------------------------------ | |
| 741 | |
| 742 (defun makefile-pickup-targets () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
743 "Notice names of all target definitions in Makefile." |
| 809 | 744 (interactive) |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
745 (if (not makefile-need-target-pickup) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
746 nil |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
747 (setq makefile-need-target-pickup nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
748 (setq makefile-target-table nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
749 (setq makefile-has-prereqs nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
750 (save-excursion |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
751 (goto-char (point-min)) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
752 (while (re-search-forward makefile-dependency-regex (point-max) t) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
753 (makefile-add-this-line-targets))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
754 (message "Read targets OK."))) |
| 809 | 755 |
| 756 (defun makefile-add-this-line-targets () | |
| 757 (save-excursion | |
| 758 (beginning-of-line) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
759 (let ((done-with-line nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
760 (line-number (1+ (count-lines (point-min) (point))))) |
| 809 | 761 (while (not done-with-line) |
| 762 (skip-chars-forward " \t") | |
| 763 (if (not (setq done-with-line (or (eolp) | |
| 764 (char-equal (char-after (point)) ?:)))) | |
| 765 (progn | |
| 766 (let* ((start-of-target-name (point)) | |
| 767 (target-name | |
| 768 (progn | |
| 769 (skip-chars-forward "^ \t:#") | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
770 (buffer-substring start-of-target-name (point)))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
771 (has-prereqs |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
772 (not (looking-at ":[ \t]*$")))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
773 (if (makefile-remember-target target-name has-prereqs) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
774 (message "Picked up target \"%s\" from line %d" |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
775 target-name line-number))))))))) |
| 809 | 776 |
| 777 (defun makefile-pickup-macros () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
778 "Notice names of all macro definitions in Makefile." |
| 809 | 779 (interactive) |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
780 (if (not makefile-need-macro-pickup) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
781 nil |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
782 (setq makefile-need-macro-pickup nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
783 (setq makefile-macro-table nil) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
784 (save-excursion |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
785 (goto-char (point-min)) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
786 (while (re-search-forward makefile-macroassign-regex (point-max) t) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
787 (makefile-add-this-line-macro) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
788 (forward-line 1))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
789 (message "Read macros OK."))) |
| 809 | 790 |
| 791 (defun makefile-add-this-line-macro () | |
| 792 (save-excursion | |
| 793 (beginning-of-line) | |
| 794 (skip-chars-forward " \t") | |
| 795 (if (not (eolp)) | |
| 796 (let* ((start-of-macro-name (point)) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
797 (line-number (1+ (count-lines (point-min) (point)))) |
| 809 | 798 (macro-name (progn |
| 799 (skip-chars-forward "^ \t:#=*") | |
| 800 (buffer-substring start-of-macro-name (point))))) | |
| 801 (if (makefile-remember-macro macro-name) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
802 (message "Picked up macro \"%s\" from line %d" |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
803 macro-name line-number)))))) |
| 809 | 804 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
805 (defun makefile-pickup-everything (arg) |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
806 "Notice names of all macros and targets in Makefile. |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
807 Prefix arg means force pickups to be redone." |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
808 (interactive "P") |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
809 (if arg |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
810 (progn |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
811 (setq makefile-need-target-pickup t) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
812 (setq makefile-need-macro-pickup t))) |
| 809 | 813 (makefile-pickup-macros) |
| 814 (makefile-pickup-targets) | |
| 815 (if makefile-pickup-everything-picks-up-filenames-p | |
| 816 (makefile-pickup-filenames-as-targets))) | |
| 817 | |
| 818 (defun makefile-pickup-filenames-as-targets () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
819 "Scan the current directory for filenames to use as targets. |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
820 Checks each filename against `makefile-ignored-files-in-pickup-regex' |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
821 and adds all qualifying names to the list of known targets." |
| 809 | 822 (interactive) |
| 823 (let* ((dir (file-name-directory (buffer-file-name))) | |
| 824 (raw-filename-list (if dir | |
| 825 (file-name-all-completions "" dir) | |
| 826 (file-name-all-completions "" "")))) | |
|
29589
793e4f0f455a
(makefile-pickup-filenames-as-targets): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28802
diff
changeset
|
827 (mapcar (lambda (name) |
| 809 | 828 (if (and (not (file-directory-p name)) |
| 829 (not (string-match makefile-ignored-files-in-pickup-regex | |
| 830 name))) | |
| 831 (if (makefile-remember-target name) | |
| 832 (message "Picked up file \"%s\" as target" name)))) | |
| 833 raw-filename-list))) | |
| 834 | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
835 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
836 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
837 ;;; Completion. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
838 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
839 (defun makefile-complete () |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
840 "Perform completion on Makefile construct preceding point. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
841 Can complete variable and target names. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
842 The context determines which are considered." |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
843 (interactive) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
844 (let* ((beg (save-excursion |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
845 (skip-chars-backward "^$(){}:#= \t\n") |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
846 (point))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
847 (try (buffer-substring beg (point))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
848 (do-macros nil) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
849 (paren nil)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
850 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
851 (save-excursion |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
852 (goto-char beg) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
853 (let ((pc (preceding-char))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
854 (cond |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
855 ;; Beginning of line means anything. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
856 ((bolp) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
857 ()) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
858 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
859 ;; Preceding "$" means macros only. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
860 ((= pc ?$) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
861 (setq do-macros t)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
862 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
863 ;; Preceding "$(" or "${" means macros only. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
864 ((and (or (= pc ?{) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
865 (= pc ?\()) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
866 (progn |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
867 (setq paren pc) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
868 (backward-char) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
869 (and (not (bolp)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
870 (= (preceding-char) ?$)))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
871 (setq do-macros t))))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
872 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
873 ;; Try completion. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
874 (let* ((table (append (if do-macros |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
875 '() |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
876 makefile-target-table) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
877 makefile-macro-table)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
878 (completion (try-completion try table))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
879 (cond |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
880 ;; Exact match, so insert closing paren or colon. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
881 ((eq completion t) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
882 (insert (if do-macros |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
883 (if (eq paren ?{) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
884 ?} |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
885 ?\)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
886 (if (save-excursion |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
887 (goto-char beg) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
888 (bolp)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
889 ":" |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
890 " ")))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
891 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
892 ;; No match. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
893 ((null completion) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
894 (message "Can't find completion for \"%s\"" try) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
895 (ding)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
896 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
897 ;; Partial completion. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
898 ((not (string= try completion)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
899 ;; FIXME it would be nice to supply the closing paren if an |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
900 ;; exact, unambiguous match were found. That is not possible |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
901 ;; right now. Ditto closing ":" for targets. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
902 (delete-region beg (point)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
903 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
904 ;; DO-MACROS means doing macros only. If not that, then check |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
905 ;; to see if this completion is a macro. Special insertion |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
906 ;; must be done for macros. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
907 (if (or do-macros |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
908 (assoc completion makefile-macro-table)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
909 (let ((makefile-use-curly-braces-for-macros-p |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
910 (or (eq paren ?{) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
911 makefile-use-curly-braces-for-macros-p))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
912 (delete-backward-char 2) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
913 (makefile-do-macro-insertion completion) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
914 (delete-backward-char 1)) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
915 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
916 ;; Just insert targets. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
917 (insert completion))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
918 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
919 ;; Can't complete any more, so make completion list. FIXME |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
920 ;; this doesn't do the right thing when the completion is |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
921 ;; actually inserted. I don't think there is an easy way to do |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
922 ;; that. |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
923 (t |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
924 (message "Making completion list...") |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
925 (let ((list (all-completions try table))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
926 (with-output-to-temp-buffer "*Completions*" |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
927 (display-completion-list list))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
928 (message "Making completion list...done")))))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
929 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
930 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
931 |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
932 ;; Backslashification. Stolen from cc-mode.el. |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
933 |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
934 (defun makefile-backslash-region (from to delete-flag) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
935 "Insert, align, or delete end-of-line backslashes on the lines in the region. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
936 With no argument, inserts backslashes and aligns existing backslashes. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
937 With an argument, deletes the backslashes. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
938 |
| 26136 | 939 This function does not modify the last line of the region if the region ends |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
940 right at the start of the following line; it does not modify blank lines |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
941 at the start of the region. So you can put the region around an entire macro |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
942 definition and conveniently use this command." |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
943 (interactive "r\nP") |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
944 (save-excursion |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
945 (goto-char from) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
946 (let ((column makefile-backslash-column) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
947 (endmark (make-marker))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
948 (move-marker endmark to) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
949 ;; Compute the smallest column number past the ends of all the lines. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
950 (if makefile-backslash-align |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
951 (progn |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
952 (if (not delete-flag) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
953 (while (< (point) to) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
954 (end-of-line) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
955 (if (= (preceding-char) ?\\) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
956 (progn (forward-char -1) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
957 (skip-chars-backward " \t"))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
958 (setq column (max column (1+ (current-column)))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
959 (forward-line 1))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
960 ;; Adjust upward to a tab column, if that doesn't push |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
961 ;; past the margin. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
962 (if (> (% column tab-width) 0) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
963 (let ((adjusted (* (/ (+ column tab-width -1) tab-width) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
964 tab-width))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
965 (if (< adjusted (window-width)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
966 (setq column adjusted)))))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
967 ;; Don't modify blank lines at start of region. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
968 (goto-char from) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
969 (while (and (< (point) endmark) (eolp)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
970 (forward-line 1)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
971 ;; Add or remove backslashes on all the lines. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
972 (while (and (< (point) endmark) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
973 ;; Don't backslashify the last line |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
974 ;; if the region ends right at the start of the next line. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
975 (save-excursion |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
976 (forward-line 1) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
977 (< (point) endmark))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
978 (if (not delete-flag) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
979 (makefile-append-backslash column) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
980 (makefile-delete-backslash)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
981 (forward-line 1)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
982 (move-marker endmark nil)))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
983 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
984 (defun makefile-append-backslash (column) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
985 (end-of-line) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
986 ;; Note that "\\\\" is needed to get one backslash. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
987 (if (= (preceding-char) ?\\) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
988 (progn (forward-char -1) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
989 (delete-horizontal-space) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
990 (indent-to column (if makefile-backslash-align nil 1))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
991 (indent-to column (if makefile-backslash-align nil 1)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
992 (insert "\\"))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
993 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
994 (defun makefile-delete-backslash () |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
995 (end-of-line) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
996 (or (bolp) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
997 (progn |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
998 (forward-char -1) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
999 (if (looking-at "\\\\") |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1000 (delete-region (1+ (point)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1001 (progn (skip-chars-backward " \t") (point))))))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1002 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1003 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1004 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1005 ;; Filling |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1006 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1007 (defun makefile-fill-paragraph (arg) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1008 ;; Fill comments, backslashed lines, and variable definitions |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1009 ;; specially. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1010 (save-excursion |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1011 (beginning-of-line) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1012 (cond |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1013 ((looking-at "^#+ ") |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1014 ;; Found a comment. Set the fill prefix and then fill. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1015 (let ((fill-prefix (buffer-substring-no-properties (match-beginning 0) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1016 (match-end 0))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1017 (fill-paragraph-function nil)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1018 (fill-paragraph nil) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1019 t)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1020 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1021 ;; Must look for backslashed-region before looking for variable |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1022 ;; assignment. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1023 ((save-excursion |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1024 (end-of-line) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1025 (or |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1026 (= (preceding-char) ?\\) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1027 (progn |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1028 (end-of-line -1) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1029 (= (preceding-char) ?\\)))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1030 ;; A backslash region. Find beginning and end, remove |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1031 ;; backslashes, fill, and then reapply backslahes. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1032 (end-of-line) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1033 (let ((beginning |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1034 (save-excursion |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1035 (end-of-line 0) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1036 (while (= (preceding-char) ?\\) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1037 (end-of-line 0)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1038 (forward-char) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1039 (point))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1040 (end |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1041 (save-excursion |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1042 (while (= (preceding-char) ?\\) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1043 (end-of-line 2)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1044 (point)))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1045 (save-restriction |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1046 (narrow-to-region beginning end) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1047 (makefile-backslash-region (point-min) (point-max) t) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1048 (let ((fill-paragraph-function nil)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1049 (fill-paragraph nil)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1050 (makefile-backslash-region (point-min) (point-max) nil) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1051 (goto-char (point-max)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1052 (if (< (skip-chars-backward "\n") 0) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1053 (delete-region (point) (point-max)))))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1054 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1055 ((looking-at makefile-macroassign-regex) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1056 ;; Have a macro assign. Fill just this line, and then backslash |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1057 ;; resulting region. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1058 (save-restriction |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1059 (narrow-to-region (point) (line-beginning-position 2)) |
|
17240
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1060 (let ((fill-paragraph-function nil)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1061 (fill-paragraph nil)) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1062 (makefile-backslash-region (point-min) (point-max) nil))))) |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1063 |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1064 ;; Always return non-nil so we don't fill anything else. |
|
9e236e540a59
(makefile-backslash-align): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
17142
diff
changeset
|
1065 t) |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1066 |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1067 |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1068 |
| 809 | 1069 ;;; ------------------------------------------------------------ |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1070 ;;; Browser mode. |
| 809 | 1071 ;;; ------------------------------------------------------------ |
| 1072 | |
| 1073 (defun makefile-browser-format-target-line (target selected) | |
| 1074 (format | |
| 1075 (concat (make-string makefile-browser-leftmost-column ?\ ) | |
| 1076 (if selected | |
| 1077 makefile-browser-selected-mark | |
| 1078 makefile-browser-unselected-mark) | |
| 1079 "%s%s") | |
| 1080 target makefile-target-colon)) | |
| 1081 | |
| 1082 (defun makefile-browser-format-macro-line (macro selected) | |
| 1083 (format | |
| 1084 (concat (make-string makefile-browser-leftmost-column ?\ ) | |
| 1085 (if selected | |
| 1086 makefile-browser-selected-mark | |
| 1087 makefile-browser-unselected-mark) | |
| 1088 (makefile-format-macro-ref macro)))) | |
| 1089 | |
| 1090 (defun makefile-browser-fill (targets macros) | |
|
5820
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1091 (let ((inhibit-read-only t)) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1092 (goto-char (point-min)) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1093 (erase-buffer) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1094 (mapconcat |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1095 (function |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1096 (lambda (item) (insert (makefile-browser-format-target-line (car item) nil) "\n"))) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1097 targets |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1098 "") |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1099 (mapconcat |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1100 (function |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1101 (lambda (item) (insert (makefile-browser-format-macro-line (car item) nil) "\n"))) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1102 macros |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1103 "") |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1104 (sort-lines nil (point-min) (point-max)) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1105 (goto-char (1- (point-max))) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1106 (delete-char 1) ; remove unnecessary newline at eob |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1107 (goto-char (point-min)) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1108 (forward-char makefile-browser-cursor-column))) |
| 809 | 1109 |
| 1110 ;;; | |
| 1111 ;;; Moving up and down in the browser | |
| 1112 ;;; | |
| 1113 | |
| 1114 (defun makefile-browser-next-line () | |
| 1115 "Move the browser selection cursor to the next line." | |
| 1116 (interactive) | |
| 1117 (if (not (makefile-last-line-p)) | |
| 1118 (progn | |
| 1119 (forward-line 1) | |
| 1120 (forward-char makefile-browser-cursor-column)))) | |
| 1121 | |
| 1122 (defun makefile-browser-previous-line () | |
| 1123 "Move the browser selection cursor to the previous line." | |
| 1124 (interactive) | |
| 1125 (if (not (makefile-first-line-p)) | |
| 1126 (progn | |
| 1127 (forward-line -1) | |
| 1128 (forward-char makefile-browser-cursor-column)))) | |
| 1129 | |
| 1130 ;;; | |
| 1131 ;;; Quitting the browser (returns to client buffer) | |
| 1132 ;;; | |
| 1133 | |
| 1134 (defun makefile-browser-quit () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1135 "Leave the browser and return to the makefile buffer." |
| 809 | 1136 (interactive) |
| 1137 (let ((my-client makefile-browser-client)) | |
| 1138 (setq makefile-browser-client nil) ; we quitted, so NO client! | |
| 1139 (set-buffer-modified-p nil) | |
|
21096
712fd7860b32
(makefile-browser-quit): Use quit-window.
Richard M. Stallman <rms@gnu.org>
parents:
21000
diff
changeset
|
1140 (quit-window t) |
| 809 | 1141 (pop-to-buffer my-client))) |
| 1142 | |
| 1143 ;;; | |
| 1144 ;;; Toggle state of a browser item | |
| 1145 ;;; | |
| 1146 | |
| 1147 (defun makefile-browser-toggle () | |
| 1148 "Toggle the selection state of the browser item at the cursor position." | |
| 1149 (interactive) | |
| 1150 (let ((this-line (count-lines (point-min) (point)))) | |
| 1151 (setq this-line (max 1 this-line)) | |
| 1152 (makefile-browser-toggle-state-for-line this-line) | |
| 1153 (goto-line this-line) | |
|
5820
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1154 (let ((inhibit-read-only t)) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1155 (beginning-of-line) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1156 (if (makefile-browser-on-macro-line-p) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1157 (let ((macro-name (makefile-browser-this-line-macro-name))) |
|
14277
f0d30883b329
(makefile-browser-toggle): Use delete-region, not kill-line.
Richard M. Stallman <rms@gnu.org>
parents:
14209
diff
changeset
|
1158 (delete-region (point) (progn (end-of-line) (point))) |
|
5820
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1159 (insert |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1160 (makefile-browser-format-macro-line |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1161 macro-name |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1162 (makefile-browser-get-state-for-line this-line)))) |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1163 (let ((target-name (makefile-browser-this-line-target-name))) |
|
14277
f0d30883b329
(makefile-browser-toggle): Use delete-region, not kill-line.
Richard M. Stallman <rms@gnu.org>
parents:
14209
diff
changeset
|
1164 (delete-region (point) (progn (end-of-line) (point))) |
| 809 | 1165 (insert |
|
5820
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1166 (makefile-browser-format-target-line |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1167 target-name |
|
3443820118a0
(makefile-browser-fill, makefile-browser-toggle):
Richard M. Stallman <rms@gnu.org>
parents:
5464
diff
changeset
|
1168 (makefile-browser-get-state-for-line this-line)))))) |
| 809 | 1169 (beginning-of-line) |
| 1170 (forward-char makefile-browser-cursor-column) | |
| 1171 (if makefile-browser-auto-advance-after-selection-p | |
| 1172 (makefile-browser-next-line)))) | |
| 1173 | |
| 1174 ;;; | |
| 1175 ;;; Making insertions into the client buffer | |
| 1176 ;;; | |
| 1177 | |
| 1178 (defun makefile-browser-insert-continuation () | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1179 "Insert a makefile continuation. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1180 In the makefile buffer, go to (end-of-line), insert a \'\\\' |
| 809 | 1181 character, insert a new blank line, go to that line and indent by one TAB. |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1182 This is most useful in the process of creating continued lines when copying |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1183 large dependencies from the browser to the client buffer. |
| 7639 | 1184 \(point) advances accordingly in the client buffer." |
| 809 | 1185 (interactive) |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1186 (with-current-buffer makefile-browser-client |
| 809 | 1187 (end-of-line) |
| 1188 (insert "\\\n\t"))) | |
| 1189 | |
| 1190 (defun makefile-browser-insert-selection () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1191 "Insert all selected targets and/or macros in the makefile buffer. |
| 12936 | 1192 Insertion takes place at point." |
| 809 | 1193 (interactive) |
| 1194 (save-excursion | |
| 1195 (goto-line 1) | |
| 1196 (let ((current-line 1)) | |
| 1197 (while (not (eobp)) | |
| 1198 (if (makefile-browser-get-state-for-line current-line) | |
| 1199 (makefile-browser-send-this-line-item)) | |
| 1200 (forward-line 1) | |
| 1201 (setq current-line (1+ current-line)))))) | |
| 1202 | |
| 1203 (defun makefile-browser-insert-selection-and-quit () | |
| 1204 (interactive) | |
| 1205 (makefile-browser-insert-selection) | |
| 1206 (makefile-browser-quit)) | |
| 1207 | |
| 1208 (defun makefile-browser-send-this-line-item () | |
| 1209 (if (makefile-browser-on-macro-line-p) | |
| 1210 (save-excursion | |
| 1211 (let ((macro-name (makefile-browser-this-line-macro-name))) | |
| 1212 (set-buffer makefile-browser-client) | |
| 1213 (insert (makefile-format-macro-ref macro-name) " "))) | |
| 1214 (save-excursion | |
| 1215 (let ((target-name (makefile-browser-this-line-target-name))) | |
| 1216 (set-buffer makefile-browser-client) | |
| 1217 (insert target-name " "))))) | |
| 1218 | |
| 1219 (defun makefile-browser-start-interaction () | |
| 1220 (use-local-map makefile-browser-map) | |
| 1221 (setq buffer-read-only t)) | |
| 1222 | |
| 1223 (defun makefile-browse (targets macros) | |
| 1224 (interactive) | |
| 1225 (if (zerop (+ (length targets) (length macros))) | |
| 1226 (progn | |
| 1227 (beep) | |
| 1228 (message "No macros or targets to browse! Consider running 'makefile-pickup-everything\'")) | |
| 1229 (let ((browser-buffer (get-buffer-create makefile-browser-buffer-name))) | |
| 1230 (pop-to-buffer browser-buffer) | |
| 1231 (makefile-browser-fill targets macros) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1232 (shrink-window-if-larger-than-buffer) |
|
38418
336177767929
(makefile-browse): Use make-local-variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37469
diff
changeset
|
1233 (set (make-local-variable 'makefile-browser-selection-vector) |
|
336177767929
(makefile-browse): Use make-local-variable.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37469
diff
changeset
|
1234 (make-vector (+ (length targets) (length macros)) nil)) |
| 809 | 1235 (makefile-browser-start-interaction)))) |
| 1236 | |
| 1237 (defun makefile-switch-to-browser () | |
| 1238 (interactive) | |
| 1239 (run-hooks 'makefile-browser-hook) | |
| 1240 (setq makefile-browser-client (current-buffer)) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1241 (makefile-pickup-targets) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1242 (makefile-pickup-macros) |
| 809 | 1243 (makefile-browse makefile-target-table makefile-macro-table)) |
| 1244 | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1245 |
| 809 | 1246 |
| 1247 ;;; ------------------------------------------------------------ | |
| 1248 ;;; Up-to-date overview buffer | |
| 1249 ;;; ------------------------------------------------------------ | |
| 1250 | |
| 1251 (defun makefile-create-up-to-date-overview () | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1252 "Create a buffer containing an overview of the state of all known targets. |
| 809 | 1253 Known targets are targets that are explicitly defined in that makefile; |
| 1254 in other words, all targets that appear on the left hand side of a | |
| 1255 dependency in the makefile." | |
| 1256 (interactive) | |
| 1257 (if (y-or-n-p "Are you sure that the makefile being edited is consistent? ") | |
| 1258 ;; | |
| 1259 ;; The rest of this function operates on a temporary makefile, created by | |
| 1260 ;; writing the current contents of the makefile buffer. | |
| 1261 ;; | |
| 1262 (let ((saved-target-table makefile-target-table) | |
| 1263 (this-buffer (current-buffer)) | |
| 1264 (makefile-up-to-date-buffer | |
| 1265 (get-buffer-create makefile-up-to-date-buffer-name)) | |
| 1266 (filename (makefile-save-temporary)) | |
| 1267 ;; | |
| 1268 ;; Forget the target table because it may contain picked-up filenames | |
| 1269 ;; that are not really targets in the current makefile. | |
| 1270 ;; We don't want to query these, so get a new target-table with just the | |
| 1271 ;; targets that can be found in the makefile buffer. | |
| 1272 ;; The 'old' target table will be restored later. | |
| 1273 ;; | |
| 1274 (real-targets (progn | |
| 1275 (makefile-pickup-targets) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1276 makefile-target-table)) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1277 (prereqs makefile-has-prereqs) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1278 ) |
| 809 | 1279 |
| 1280 (set-buffer makefile-up-to-date-buffer) | |
| 1281 (setq buffer-read-only nil) | |
| 1282 (erase-buffer) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1283 (makefile-query-targets filename real-targets prereqs) |
| 809 | 1284 (if (zerop (buffer-size)) ; if it did not get us anything |
| 1285 (progn | |
| 1286 (kill-buffer (current-buffer)) | |
| 1287 (message "No overview created!"))) | |
| 1288 (set-buffer this-buffer) | |
| 1289 (setq makefile-target-table saved-target-table) | |
| 1290 (if (get-buffer makefile-up-to-date-buffer-name) | |
| 1291 (progn | |
| 1292 (pop-to-buffer (get-buffer makefile-up-to-date-buffer-name)) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1293 (shrink-window-if-larger-than-buffer) |
| 809 | 1294 (sort-lines nil (point-min) (point-max)) |
| 1295 (setq buffer-read-only t)))))) | |
| 1296 | |
| 1297 (defun makefile-save-temporary () | |
| 1298 "Create a temporary file from the current makefile buffer." | |
| 1299 (let ((filename (makefile-generate-temporary-filename))) | |
| 1300 (write-region (point-min) (point-max) filename nil 0) | |
| 1301 filename)) ; return the filename | |
| 1302 | |
| 1303 (defun makefile-generate-temporary-filename () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1304 "Create a filename suitable for use in `makefile-save-temporary'. |
| 809 | 1305 Be careful to allow brain-dead file systems (DOS, SYSV ...) to cope |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1306 with the generated name!" |
| 809 | 1307 (let ((my-name (user-login-name)) |
| 1308 (my-uid (int-to-string (user-uid)))) | |
| 1309 (concat "mktmp" | |
| 1310 (if (> (length my-name) 3) | |
| 1311 (substring my-name 0 3) | |
| 1312 my-name) | |
| 1313 "." | |
| 1314 (if (> (length my-uid) 3) | |
| 1315 (substring my-uid 0 3) | |
| 1316 my-uid)))) | |
| 1317 | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1318 (defun makefile-query-targets (filename target-table prereq-list) |
| 12936 | 1319 "Fill the up-to-date overview buffer. |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1320 Checks each target in TARGET-TABLE using `makefile-query-one-target-method' |
| 809 | 1321 and generates the overview, one line per target name." |
| 1322 (insert | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1323 (mapconcat |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1324 (function (lambda (item) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1325 (let* ((target-name (car item)) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1326 (no-prereqs (not (member target-name prereq-list))) |
| 26136 | 1327 (needs-rebuild (or no-prereqs |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1328 (funcall |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1329 makefile-query-one-target-method |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1330 target-name |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1331 filename)))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1332 (format "\t%s%s" |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1333 target-name |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1334 (cond (no-prereqs " .. has no prerequisites") |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1335 (needs-rebuild " .. NEEDS REBUILD") |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1336 (t " .. is up to date")))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1337 )) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1338 target-table "\n")) |
| 809 | 1339 (goto-char (point-min)) |
| 1340 (delete-file filename)) ; remove the tmpfile | |
| 1341 | |
| 1342 (defun makefile-query-by-make-minus-q (target &optional filename) | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1343 (not (zerop |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1344 (call-process makefile-brave-make nil nil nil |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1345 "-f" filename "-q" target)))) |
| 809 | 1346 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1347 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1348 |
| 809 | 1349 ;;; ------------------------------------------------------------ |
| 1350 ;;; Continuation cleanup | |
| 1351 ;;; ------------------------------------------------------------ | |
| 1352 | |
| 1353 (defun makefile-cleanup-continuations () | |
| 1354 (if (eq major-mode 'makefile-mode) | |
| 1355 (if (and makefile-cleanup-continuations-p | |
| 1356 (not buffer-read-only)) | |
| 1357 (save-excursion | |
| 1358 (goto-char (point-min)) | |
| 1359 (while (re-search-forward "\\\\[ \t]+$" (point-max) t) | |
| 1360 (replace-match "\\" t t)))))) | |
| 1361 | |
|
6146
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1362 |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1363 ;;; ------------------------------------------------------------ |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1364 ;;; Warn of suspicious lines |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1365 ;;; ------------------------------------------------------------ |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1366 |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1367 (defun makefile-warn-suspicious-lines () |
|
28277
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1368 ;; Returning non-nil cancels the save operation |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1369 (if (eq major-mode 'makefile-mode) |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1370 (save-excursion |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1371 (goto-char (point-min)) |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1372 (if (re-search-forward "^\\(\t+$\\| +\t\\)" nil t) |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1373 (not (y-or-n-p |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1374 (format "Suspicious line %d. Save anyway " |
|
18aaefd4bc8f
(makefile-warn-suspicious-lines): clean
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26621
diff
changeset
|
1375 (count-lines (point-min) (point))))))))) |
|
6146
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1376 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1377 |
|
6146
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1378 |
| 809 | 1379 ;;; ------------------------------------------------------------ |
| 1380 ;;; GNU make function support | |
| 1381 ;;; ------------------------------------------------------------ | |
| 1382 | |
| 1383 (defun makefile-insert-gmake-function () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1384 "Insert a GNU make function call. |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1385 Asks for the name of the function to use (with completion). |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1386 Then prompts for all required parameters." |
| 809 | 1387 (interactive) |
| 1388 (let* ((gm-function-name (completing-read | |
| 1389 "Function: " | |
| 1390 makefile-gnumake-functions-alist | |
| 1391 nil t nil)) | |
| 1392 (gm-function-prompts | |
| 1393 (cdr (assoc gm-function-name makefile-gnumake-functions-alist)))) | |
| 1394 (if (not (zerop (length gm-function-name))) | |
| 1395 (insert (makefile-format-macro-ref | |
| 1396 (concat gm-function-name " " | |
| 1397 (makefile-prompt-for-gmake-funargs | |
| 1398 gm-function-name gm-function-prompts))) | |
| 1399 " ")))) | |
| 1400 | |
| 1401 (defun makefile-prompt-for-gmake-funargs (function-name prompt-list) | |
| 1402 (mapconcat | |
| 1403 (function (lambda (one-prompt) | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1404 (read-string (format "[%s] %s: " function-name one-prompt) |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1405 nil))) |
| 809 | 1406 prompt-list |
| 1407 ",")) | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1408 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1409 |
| 809 | 1410 |
| 1411 ;;; ------------------------------------------------------------ | |
| 1412 ;;; Utility functions | |
| 1413 ;;; ------------------------------------------------------------ | |
| 1414 | |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1415 (defun makefile-do-macro-insertion (macro-name) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1416 "Insert a macro reference." |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1417 (if (not (zerop (length macro-name))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1418 (if (assoc macro-name makefile-runtime-macros-list) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1419 (insert "$" macro-name) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1420 (insert (makefile-format-macro-ref macro-name))))) |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1421 |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1422 (defun makefile-remember-target (target-name &optional has-prereqs) |
| 809 | 1423 "Remember a given target if it is not already remembered for this buffer." |
| 1424 (if (not (zerop (length target-name))) | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1425 (progn |
| 809 | 1426 (if (not (assoc target-name makefile-target-table)) |
| 1427 (setq makefile-target-table | |
|
2559
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1428 (cons (list target-name) makefile-target-table))) |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1429 (if has-prereqs |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1430 (setq makefile-has-prereqs |
|
5f2c2994cbca
Rewritten and simplified, commentary added. It now will usually
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2534
diff
changeset
|
1431 (cons target-name makefile-has-prereqs)))))) |
| 809 | 1432 |
| 1433 (defun makefile-remember-macro (macro-name) | |
| 1434 "Remember a given macro if it is not already remembered for this buffer." | |
| 1435 (if (not (zerop (length macro-name))) | |
| 1436 (if (not (assoc macro-name makefile-macro-table)) | |
| 1437 (setq makefile-macro-table | |
| 1438 (cons (list macro-name) makefile-macro-table))))) | |
| 1439 | |
| 1440 (defun makefile-forward-after-target-colon () | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1441 "Move point forward after inserting the terminating colon of a target. |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1442 This acts according to the value of `makefile-tab-after-target-colon'." |
| 809 | 1443 (if makefile-tab-after-target-colon |
| 1444 (insert "\t") | |
| 1445 (insert " "))) | |
| 1446 | |
| 1447 (defun makefile-browser-on-macro-line-p () | |
| 1448 "Determine if point is on a macro line in the browser." | |
| 1449 (save-excursion | |
| 1450 (beginning-of-line) | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1451 (re-search-forward "\\$[{(]" (line-end-position) t))) |
| 809 | 1452 |
| 1453 (defun makefile-browser-this-line-target-name () | |
| 1454 "Extract the target name from a line in the browser." | |
| 1455 (save-excursion | |
| 1456 (end-of-line) | |
| 1457 (skip-chars-backward "^ \t") | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1458 (buffer-substring (point) (1- (line-end-position))))) |
| 809 | 1459 |
| 1460 (defun makefile-browser-this-line-macro-name () | |
| 1461 "Extract the macro name from a line in the browser." | |
| 1462 (save-excursion | |
| 1463 (beginning-of-line) | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1464 (re-search-forward "\\$[{(]" (line-end-position) t) |
| 809 | 1465 (let ((macro-start (point))) |
| 1466 (skip-chars-forward "^})") | |
| 1467 (buffer-substring macro-start (point))))) | |
| 1468 | |
| 1469 (defun makefile-format-macro-ref (macro-name) | |
|
9758
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1470 "Format a macro reference. |
|
b9084912762f
Changed almost every doc string.
Richard M. Stallman <rms@gnu.org>
parents:
9477
diff
changeset
|
1471 Uses `makefile-use-curly-braces-for-macros-p'." |
|
6146
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1472 (if (or (char-equal ?\( (string-to-char macro-name)) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1473 (char-equal ?\{ (string-to-char macro-name))) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1474 (format "$%s" macro-name) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1475 (if makefile-use-curly-braces-for-macros-p |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1476 (format "${%s}" macro-name) |
|
1a2a8ef9b4af
(makefile-mode): Set local-write-file-hooks, not write-file-hooks.
Richard M. Stallman <rms@gnu.org>
parents:
5820
diff
changeset
|
1477 (format "$(%s)" macro-name)))) |
| 809 | 1478 |
| 1479 (defun makefile-browser-get-state-for-line (n) | |
| 1480 (aref makefile-browser-selection-vector (1- n))) | |
| 1481 | |
| 1482 (defun makefile-browser-set-state-for-line (n to-state) | |
| 1483 (aset makefile-browser-selection-vector (1- n) to-state)) | |
| 1484 | |
| 1485 (defun makefile-browser-toggle-state-for-line (n) | |
| 1486 (makefile-browser-set-state-for-line n (not (makefile-browser-get-state-for-line n)))) | |
| 1487 | |
| 1488 (defun makefile-last-line-p () | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1489 (= (line-end-position) (point-max))) |
| 809 | 1490 |
| 1491 (defun makefile-first-line-p () | |
|
41641
66c7637cbf17
Use line-(end|beginning)-position.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
38600
diff
changeset
|
1492 (= (line-beginning-position) (point-min))) |
| 809 | 1493 |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1494 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1495 |
| 24271 | 1496 ;;; Support for other packages, like add-log. |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1497 |
|
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1498 (defun makefile-add-log-defun () |
|
13847
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1499 "Return name of target or variable assignment that point is in. |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1500 If it isn't in one, return nil." |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1501 (save-excursion |
|
13847
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1502 (let (found) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1503 (beginning-of-line) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1504 ;; Scan back line by line, noticing when we come to a |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1505 ;; variable or rule definition, and giving up when we see |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1506 ;; a line that is not part of either of those. |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1507 (while (not found) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1508 (cond |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1509 ((looking-at makefile-macroassign-regex) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1510 (setq found (buffer-substring-no-properties (match-beginning 1) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1511 (match-end 1)))) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1512 ((looking-at makefile-dependency-regex) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1513 (setq found (buffer-substring-no-properties (match-beginning 1) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1514 (match-end 1)))) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1515 ;; Don't keep looking across a blank line or comment. Give up. |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1516 ((looking-at "$\\|#") |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1517 (setq found 'bobp)) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1518 ((bobp) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1519 (setq found 'bobp))) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1520 (or found |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1521 (forward-line -1))) |
|
36556403b62b
(makefile-add-log-defun): Rewrite to scan back
Richard M. Stallman <rms@gnu.org>
parents:
13804
diff
changeset
|
1522 (if (stringp found) found)))) |
|
9454
40340d39257d
(makefile-mode-name): Removed.
Richard M. Stallman <rms@gnu.org>
parents:
7639
diff
changeset
|
1523 |
|
41642
d00b43e2316c
Move `provide' to the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41641
diff
changeset
|
1524 (provide 'make-mode) |
|
d00b43e2316c
Move `provide' to the end.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41641
diff
changeset
|
1525 |
|
13402
1f9832fe9e44
(makefile-define-space-face): Don't make face if non-X.
Karl Heuer <kwzh@gnu.org>
parents:
13333
diff
changeset
|
1526 ;;; make-mode.el ends here |
