Mercurial > emacs
annotate lisp/progmodes/hideif.el @ 42947:76e795715361
(xterm-standard-colors): New variable.
(xterm-rgb-convert-to-16bit, xterm-register-default-colors)
(xterm-rxvt-set-background-mode): New functions.
(toplevel): Call xterm-register-default-colors,
xterm-rxvt-set-background-mode, and tty-set-up-initial-frame-faces.
Add support for more keys from xterm's terminfo entry.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 25 Jan 2002 13:10:46 +0000 |
parents | bf8b35f0db41 |
children | 91939e9a62ec |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
30805
diff
changeset
|
1 ;;; hideif.el --- hides selected code within ifdef |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
2 |
41645
a4d0b6e48cf4
Fix copyright year.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41644
diff
changeset
|
3 ;; Copyright (C) 1988,1994,2001 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
30805
3cfd3dc474b8
Change authors' mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
30327
diff
changeset
|
5 ;; Author: Daniel LaLiberte <liberte@holonexus.org> |
7324
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
6 ;; Maintainer: FSF |
11455 | 7 ;; Keywords: c, outlines |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
8 |
895
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
10 |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
12 ;; it under the terms of the GNU General Public License as published by |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
14 ;; any later version. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
15 |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
19 ;; GNU General Public License for more details. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
20 |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
21 ;; You should have received a copy of the GNU General Public License |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
895
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
25 |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
26 ;;; Commentary: |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
27 |
14169 | 28 ;; To initialize, toggle the hide-ifdef minor mode with |
29 ;; | |
30 ;; M-x hide-ifdef-mode | |
31 ;; | |
32 ;; This will set up key bindings and call hide-ifdef-mode-hook if it | |
33 ;; has a value. To explicitly hide ifdefs using a buffer-local | |
34 ;; define list (default empty), type | |
35 ;; | |
36 ;; M-x hide-ifdefs or C-c @ h | |
37 ;; | |
38 ;; Hide-ifdef suppresses the display of code that the preprocessor wouldn't | |
39 ;; pass through. The support of constant expressions in #if lines is | |
40 ;; limited to identifiers, parens, and the operators: &&, ||, !, and | |
41 ;; "defined". Please extend this. | |
42 ;; | |
43 ;; The hidden code is marked by ellipses (...). Be | |
44 ;; cautious when editing near ellipses, since the hidden text is | |
45 ;; still in the buffer, and you can move the point into it and modify | |
41619 | 46 ;; text unawares. |
14169 | 47 ;; You can make your buffer read-only while hide-ifdef-hiding by setting |
48 ;; hide-ifdef-read-only to a non-nil value. You can toggle this | |
49 ;; variable with hide-ifdef-toggle-read-only (C-c @ C-q). | |
50 ;; | |
51 ;; You can undo the effect of hide-ifdefs by typing | |
52 ;; | |
53 ;; M-x show-ifdefs or C-c @ s | |
54 ;; | |
55 ;; Use M-x hide-ifdef-define (C-c @ d) to define a symbol. | |
56 ;; Use M-x hide-ifdef-undef (C-c @ u) to undefine a symbol. | |
57 ;; | |
58 ;; If you define or undefine a symbol while hide-ifdef-mode is in effect, | |
59 ;; the display will be updated. Only the define list for the current | |
60 ;; buffer will be affected. You can save changes to the local define | |
61 ;; list with hide-ifdef-set-define-alist. This adds entries | |
62 ;; to hide-ifdef-define-alist. | |
63 ;; | |
64 ;; If you have defined a hide-ifdef-mode-hook, you can set | |
65 ;; up a list of symbols that may be used by hide-ifdefs as in the | |
66 ;; following example: | |
67 ;; | |
41619 | 68 ;; (add-hook 'hide-ifdef-mode-hook |
29588
0cf06902af64
(hif-compress-define-list)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26519
diff
changeset
|
69 ;; (lambda () |
41619 | 70 ;; (unless hide-ifdef-define-alist |
71 ;; (setq hide-ifdef-define-alist | |
72 ;; '((list1 ONE TWO) | |
73 ;; (list2 TWO THREE)))) | |
74 ;; (hide-ifdef-use-define-alist 'list2))) ; use list2 by default | |
14169 | 75 ;; |
30327
09b01c9914a6
Correct author's email address. Fix typo in comment.
Gerd Moellmann <gerd@gnu.org>
parents:
29588
diff
changeset
|
76 ;; You can call hide-ifdef-use-define-alist (C-c @ U) at any time to specify |
14169 | 77 ;; another list to use. |
78 ;; | |
79 ;; To cause ifdefs to be hidden as soon as hide-ifdef-mode is called, | |
80 ;; set hide-ifdef-initially to non-nil. | |
81 ;; | |
82 ;; If you set hide-ifdef-lines to t, hide-ifdefs hides all the #ifdef lines. | |
83 ;; In the absence of highlighting, that might be a bad idea. If you set | |
84 ;; hide-ifdef-lines to nil (the default), the surrounding preprocessor | |
85 ;; lines will be displayed. That can be confusing in its own | |
86 ;; right. Other variations on display are possible, but not much | |
87 ;; better. | |
88 ;; | |
89 ;; You can explicitly hide or show individual ifdef blocks irrespective | |
90 ;; of the define list by using hide-ifdef-block and show-ifdef-block. | |
91 ;; | |
92 ;; You can move the point between ifdefs with forward-ifdef, backward-ifdef, | |
93 ;; up-ifdef, down-ifdef, next-ifdef, and previous-ifdef. | |
94 ;; | |
95 ;; If you have minor-mode-alist in your mode line (the default) two labels | |
96 ;; may appear. "Ifdef" will appear when hide-ifdef-mode is active. "Hiding" | |
97 ;; will appear when text may be hidden ("hide-ifdef-hiding" is non-nil). | |
98 ;; | |
99 ;; Written by Brian Marick, at Gould, Computer Systems Division, Urbana IL. | |
100 ;; Extensively modified by Daniel LaLiberte (while at Gould). | |
101 ;; | |
102 ;; You may freely modify and distribute this, but keep a record | |
103 ;; of modifications and send comments to: | |
104 ;; liberte@a.cs.uiuc.edu or ihnp4!uiucdcs!liberte | |
105 ;; I will continue to upgrade hide-ifdef-mode | |
106 ;; with your contributions. | |
31 | 107 |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
108 ;;; Code: |
31 | 109 |
13297
9699410bf8bf
Provide hideif; require cc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
12954
diff
changeset
|
110 (require 'cc-mode) |
9699410bf8bf
Provide hideif; require cc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
12954
diff
changeset
|
111 |
20781 | 112 (defgroup hide-ifdef nil |
113 "Hide selected code within `ifdef'." | |
114 :group 'c) | |
115 | |
41619 | 116 (defvar hide-ifdef-mode-submap |
117 ;; Set up the submap that goes after the prefix key. | |
118 (let ((map (make-sparse-keymap))) | |
119 (define-key map "d" 'hide-ifdef-define) | |
120 (define-key map "u" 'hide-ifdef-undef) | |
121 (define-key map "D" 'hide-ifdef-set-define-alist) | |
122 (define-key map "U" 'hide-ifdef-use-define-alist) | |
7324
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
123 |
41619 | 124 (define-key map "h" 'hide-ifdefs) |
125 (define-key map "s" 'show-ifdefs) | |
126 (define-key map "\C-d" 'hide-ifdef-block) | |
127 (define-key map "\C-s" 'show-ifdef-block) | |
128 | |
129 (define-key map "\C-q" 'hide-ifdef-toggle-read-only) | |
130 (substitute-key-definition | |
131 'toggle-read-only 'hide-ifdef-toggle-outside-read-only map) | |
132 map) | |
133 "Keymap used by `hide-ifdef-mode' under `hide-ifdef-mode-prefix-key'.") | |
31 | 134 |
11652
1162093d885c
(hide-ifdef-mode-prefix-key): Change to C-c @.
Richard M. Stallman <rms@gnu.org>
parents:
11581
diff
changeset
|
135 (defconst hide-ifdef-mode-prefix-key "\C-c@" |
210 | 136 "Prefix key for all Hide-Ifdef mode commands.") |
31 | 137 |
41619 | 138 (defvar hide-ifdef-mode-map |
139 ;; Set up the mode's main map, which leads via the prefix key to the submap. | |
140 (let ((map (make-sparse-keymap))) | |
141 (define-key map hide-ifdef-mode-prefix-key hide-ifdef-mode-submap) | |
142 map) | |
143 "Keymap used with `hide-ifdef-mode'.") | |
31 | 144 |
145 (defvar hide-ifdef-hiding nil | |
7324
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
146 "Non-nil when text may be hidden.") |
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
147 |
31 | 148 (or (assq 'hide-ifdef-hiding minor-mode-alist) |
149 (setq minor-mode-alist | |
150 (cons '(hide-ifdef-hiding " Hiding") | |
151 minor-mode-alist))) | |
152 | |
7379
822429149720
(hide-ifdef-syntax-table): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
7324
diff
changeset
|
153 ;; fix c-mode syntax table so we can recognize whole symbols. |
822429149720
(hide-ifdef-syntax-table): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
7324
diff
changeset
|
154 (defvar hide-ifdef-syntax-table |
41619 | 155 (let ((st (copy-syntax-table c-mode-syntax-table))) |
156 (modify-syntax-entry ?_ "w" st) | |
157 (modify-syntax-entry ?& "." st) | |
158 (modify-syntax-entry ?\| "." st) | |
159 st) | |
7379
822429149720
(hide-ifdef-syntax-table): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
7324
diff
changeset
|
160 "Syntax table used for tokenizing #if expressions.") |
822429149720
(hide-ifdef-syntax-table): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
7324
diff
changeset
|
161 |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
162 (defvar hide-ifdef-env nil |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
163 "An alist of defined symbols and their values.") |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
164 |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
165 (defvar hif-outside-read-only nil |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
166 "Internal variable. Saves the value of `buffer-read-only' while hiding.") |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
167 |
998 | 168 ;;;###autoload |
41619 | 169 (define-minor-mode hide-ifdef-mode |
210 | 170 "Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. |
15166
83258eb2ede5
(hide-ifdef-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
171 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. |
210 | 172 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor |
31 | 173 would eliminate may be hidden from view. Several variables affect |
174 how the hiding is done: | |
175 | |
41619 | 176 `hide-ifdef-env' |
31 | 177 An association list of defined and undefined symbols for the |
210 | 178 current buffer. Initially, the global value of `hide-ifdef-env' |
179 is used. | |
31 | 180 |
41619 | 181 `hide-ifdef-define-alist' |
31 | 182 An association list of defined symbol lists. |
210 | 183 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env' |
184 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env' | |
185 from one of the lists in `hide-ifdef-define-alist'. | |
31 | 186 |
41619 | 187 `hide-ifdef-lines' |
31 | 188 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and |
189 #endif lines when hiding. | |
190 | |
41619 | 191 `hide-ifdef-initially' |
210 | 192 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode |
31 | 193 is activated. |
194 | |
41619 | 195 `hide-ifdef-read-only' |
31 | 196 Set to non-nil if you want to make buffers read only while hiding. |
210 | 197 After `show-ifdefs', read-only status is restored to previous value. |
31 | 198 |
199 \\{hide-ifdef-mode-map}" | |
41619 | 200 nil " Ifdef" nil |
31 | 201 (if hide-ifdef-mode |
202 (progn | |
41619 | 203 ;; inherit global values |
204 (set (make-local-variable 'hide-ifdef-env) | |
205 (default-value 'hide-ifdef-env)) | |
206 (set (make-local-variable 'hide-ifdef-hiding) | |
207 (default-value 'hide-ifdef-hiding)) | |
208 (set (make-local-variable 'hif-outside-read-only) buffer-read-only) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
209 (set (make-local-variable 'line-move-ignore-invisible) t) |
41712
c2b7b74ef973
(hide-ifdef-mode): Only modify
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41645
diff
changeset
|
210 (add-hook 'change-major-mode-hook |
c2b7b74ef973
(hide-ifdef-mode): Only modify
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41645
diff
changeset
|
211 (lambda () (hide-ifdef-mode -1)) nil t) |
31 | 212 |
41619 | 213 (add-to-invisibility-spec '(hide-ifdef . t)) |
31 | 214 |
215 (if hide-ifdef-initially | |
216 (hide-ifdefs) | |
41619 | 217 (show-ifdefs))) |
218 ;; else end hide-ifdef-mode | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
219 (kill-local-variable 'line-move-ignore-invisible) |
41712
c2b7b74ef973
(hide-ifdef-mode): Only modify
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41645
diff
changeset
|
220 (remove-from-invisibility-spec '(hide-ifdef . t)) |
31 | 221 (if hide-ifdef-hiding |
41619 | 222 (show-ifdefs)))) |
31 | 223 |
224 | |
225 (defun hif-show-all () | |
226 "Show all of the text in the current buffer." | |
227 (interactive) | |
41619 | 228 (hif-show-ifdef-region (point-min) (point-max))) |
31 | 229 |
13855 | 230 ;; By putting this on after-revert-hook, we arrange that it only |
231 ;; does anything when revert-buffer avoids turning off the mode. | |
232 ;; (That can happen in VC.) | |
41619 | 233 (defun hif-after-revert-function () |
13855 | 234 (and hide-ifdef-mode hide-ifdef-hiding |
235 (hide-ifdefs t))) | |
41619 | 236 (add-hook 'after-revert-hook 'hif-after-revert-function) |
13855 | 237 |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
238 (defun hif-end-of-line () |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
239 (end-of-line) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
240 (while (= (logand 1 (skip-chars-backward "\\\\")) 1) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
241 (end-of-line 2))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
242 |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
243 (defun hide-ifdef-region-internal (start end) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
244 (remove-overlays start end 'invisible 'hide-ifdef) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
245 (let ((o (make-overlay start end))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
246 (overlay-put o 'invisible 'hide-ifdef))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
247 |
31 | 248 (defun hide-ifdef-region (start end) |
249 "START is the start of a #if or #else form. END is the ending part. | |
250 Everything including these lines is made invisible." | |
41619 | 251 (save-excursion |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
252 (goto-char start) (hif-end-of-line) (setq start (point)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
253 (goto-char end) (hif-end-of-line) (setq end (point)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
254 (hide-ifdef-region-internal start end))) |
31 | 255 |
256 (defun hif-show-ifdef-region (start end) | |
257 "Everything between START and END is made visible." | |
41619 | 258 (remove-overlays start end 'invisible 'hide-ifdef)) |
31 | 259 |
260 | |
41619 | 261 ;;===%%SF%% evaluation (Start) === |
31 | 262 |
13855 | 263 ;; It is not useful to set this to anything but `eval'. |
264 ;; In fact, the variable might as well be eliminated. | |
31 | 265 (defvar hide-ifdef-evaluator 'eval |
13855 | 266 "The function to use to evaluate a form. |
267 The evaluator is given a canonical form and returns t if text under | |
31 | 268 that form should be displayed.") |
269 | |
270 (defvar hif-undefined-symbol nil | |
271 "...is by default considered to be false.") | |
272 | |
273 | |
274 (defun hif-set-var (var value) | |
275 "Prepend (var value) pair to hide-ifdef-env." | |
276 (setq hide-ifdef-env (cons (cons var value) hide-ifdef-env))) | |
277 | |
278 | |
279 (defun hif-lookup (var) | |
41619 | 280 ;; (message "hif-lookup %s" var) |
31 | 281 (let ((val (assoc var hide-ifdef-env))) |
282 (if val | |
283 (cdr val) | |
284 hif-undefined-symbol))) | |
285 | |
286 (defun hif-defined (var) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
287 (if (assoc var hide-ifdef-env) 1 0)) |
31 | 288 |
41619 | 289 ;;===%%SF%% evaluation (End) === |
31 | 290 |
291 | |
292 | |
41619 | 293 ;;===%%SF%% parsing (Start) === |
31 | 294 ;;; The code that understands what ifs and ifdef in files look like. |
295 | |
296 (defconst hif-cpp-prefix "\\(^\\|\r\\)[ \t]*#[ \t]*") | |
297 (defconst hif-ifndef-regexp (concat hif-cpp-prefix "ifndef")) | |
298 (defconst hif-ifx-regexp (concat hif-cpp-prefix "if\\(n?def\\)?[ \t]+")) | |
299 (defconst hif-else-regexp (concat hif-cpp-prefix "else")) | |
300 (defconst hif-endif-regexp (concat hif-cpp-prefix "endif")) | |
301 (defconst hif-ifx-else-endif-regexp | |
302 (concat hif-ifx-regexp "\\|" hif-else-regexp "\\|" hif-endif-regexp)) | |
303 | |
41619 | 304 ;; Used to store the current token and the whole token list during parsing. |
305 ;; Only bound dynamically. | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
306 (defvar hif-token) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
307 (defvar hif-token-list) |
31 | 308 |
41619 | 309 ;; pattern to match initial identifier, !, &&, ||, (, or ). |
310 ;; Added ==, + and -: garyo@avs.com 8/9/94 | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
311 (defconst hif-token-regexp |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
312 "\\(&&\\|||\\|[!=]=\\|!\\|[()+-]\\|[<>]=?\\|\\w+\\)") |
31 | 313 |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
314 (defun hif-tokenize (start end) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
315 "Separate string between START and END into a list of tokens." |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
316 (let ((token-list nil)) |
41619 | 317 (with-syntax-table hide-ifdef-syntax-table |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
318 (save-excursion |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
319 (goto-char start) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
320 (while (progn (forward-comment (point-max)) (< (point) end)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
321 ;; (message "expr-start = %d" expr-start) (sit-for 1) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
322 (cond |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
323 ((looking-at "\\\\\n") |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
324 (forward-char 2)) |
31 | 325 |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
326 ((looking-at hif-token-regexp) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
327 (let ((token (buffer-substring (point) (match-end 0)))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
328 (goto-char (match-end 0)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
329 ;; (message "token: %s" token) (sit-for 1) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
330 (push (cond |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
331 ((string-equal token "||") 'or) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
332 ((string-equal token "&&") 'and) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
333 ((string-equal token "==") 'equal) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
334 ((string-equal token "!=") 'hif-notequal) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
335 ((string-equal token "!") 'not) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
336 ((string-equal token "defined") 'hif-defined) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
337 ((string-equal token "(") 'lparen) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
338 ((string-equal token ")") 'rparen) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
339 ((string-equal token ">") 'hif-greater) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
340 ((string-equal token "<") 'hif-less) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
341 ((string-equal token ">=") 'hif-greater-equal) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
342 ((string-equal token "<=") 'hif-less-equal) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
343 ((string-equal token "+") 'hif-plus) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
344 ((string-equal token "-") 'hif-minus) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
345 ((string-match "\\`[0-9]*\\'" token) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
346 (string-to-number token)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
347 (t (intern token))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
348 token-list))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
349 (t (error "Bad #if expression: %s" (buffer-string))))))) |
7379
822429149720
(hide-ifdef-syntax-table): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
7324
diff
changeset
|
350 (nreverse token-list))) |
31 | 351 |
352 ;;;----------------------------------------------------------------- | |
353 ;;; Translate C preprocessor #if expressions using recursive descent. | |
354 ;;; This parser is limited to the operators &&, ||, !, and "defined". | |
8914 | 355 ;;; Added ==, !=, +, and -. Gary Oberbrunner, garyo@avs.com, 8/9/94 |
31 | 356 |
41753
bf8b35f0db41
(hif-nexttoken): Move to before first def.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41712
diff
changeset
|
357 (defsubst hif-nexttoken () |
bf8b35f0db41
(hif-nexttoken): Move to before first def.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41712
diff
changeset
|
358 "Pop the next token from token-list into the let variable \"hif-token\"." |
bf8b35f0db41
(hif-nexttoken): Move to before first def.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41712
diff
changeset
|
359 (setq hif-token (pop hif-token-list))) |
bf8b35f0db41
(hif-nexttoken): Move to before first def.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41712
diff
changeset
|
360 |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
361 (defun hif-parse-if-exp (hif-token-list) |
31 | 362 "Parse the TOKEN-LIST. Return translated list in prefix form." |
363 (hif-nexttoken) | |
364 (prog1 | |
365 (hif-expr) | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
366 (if hif-token ; is there still a token? |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
367 (error "Error: unexpected token: %s" hif-token)))) |
31 | 368 |
369 (defun hif-expr () | |
13855 | 370 "Parse an expression as found in #if. |
31 | 371 expr : term | expr '||' term." |
372 (let ((result (hif-term))) | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
373 (while (eq hif-token 'or) |
31 | 374 (hif-nexttoken) |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
375 (setq result (list 'hif-or result (hif-term)))) |
210 | 376 result)) |
31 | 377 |
378 (defun hif-term () | |
13855 | 379 "Parse a term : eq-expr | term '&&' eq-expr." |
8914 | 380 (let ((result (hif-eq-expr))) |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
381 (while (eq hif-token 'and) |
31 | 382 (hif-nexttoken) |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
383 (setq result (list 'hif-and result (hif-eq-expr)))) |
210 | 384 result)) |
31 | 385 |
8914 | 386 (defun hif-eq-expr () |
19528
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
387 "Parse an eq-expr : math | eq-expr `=='|`!='|`<'|`>'|`>='|`<=' math." |
8914 | 388 (let ((result (hif-math)) |
389 (eq-token nil)) | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
390 (while (memq hif-token '(equal hif-notequal hif-greater hif-less |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
391 hif-greater-equal hif-less-equal)) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
392 (setq eq-token hif-token) |
8914 | 393 (hif-nexttoken) |
394 (setq result (list eq-token result (hif-math)))) | |
395 result)) | |
396 | |
397 (defun hif-math () | |
13855 | 398 "Parse an expression with + or - and simpler things. |
8914 | 399 math : factor | math '+|-' factor." |
400 (let ((result (hif-factor)) | |
401 (math-op nil)) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
402 (while (memq hif-token '(hif-plus hif-minus)) |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
403 (setq math-op hif-token) |
8914 | 404 (hif-nexttoken) |
405 (setq result (list math-op result (hif-factor)))) | |
406 result)) | |
407 | |
31 | 408 (defun hif-factor () |
13855 | 409 "Parse a factor: '!' factor | '(' expr ')' | 'defined(' id ')' | id." |
31 | 410 (cond |
26519 | 411 ((eq hif-token 'not) |
412 (hif-nexttoken) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
413 (list 'hif-not (hif-factor))) |
31 | 414 |
26519 | 415 ((eq hif-token 'lparen) |
416 (hif-nexttoken) | |
417 (let ((result (hif-expr))) | |
418 (if (not (eq hif-token 'rparen)) | |
419 (error "Bad token in parenthesized expression: %s" hif-token) | |
420 (hif-nexttoken) | |
421 result))) | |
31 | 422 |
26519 | 423 ((eq hif-token 'hif-defined) |
424 (hif-nexttoken) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
425 (let ((paren (when (eq hif-token 'lparen) (hif-nexttoken) t)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
426 (ident hif-token)) |
26519 | 427 (if (memq hif-token '(or and not hif-defined lparen rparen)) |
428 (error "Error: unexpected token: %s" hif-token)) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
429 (when paren |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
430 (hif-nexttoken) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
431 (unless (eq hif-token 'rparen) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
432 (error "Error: expected \")\" after identifier"))) |
26519 | 433 (hif-nexttoken) |
41619 | 434 `(hif-defined (quote ,ident)))) |
31 | 435 |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
436 ((numberp hif-token) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
437 (prog1 hif-token (hif-nexttoken))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
438 |
26519 | 439 (t ; identifier |
440 (let ((ident hif-token)) | |
441 (if (memq ident '(or and)) | |
442 (error "Error: missing identifier")) | |
443 (hif-nexttoken) | |
41619 | 444 `(hif-lookup (quote ,ident)))))) |
31 | 445 |
8914 | 446 (defun hif-mathify (val) |
447 "Treat VAL as a number: if it's t or nil, use 1 or 0." | |
41619 | 448 (cond ((eq val t) 1) |
449 ((null val) 0) | |
8914 | 450 (t val))) |
451 | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
452 (defun hif-and (a b) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
453 (and (not (zerop (hif-mathify a))) (not (zerop (hif-mathify b))))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
454 (defun hif-or (a b) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
455 (or (not (zerop (hif-mathify a))) (not (zerop (hif-mathify b))))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
456 (defun hif-not (a) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
457 (zerop (hif-mathify a))) |
8914 | 458 (defun hif-plus (a b) |
459 "Like ordinary plus but treat t and nil as 1 and 0." | |
460 (+ (hif-mathify a) (hif-mathify b))) | |
461 (defun hif-minus (a b) | |
462 "Like ordinary minus but treat t and nil as 1 and 0." | |
463 (- (hif-mathify a) (hif-mathify b))) | |
464 (defun hif-notequal (a b) | |
465 "Like (not (equal A B)) but as one symbol." | |
466 (not (equal a b))) | |
19528
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
467 (defun hif-greater (a b) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
468 "Simple comparison." |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
469 (> (hif-mathify a) (hif-mathify b))) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
470 (defun hif-less (a b) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
471 "Simple comparison." |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
472 (< (hif-mathify a) (hif-mathify b))) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
473 (defun hif-greater-equal (a b) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
474 "Simple comparison." |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
475 (>= (hif-mathify a) (hif-mathify b))) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
476 (defun hif-less-equal (a b) |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
477 "Simple comparison." |
8fc9b5fc7633
(hif-greater, hif-less, hif-greater-equal)
Richard M. Stallman <rms@gnu.org>
parents:
16182
diff
changeset
|
478 (<= (hif-mathify a) (hif-mathify b))) |
31 | 479 ;;;----------- end of parser ----------------------- |
480 | |
481 | |
482 (defun hif-canonicalize () | |
41619 | 483 "When at beginning of #ifX, return a Lisp expression for its condition." |
31 | 484 (save-excursion |
485 (let ((negate (looking-at hif-ifndef-regexp))) | |
486 (re-search-forward hif-ifx-regexp) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
487 (let* ((tokens (hif-tokenize (point) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
488 (progn (hif-end-of-line) (point)))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
489 (expr (hif-parse-if-exp tokens))) |
41619 | 490 ;; (message "hif-canonicalized: %s" expr) |
31 | 491 (if negate |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
492 (list 'hif-not expr) |
31 | 493 expr))))) |
494 | |
495 | |
496 (defun hif-find-any-ifX () | |
13855 | 497 "Move to next #if..., or #ifndef, at point or after." |
41619 | 498 ;; (message "find ifX at %d" (point)) |
31 | 499 (prog1 |
500 (re-search-forward hif-ifx-regexp (point-max) t) | |
501 (beginning-of-line))) | |
502 | |
503 | |
504 (defun hif-find-next-relevant () | |
13855 | 505 "Move to next #if..., #else, or #endif, after the current line." |
41619 | 506 ;; (message "hif-find-next-relevant at %d" (point)) |
31 | 507 (end-of-line) |
41619 | 508 ;; avoid infinite recursion by only going to beginning of line if match found |
31 | 509 (if (re-search-forward hif-ifx-else-endif-regexp (point-max) t) |
210 | 510 (beginning-of-line))) |
31 | 511 |
512 (defun hif-find-previous-relevant () | |
13855 | 513 "Move to previous #if..., #else, or #endif, before the current line." |
41619 | 514 ;; (message "hif-find-previous-relevant at %d" (point)) |
31 | 515 (beginning-of-line) |
41619 | 516 ;; avoid infinite recursion by only going to beginning of line if match found |
31 | 517 (if (re-search-backward hif-ifx-else-endif-regexp (point-min) t) |
210 | 518 (beginning-of-line))) |
31 | 519 |
520 | |
521 (defun hif-looking-at-ifX () ;; Should eventually see #if | |
522 (looking-at hif-ifx-regexp)) | |
523 (defun hif-looking-at-endif () | |
524 (looking-at hif-endif-regexp)) | |
525 (defun hif-looking-at-else () | |
526 (looking-at hif-else-regexp)) | |
527 | |
528 | |
529 | |
530 (defun hif-ifdef-to-endif () | |
531 "If positioned at #ifX or #else form, skip to corresponding #endif." | |
41619 | 532 ;; (message "hif-ifdef-to-endif at %d" (point)) (sit-for 1) |
31 | 533 (hif-find-next-relevant) |
534 (cond ((hif-looking-at-ifX) | |
535 (hif-ifdef-to-endif) ; find endif of nested if | |
536 (hif-ifdef-to-endif)) ; find outer endif or else | |
537 ((hif-looking-at-else) | |
538 (hif-ifdef-to-endif)) ; find endif following else | |
539 ((hif-looking-at-endif) | |
540 'done) | |
541 (t | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
542 (error "Mismatched #ifdef #endif pair")))) |
31 | 543 |
544 | |
545 (defun hif-endif-to-ifdef () | |
546 "If positioned at #endif form, skip backward to corresponding #ifX." | |
41619 | 547 ;; (message "hif-endif-to-ifdef at %d" (point)) |
31 | 548 (let ((start (point))) |
549 (hif-find-previous-relevant) | |
550 (if (= start (point)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
551 (error "Mismatched #ifdef #endif pair"))) |
31 | 552 (cond ((hif-looking-at-endif) |
553 (hif-endif-to-ifdef) ; find beginning of nested if | |
554 (hif-endif-to-ifdef)) ; find beginning of outer if or else | |
555 ((hif-looking-at-else) | |
556 (hif-endif-to-ifdef)) | |
557 ((hif-looking-at-ifX) | |
558 'done) | |
922 | 559 (t))) ; never gets here |
31 | 560 |
561 | |
562 (defun forward-ifdef (&optional arg) | |
563 "Move point to beginning of line of the next ifdef-endif. | |
210 | 564 With argument, do this that many times." |
31 | 565 (interactive "p") |
566 (or arg (setq arg 1)) | |
41619 | 567 (if (< arg 0) (backward-ifdef (- arg)) |
568 (while (< 0 arg) | |
569 (setq arg (- arg)) | |
570 (let ((start (point))) | |
571 (unless (hif-looking-at-ifX) | |
31 | 572 (hif-find-next-relevant)) |
41619 | 573 (if (hif-looking-at-ifX) |
574 (hif-ifdef-to-endif) | |
575 (goto-char start) | |
576 (error "No following #ifdef")))))) | |
31 | 577 |
578 | |
579 (defun backward-ifdef (&optional arg) | |
580 "Move point to beginning of the previous ifdef-endif. | |
210 | 581 With argument, do this that many times." |
31 | 582 (interactive "p") |
583 (or arg (setq arg 1)) | |
41619 | 584 (if (< arg 0) (forward-ifdef (- arg)) |
585 (while (< 0 arg) | |
586 (setq arg (1- arg)) | |
587 (beginning-of-line) | |
588 (let ((start (point))) | |
589 (unless (hif-looking-at-endif) | |
31 | 590 (hif-find-previous-relevant)) |
41619 | 591 (if (hif-looking-at-endif) |
592 (hif-endif-to-ifdef) | |
593 (goto-char start) | |
594 (error "No previous #ifdef")))))) | |
31 | 595 |
596 | |
597 (defun down-ifdef () | |
598 "Move point to beginning of nested ifdef or else-part." | |
599 (interactive) | |
600 (let ((start (point))) | |
601 (hif-find-next-relevant) | |
602 (if (or (hif-looking-at-ifX) (hif-looking-at-else)) | |
603 () | |
604 (goto-char start) | |
210 | 605 (error "No following #ifdef")))) |
31 | 606 |
607 | |
608 (defun up-ifdef () | |
609 "Move point to beginning of enclosing ifdef or else-part." | |
610 (interactive) | |
611 (beginning-of-line) | |
612 (let ((start (point))) | |
41619 | 613 (unless (hif-looking-at-endif) |
614 (hif-find-previous-relevant)) | |
31 | 615 (if (hif-looking-at-endif) |
616 (hif-endif-to-ifdef)) | |
617 (if (= start (point)) | |
210 | 618 (error "No previous #ifdef")))) |
31 | 619 |
620 (defun next-ifdef (&optional arg) | |
621 "Move to the beginning of the next #ifX, #else, or #endif. | |
210 | 622 With argument, do this that many times." |
31 | 623 (interactive "p") |
624 (or arg (setq arg 1)) | |
41619 | 625 (if (< arg 0) (previous-ifdef (- arg)) |
626 (while (< 0 arg) | |
627 (setq arg (1- arg)) | |
628 (hif-find-next-relevant) | |
629 (when (eolp) | |
630 (beginning-of-line) | |
631 (error "No following #ifdefs, #elses, or #endifs"))))) | |
31 | 632 |
633 (defun previous-ifdef (&optional arg) | |
634 "Move to the beginning of the previous #ifX, #else, or #endif. | |
210 | 635 With argument, do this that many times." |
31 | 636 (interactive "p") |
637 (or arg (setq arg 1)) | |
41619 | 638 (if (< arg 0) (next-ifdef (- arg)) |
639 (while (< 0 arg) | |
640 (setq arg (1- arg)) | |
641 (let ((start (point))) | |
642 (hif-find-previous-relevant) | |
643 (if (= start (point)) | |
644 (error "No previous #ifdefs, #elses, or #endifs")))))) | |
31 | 645 |
646 | |
41619 | 647 ;;===%%SF%% parsing (End) === |
31 | 648 |
649 | |
41619 | 650 ;;===%%SF%% hide-ifdef-hiding (Start) === |
31 | 651 |
652 | |
653 ;;; A range is a structure with four components: | |
654 ;;; ELSE-P True if there was an else clause for the ifdef. | |
655 ;;; START The start of the range. (beginning of line) | |
656 ;;; ELSE The else marker (beginning of line) | |
657 ;;; Only valid if ELSE-P is true. | |
658 ;;; END The end of the range. (beginning of line) | |
659 | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
660 (defsubst hif-make-range (start end &optional else) |
41619 | 661 (list start else end)) |
31 | 662 |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
663 (defsubst hif-range-start (range) (elt range 0)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
664 (defsubst hif-range-else (range) (elt range 1)) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
665 (defsubst hif-range-end (range) (elt range 2)) |
31 | 666 |
667 | |
668 | |
669 ;;; Find-Range | |
670 ;;; The workhorse, it delimits the #if region. Reasonably simple: | |
671 ;;; Skip until an #else or #endif is found, remembering positions. If | |
672 ;;; an #else was found, skip some more, looking for the true #endif. | |
673 | |
674 (defun hif-find-range () | |
41619 | 675 "Return a Range structure describing the current #if region. |
31 | 676 Point is left unchanged." |
41619 | 677 ;; (message "hif-find-range at %d" (point)) |
31 | 678 (save-excursion |
679 (beginning-of-line) | |
680 (let ((start (point)) | |
681 (else nil) | |
682 (end nil)) | |
683 ;; Part one. Look for either #endif or #else. | |
684 ;; This loop-and-a-half dedicated to E. Dijkstra. | |
41619 | 685 (while (progn |
686 (hif-find-next-relevant) | |
687 (hif-looking-at-ifX)) ; Skip nested ifdef | |
688 (hif-ifdef-to-endif)) | |
31 | 689 ;; Found either a #else or an #endif. |
690 (cond ((hif-looking-at-else) | |
691 (setq else (point))) | |
692 (t | |
41619 | 693 (setq end (point)))) ; (save-excursion (end-of-line) (point)) |
31 | 694 ;; If found #else, look for #endif. |
41619 | 695 (when else |
696 (while (progn | |
697 (hif-find-next-relevant) | |
698 (hif-looking-at-ifX)) ; Skip nested ifdef | |
699 (hif-ifdef-to-endif)) | |
700 (if (hif-looking-at-else) | |
701 (error "Found two elses in a row? Broken!")) | |
702 (setq end (point))) ; (save-excursion (end-of-line) (point)) | |
703 (hif-make-range start end else)))) | |
31 | 704 |
705 | |
706 ;;; A bit slimy. | |
707 | |
708 (defun hif-hide-line (point) | |
210 | 709 "Hide the line containing point. Does nothing if `hide-ifdef-lines' is nil." |
31 | 710 (if hide-ifdef-lines |
711 (save-excursion | |
712 (goto-char point) | |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
713 (hide-ifdef-region-internal (line-beginning-position) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
714 (progn (hif-end-of-line) (point)))))) |
31 | 715 |
716 | |
717 ;;; Hif-Possibly-Hide | |
718 ;;; There are four cases. The #ifX expression is "taken" if it | |
719 ;;; the hide-ifdef-evaluator returns T. Presumably, this means the code | |
720 ;;; inside the #ifdef would be included when the program was | |
721 ;;; compiled. | |
722 ;;; | |
723 ;;; Case 1: #ifX taken, and there's an #else. | |
724 ;;; The #else part must be hidden. The #if (then) part must be | |
725 ;;; processed for nested #ifX's. | |
726 ;;; Case 2: #ifX taken, and there's no #else. | |
727 ;;; The #if part must be processed for nested #ifX's. | |
728 ;;; Case 3: #ifX not taken, and there's an #else. | |
729 ;;; The #if part must be hidden. The #else part must be processed | |
730 ;;; for nested #ifs. | |
731 ;;; Case 4: #ifX not taken, and there's no #else. | |
732 ;;; The #ifX part must be hidden. | |
733 ;;; | |
734 ;;; Further processing is done by narrowing to the relevant region | |
735 ;;; and just recursively calling hide-ifdef-guts. | |
736 ;;; | |
737 ;;; When hif-possibly-hide returns, point is at the end of the | |
738 ;;; possibly-hidden range. | |
739 | |
740 (defun hif-recurse-on (start end) | |
210 | 741 "Call `hide-ifdef-guts' after narrowing to end of START line and END line." |
31 | 742 (save-excursion |
743 (save-restriction | |
744 (goto-char start) | |
745 (end-of-line) | |
746 (narrow-to-region (point) end) | |
747 (hide-ifdef-guts)))) | |
748 | |
749 (defun hif-possibly-hide () | |
13855 | 750 "Called at #ifX expression, this hides those parts that should be hidden. |
751 It uses the judgement of `hide-ifdef-evaluator'." | |
41619 | 752 ;; (message "hif-possibly-hide") (sit-for 1) |
753 (let ((test (hif-canonicalize)) | |
754 (range (hif-find-range))) | |
755 ;; (message "test = %s" test) (sit-for 1) | |
31 | 756 |
41619 | 757 (hif-hide-line (hif-range-end range)) |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
758 (if (not (hif-not (funcall hide-ifdef-evaluator test))) |
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
759 (cond ((hif-range-else range) ; case 1 |
31 | 760 (hif-hide-line (hif-range-else range)) |
41644
6546efdc0288
(hif-end-of-line): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41619
diff
changeset
|
761 (hide-ifdef-region (hif-range-else range) |
41619 | 762 (1- (hif-range-end range))) |
763 (hif-recurse-on (hif-range-start range) | |
764 (hif-range-else range))) | |
765 (t ; case 2 | |
766 (hif-recurse-on (hif-range-start range) | |
767 (hif-range-end range)))) | |
768 (cond ((hif-range-else range) ; case 3 | |
769 (hif-hide-line (hif-range-else range)) | |
770 (hide-ifdef-region (hif-range-start range) | |
771 (1- (hif-range-else range))) | |
772 (hif-recurse-on (hif-range-else range) | |
773 (hif-range-end range))) | |
774 (t ; case 4 | |
775 (hide-ifdef-region (point) | |
776 (1- (hif-range-end range)))))) | |
777 (hif-hide-line (hif-range-start range)) ; Always hide start. | |
778 (goto-char (hif-range-end range)) | |
779 (end-of-line))) | |
31 | 780 |
781 | |
782 | |
783 (defun hide-ifdef-guts () | |
13855 | 784 "Does most of the work of `hide-ifdefs'. |
785 It does not do the work that's pointless to redo on a recursive entry." | |
41619 | 786 ;; (message "hide-ifdef-guts") |
31 | 787 (save-excursion |
788 (goto-char (point-min)) | |
789 (while (hif-find-any-ifX) | |
790 (hif-possibly-hide)))) | |
791 | |
41619 | 792 ;;===%%SF%% hide-ifdef-hiding (End) === |
31 | 793 |
794 | |
41619 | 795 ;;===%%SF%% exports (Start) === |
31 | 796 |
998 | 797 ;;;###autoload |
20781 | 798 (defcustom hide-ifdef-initially nil |
799 "*Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated." | |
800 :type 'boolean | |
801 :group 'hide-ifdef) | |
31 | 802 |
998 | 803 ;;;###autoload |
20781 | 804 (defcustom hide-ifdef-read-only nil |
805 "*Set to non-nil if you want buffer to be read-only while hiding text." | |
806 :type 'boolean | |
807 :group 'hide-ifdef) | |
31 | 808 |
998 | 809 ;;;###autoload |
20781 | 810 (defcustom hide-ifdef-lines nil |
811 "*Non-nil means hide the #ifX, #else, and #endif lines." | |
812 :type 'boolean | |
813 :group 'hide-ifdef) | |
31 | 814 |
815 (defun hide-ifdef-toggle-read-only () | |
41619 | 816 "Toggle `hide-ifdef-read-only'." |
31 | 817 (interactive) |
818 (setq hide-ifdef-read-only (not hide-ifdef-read-only)) | |
819 (message "Hide-Read-Only %s" | |
820 (if hide-ifdef-read-only "ON" "OFF")) | |
821 (if hide-ifdef-hiding | |
822 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only))) | |
11581
e21661a78292
(hide-ifdef-toggle-read-only): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11455
diff
changeset
|
823 (force-mode-line-update)) |
31 | 824 |
825 (defun hide-ifdef-toggle-outside-read-only () | |
13855 | 826 "Replacement for `toggle-read-only' within Hide-Ifdef mode." |
31 | 827 (interactive) |
828 (setq hif-outside-read-only (not hif-outside-read-only)) | |
829 (message "Read only %s" | |
830 (if hif-outside-read-only "ON" "OFF")) | |
831 (setq buffer-read-only | |
832 (or (and hide-ifdef-hiding hide-ifdef-read-only) | |
41619 | 833 hif-outside-read-only)) |
11581
e21661a78292
(hide-ifdef-toggle-read-only): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11455
diff
changeset
|
834 (force-mode-line-update)) |
31 | 835 |
836 | |
837 (defun hide-ifdef-define (var) | |
838 "Define a VAR so that #ifdef VAR would be included." | |
839 (interactive "SDefine what? ") | |
8914 | 840 (hif-set-var var 1) |
31 | 841 (if hide-ifdef-hiding (hide-ifdefs))) |
842 | |
843 (defun hide-ifdef-undef (var) | |
844 "Undefine a VAR so that #ifdef VAR would not be included." | |
845 (interactive "SUndefine what? ") | |
846 (hif-set-var var nil) | |
847 (if hide-ifdef-hiding (hide-ifdefs))) | |
848 | |
849 | |
13855 | 850 (defun hide-ifdefs (&optional nomsg) |
1476 | 851 "Hide the contents of some #ifdefs. |
852 Assume that defined symbols have been added to `hide-ifdef-env'. | |
853 The text hidden is the text that would not be included by the C | |
854 preprocessor if it were given the file with those symbols defined. | |
31 | 855 |
8375 | 856 Turn off hiding by calling `show-ifdefs'." |
31 | 857 |
858 (interactive) | |
859 (message "Hiding...") | |
13856
8046a1616264
(hide-ifdefs): Set hif-outside-read-only here.
Richard M. Stallman <rms@gnu.org>
parents:
13855
diff
changeset
|
860 (setq hif-outside-read-only buffer-read-only) |
41619 | 861 (unless hide-ifdef-mode (hide-ifdef-mode 1)) ; turn on hide-ifdef-mode |
31 | 862 (if hide-ifdef-hiding |
863 (show-ifdefs)) ; Otherwise, deep confusion. | |
41619 | 864 (setq hide-ifdef-hiding t) |
865 (hide-ifdef-guts) | |
7324
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
866 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only)) |
13855 | 867 (or nomsg |
868 (message "Hiding done"))) | |
31 | 869 |
870 | |
871 (defun show-ifdefs () | |
13855 | 872 "Cancel the effects of `hide-ifdef': show the contents of all #ifdefs." |
31 | 873 (interactive) |
7324
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
874 (setq buffer-read-only hif-outside-read-only) |
41619 | 875 (hif-show-all) |
210 | 876 (setq hide-ifdef-hiding nil)) |
31 | 877 |
878 | |
879 (defun hif-find-ifdef-block () | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
880 "Utility for hide and show `ifdef-block'. |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
881 Return as (TOP . BOTTOM) the extent of ifdef block." |
31 | 882 (let (max-bottom) |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
883 (cons (save-excursion |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
884 (beginning-of-line) |
41619 | 885 (unless (or (hif-looking-at-else) (hif-looking-at-ifX)) |
886 (up-ifdef)) | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
887 (prog1 (point) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
888 (hif-ifdef-to-endif) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
889 (setq max-bottom (1- (point))))) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
890 (save-excursion |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
891 (beginning-of-line) |
41619 | 892 (unless (hif-looking-at-endif) |
893 (hif-find-next-relevant)) | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
894 (while (hif-looking-at-ifX) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
895 (hif-ifdef-to-endif) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
896 (hif-find-next-relevant)) |
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
897 (min max-bottom (1- (point))))))) |
31 | 898 |
899 | |
900 (defun hide-ifdef-block () | |
901 "Hide the ifdef block (true or false part) enclosing or before the cursor." | |
902 (interactive) | |
41619 | 903 (unless hide-ifdef-mode (hide-ifdef-mode 1)) |
904 (let ((top-bottom (hif-find-ifdef-block))) | |
23440
21dd0dd62240
(hide-ifdef-env, hif-outside-read-only):
Andreas Schwab <schwab@suse.de>
parents:
20781
diff
changeset
|
905 (hide-ifdef-region (car top-bottom) (cdr top-bottom)) |
41619 | 906 (when hide-ifdef-lines |
907 (hif-hide-line (car top-bottom)) | |
908 (hif-hide-line (1+ (cdr top-bottom)))) | |
210 | 909 (setq hide-ifdef-hiding t)) |
7324
7e78d145539b
(show-ifdefs, hide-ifdefs): Bind inhibit-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
5560
diff
changeset
|
910 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only))) |
31 | 911 |
912 | |
913 (defun show-ifdef-block () | |
914 "Show the ifdef block (true or false part) enclosing or before the cursor." | |
915 (interactive) | |
41619 | 916 (if hide-ifdef-lines |
917 (save-excursion | |
918 (beginning-of-line) | |
919 (hif-show-ifdef-region (1- (point)) (progn (end-of-line) (point)))) | |
920 (let ((top-bottom (hif-find-ifdef-block))) | |
921 (hif-show-ifdef-region (1- (car top-bottom)) (cdr top-bottom))))) | |
31 | 922 |
923 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
924 ;;; definition alist support |
31 | 925 |
926 (defvar hide-ifdef-define-alist nil | |
41619 | 927 "A global assoc list of pre-defined symbol lists.") |
31 | 928 |
929 (defun hif-compress-define-list (env) | |
930 "Compress the define list ENV into a list of defined symbols only." | |
41619 | 931 (let ((new-defs nil)) |
932 (dolist (def env new-defs) | |
933 (if (hif-lookup (car def)) (push (car env) new-defs))))) | |
31 | 934 |
935 (defun hide-ifdef-set-define-alist (name) | |
1476 | 936 "Set the association for NAME to `hide-ifdef-env'." |
31 | 937 (interactive "SSet define list: ") |
41619 | 938 (push (cons name (hif-compress-define-list hide-ifdef-env)) |
939 hide-ifdef-define-alist)) | |
31 | 940 |
941 (defun hide-ifdef-use-define-alist (name) | |
1476 | 942 "Set `hide-ifdef-env' to the define list specified by NAME." |
31 | 943 (interactive "SUse define list: ") |
944 (let ((define-list (assoc name hide-ifdef-define-alist))) | |
945 (if define-list | |
946 (setq hide-ifdef-env | |
29588
0cf06902af64
(hif-compress-define-list)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26519
diff
changeset
|
947 (mapcar (lambda (arg) (cons arg t)) |
31 | 948 (cdr define-list))) |
949 (error "No define list for %s" name)) | |
210 | 950 (if hide-ifdef-hiding (hide-ifdefs)))) |
31 | 951 |
13297
9699410bf8bf
Provide hideif; require cc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
12954
diff
changeset
|
952 (provide 'hideif) |
9699410bf8bf
Provide hideif; require cc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
12954
diff
changeset
|
953 |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
210
diff
changeset
|
954 ;;; hideif.el ends here |