Mercurial > emacs
annotate lisp/progmodes/hideif.el @ 6630:cd036c4e1dfd
(update_menu_bar): Pass 0 to set_frame_menubar.
author | Fred Pierresteguy <F.Pierresteguy@frcl.bull.fr> |
---|---|
date | Fri, 01 Apr 1994 13:43:24 +0000 |
parents | a9924c6db247 |
children | 7e78d145539b |
rev | line source |
---|---|
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
1 ;;; hide-ifdef-mode.el --- hides selected code within ifdef. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
2 |
895
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3 ;;; Copyright (C) 1988 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
5 ;; Author: Dan LaLiberte <liberte@a.cs.uiuc.edu> |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
6 ;; Keywords: c |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
7 |
895
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
9 |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
10 ;; 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
|
11 ;; 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
|
12 ;; 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
|
13 ;; any later version. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
14 |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
15 ;; 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
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
18 ;; GNU General Public License for more details. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
19 |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
81e6b85a9261
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
23 |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
24 ;;; Commentary: |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
25 |
31 | 26 ;;; To initialize, toggle the hide-ifdef minor mode with |
27 ;;; | |
28 ;;; M-x hide-ifdef-mode | |
29 ;;; | |
30 ;;; This will set up key bindings and call hide-ifdef-mode-hook if it | |
31 ;;; has a value. To explicitly hide ifdefs using a buffer-local | |
32 ;;; define list (default empty), type | |
33 ;;; | |
34 ;;; M-x hide-ifdefs or C-c h | |
35 ;;; | |
36 ;;; Hide-ifdef suppresses the display of code that the preprocessor wouldn't | |
37 ;;; pass through. The support of constant expressions in #if lines is | |
38 ;;; limited to identifiers, parens, and the operators: &&, ||, !, and | |
39 ;;; "defined". Please extend this. | |
40 ;;; | |
41 ;;; The hidden code is marked by ellipses (...). Be | |
42 ;;; cautious when editing near ellipses, since the hidden text is | |
43 ;;; still in the buffer, and you can move the point into it and modify | |
44 ;;; text unawares. If you don't want to see the ellipses, set | |
45 ;;; selective-display-ellipses to nil. But this can be dangerous. | |
46 ;;; You can make your buffer read-only while hide-ifdef-hiding by setting | |
47 ;;; hide-ifdef-read-only to a non-nil value. You can toggle this | |
48 ;;; variable with hide-ifdef-toggle-read-only (C-c C-q). | |
49 ;;; | |
50 ;;; You can undo the effect of hide-ifdefs by typing | |
51 ;;; | |
52 ;;; M-x show-ifdefs or C-c s | |
53 ;;; | |
54 ;;; Use M-x hide-ifdef-define (C-c d) to define a symbol. | |
55 ;;; Use M-x hide-ifdef-undef (C-c u) to undefine a symbol. | |
56 ;;; | |
57 ;;; If you define or undefine a symbol while hide-ifdef-mode is in effect, | |
58 ;;; the display will be updated. Only the define list for the current | |
59 ;;; buffer will be affected. You can save changes to the local define | |
60 ;;; list with hide-ifdef-set-define-alist. This adds entries | |
61 ;;; to hide-ifdef-define-alist. | |
62 ;;; | |
63 ;;; If you have defined a hide-ifdef-mode-hook, you can set | |
64 ;;; up a list of symbols that may be used by hide-ifdefs as in the | |
65 ;;; following example: | |
66 ;;; | |
67 ;;; (setq hide-ifdef-mode-hook | |
68 ;;; '(lambda () | |
69 ;;; (if (not hide-ifdef-define-alist) | |
70 ;;; (setq hide-ifdef-define-alist | |
71 ;;; '((list1 ONE TWO) | |
72 ;;; (list2 TWO THREE) | |
73 ;;; ))) | |
74 ;;; (hide-ifdef-use-define-alist 'list2) ; use list2 by default | |
75 ;;; )) | |
76 ;;; | |
77 ;;; You can call hide-ifdef-use-define-alist (C-c u) at any time to specify | |
78 ;;; another list to use. | |
79 ;;; | |
80 ;;; To cause ifdefs to be hidden as soon as hide-ifdef-mode is called, | |
81 ;;; set hide-ifdef-initially to non-nil. | |
82 ;;; | |
83 ;;; If you set hide-ifdef-lines to t, hide-ifdefs hides all the #ifdef lines. | |
84 ;;; In the absence of highlighting, that might be a bad idea. If you set | |
85 ;;; hide-ifdef-lines to nil (the default), the surrounding preprocessor | |
86 ;;; lines will be displayed. That can be confusing in its own | |
87 ;;; right. Other variations on display are possible, but not much | |
88 ;;; better. | |
89 ;;; | |
90 ;;; You can explicitly hide or show individual ifdef blocks irrespective | |
91 ;;; of the define list by using hide-ifdef-block and show-ifdef-block. | |
92 ;;; | |
93 ;;; You can move the point between ifdefs with forward-ifdef, backward-ifdef, | |
94 ;;; up-ifdef, down-ifdef, next-ifdef, and previous-ifdef. | |
95 ;;; | |
96 ;;; If you have minor-mode-alist in your mode line (the default) two labels | |
97 ;;; may appear. "Ifdef" will appear when hide-ifdef-mode is active. "Hiding" | |
98 ;;; will appear when text may be hidden ("hide-ifdef-hiding" is non-nil). | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
99 ;;; |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
100 ;;; Written by Brian Marick, at Gould, Computer Systems Division, Urbana IL. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
101 ;;; Extensively modified by Daniel LaLiberte (while at Gould). |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
102 ;;; |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
103 ;;; You may freely modify and distribute this, but keep a record |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
104 ;;; of modifications and send comments to: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
105 ;;; liberte@a.cs.uiuc.edu or ihnp4!uiucdcs!liberte |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
106 ;;; I will continue to upgrade hide-ifdef-mode |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1476
diff
changeset
|
107 ;;; with your contributions. |
31 | 108 |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
109 ;;; Change Log: |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
110 ;;; |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
111 ;;; Revision 1.7 88/02/16 03:12:58 liberte |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
112 ;;; Fixed comments and doc strings. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
113 ;;; Added optional prefix arg for ifdef motion commands. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
114 ;;; |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
115 ;;; Revision 1.6 88/02/05 00:36:18 liberte |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
116 ;;; Bug fixes. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
117 ;;; 1. A multi-line comment that starts on an #ifdef line |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
118 ;;; now ends on that line. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
119 ;;; 2. Fix bad function name: hide-hif-ifdef-toggle-read-only |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
120 ;;; 3. Make ifdef-block hiding work outside of ifdefs. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
121 ;;; |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
122 ;;; Revision 1.5 88/01/31 23:19:31 liberte |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
123 ;;; Major clean up. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
124 ;;; Prefix internal names with "hif-". |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
125 ;;; |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
126 ;;; Revision 1.4 88/01/30 14:09:38 liberte |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
127 ;;; Add hide-ifdef-hiding and hide-ifdef-mode to minor-mode-alist. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
128 ;;; |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
129 ;;; Revision 1.3 88/01/29 00:38:19 liberte |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
130 ;;; Fix three bugs. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
131 ;;; 1. Function "defined" is just like lookup. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
132 ;;; 2. Skip to newline or cr in case text is hidden. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
133 ;;; 3. Use car of token list if just one symbol. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
134 ;;; |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
135 ;;; Revision 1.2 88/01/28 23:32:46 liberte |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
136 ;;; Use hide-ifdef-mode-prefix-key. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
137 ;;; Copy current-local-map so other buffers do not get |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
138 ;;; hide-ifdef-mode bindings. |
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
139 ;;; |
31 | 140 |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
660
diff
changeset
|
141 ;;; Code: |
31 | 142 |
143 (defvar hide-ifdef-mode-map nil | |
210 | 144 "Keymap used with Hide-Ifdef mode") |
31 | 145 |
146 (defconst hide-ifdef-mode-prefix-key "\C-c" | |
210 | 147 "Prefix key for all Hide-Ifdef mode commands.") |
31 | 148 |
149 (defvar hide-ifdef-mode-map-before nil | |
150 "Buffer-local variable to store a copy of the local keymap | |
210 | 151 before `hide-ifdef-mode' modifies it.") |
31 | 152 |
153 (defun define-hide-ifdef-mode-map () | |
154 (if hide-ifdef-mode-map | |
155 () ; dont redefine it. | |
156 (setq hide-ifdef-mode-map (make-sparse-keymap)) | |
3457
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
157 (define-key hide-ifdef-mode-map "\ed" 'hide-ifdef-define) |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
158 (define-key hide-ifdef-mode-map "\eu" 'hide-ifdef-undef) |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
159 (define-key hide-ifdef-mode-map "\eD" 'hide-ifdef-set-define-alist) |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
160 (define-key hide-ifdef-mode-map "\eU" 'hide-ifdef-use-define-alist) |
31 | 161 |
3457
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
162 (define-key hide-ifdef-mode-map "\eh" 'hide-ifdefs) |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
163 (define-key hide-ifdef-mode-map "\es" 'show-ifdefs) |
31 | 164 (define-key hide-ifdef-mode-map "\C-h" 'hide-ifdef-block) |
165 (define-key hide-ifdef-mode-map "\C-s" 'show-ifdef-block) | |
166 | |
167 (define-key hide-ifdef-mode-map "\C-f" 'forward-ifdef) | |
168 (define-key hide-ifdef-mode-map "\C-b" 'backward-ifdef) | |
169 (define-key hide-ifdef-mode-map "\C-d" 'down-ifdef) | |
170 (define-key hide-ifdef-mode-map "\C-u" 'up-ifdef) | |
171 (define-key hide-ifdef-mode-map "\C-n" 'next-ifdef) | |
172 (define-key hide-ifdef-mode-map "\C-p" 'previous-ifdef) | |
173 (define-key hide-ifdef-mode-map "\C-q" 'hide-ifdef-toggle-read-only) | |
3457
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
174 (let ((where (where-is-internal 'toggle-read-only nil nil t))) |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
175 (if where |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
176 (define-key hide-ifdef-mode-map |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
177 where |
730b8751e536
(define-hide-ifdef-mode-map): Don't bind C-c LETTER.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
178 'hide-ifdef-toggle-outside-read-only))) |
31 | 179 ) |
180 (fset 'hide-ifdef-mode-map hide-ifdef-mode-map) ; the function is the map | |
181 ) | |
182 | |
183 (defun hif-update-mode-line () | |
184 "Update mode-line by setting buffer-modified to itself." | |
185 (set-buffer-modified-p (buffer-modified-p))) | |
186 | |
187 (defvar hide-ifdef-mode nil | |
188 "non-nil when hide-ifdef-mode is activated.") | |
189 | |
190 (defvar hide-ifdef-hiding nil | |
191 "non-nil when text may be hidden.") | |
192 | |
193 (or (assq 'hide-ifdef-hiding minor-mode-alist) | |
194 (setq minor-mode-alist | |
195 (cons '(hide-ifdef-hiding " Hiding") | |
196 minor-mode-alist))) | |
197 | |
198 (or (assq 'hide-ifdef-mode minor-mode-alist) | |
199 (setq minor-mode-alist | |
200 (cons '(hide-ifdef-mode " Ifdef") | |
201 minor-mode-alist))) | |
202 | |
998 | 203 ;;;###autoload |
31 | 204 (defun hide-ifdef-mode (arg) |
210 | 205 "Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. |
206 With ARG, turn Hide-Ifdef mode on iff arg is positive. | |
207 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor | |
31 | 208 would eliminate may be hidden from view. Several variables affect |
209 how the hiding is done: | |
210 | |
211 hide-ifdef-env | |
212 An association list of defined and undefined symbols for the | |
210 | 213 current buffer. Initially, the global value of `hide-ifdef-env' |
214 is used. | |
31 | 215 |
216 hide-ifdef-define-alist | |
217 An association list of defined symbol lists. | |
210 | 218 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env' |
219 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env' | |
220 from one of the lists in `hide-ifdef-define-alist'. | |
31 | 221 |
222 hide-ifdef-lines | |
223 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and | |
224 #endif lines when hiding. | |
225 | |
226 hide-ifdef-initially | |
210 | 227 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode |
31 | 228 is activated. |
229 | |
230 hide-ifdef-read-only | |
231 Set to non-nil if you want to make buffers read only while hiding. | |
210 | 232 After `show-ifdefs', read-only status is restored to previous value. |
31 | 233 |
234 \\{hide-ifdef-mode-map}" | |
235 | |
236 (interactive "P") | |
237 (make-local-variable 'hide-ifdef-mode) | |
238 (setq hide-ifdef-mode | |
239 (if (null arg) | |
240 (not hide-ifdef-mode) | |
241 (> (prefix-numeric-value arg) 0))) | |
242 | |
243 (hif-update-mode-line) | |
244 | |
245 (if hide-ifdef-mode | |
246 (progn | |
247 ; fix c-mode syntax table so we can recognize whole symbols. | |
248 (modify-syntax-entry ?_ "w") | |
249 (modify-syntax-entry ?& ".") | |
250 (modify-syntax-entry ?\| ".") | |
251 | |
252 ; inherit global values | |
253 (make-local-variable 'hide-ifdef-env) | |
254 (setq hide-ifdef-env (default-value 'hide-ifdef-env)) | |
255 | |
256 (make-local-variable 'hide-ifdef-hiding) | |
257 (setq hide-ifdef-hiding (default-value 'hide-ifdef-hiding)) | |
258 | |
259 (make-local-variable 'hif-outside-read-only) | |
260 (setq hif-outside-read-only buffer-read-only) | |
261 | |
262 (make-local-variable 'hide-ifdef-mode-map-before) | |
263 (setq hide-ifdef-mode-map-before (current-local-map)) | |
264 (use-local-map (copy-keymap (current-local-map))) | |
265 (local-unset-key hide-ifdef-mode-prefix-key) | |
266 (local-set-key hide-ifdef-mode-prefix-key 'hide-ifdef-mode-map) | |
267 (define-hide-ifdef-mode-map) | |
268 | |
269 (run-hooks 'hide-ifdef-mode-hook) | |
270 | |
271 (if hide-ifdef-initially | |
272 (hide-ifdefs) | |
273 (show-ifdefs)) | |
274 (message "Enter hide-ifdef-mode.") | |
275 ) | |
276 ; else end hide-ifdef-mode | |
277 (if hide-ifdef-hiding | |
278 (show-ifdefs)) | |
279 (use-local-map hide-ifdef-mode-map-before) | |
280 (message "Exit hide-ifdef-mode.") | |
281 )) | |
282 | |
283 | |
284 ;; from outline.el with docstring fixed. | |
285 (defun hif-outline-flag-region (from to flag) | |
286 "Hides or shows lines from FROM to TO, according to FLAG. If FLAG | |
287 is \\n (newline character) then text is shown, while if FLAG is \\^M | |
288 \(control-M) the text is hidden." | |
289 (let ((modp (buffer-modified-p))) | |
290 (unwind-protect (progn | |
291 (subst-char-in-region from to | |
292 (if (= flag ?\n) ?\^M ?\n) | |
293 flag t) ) | |
294 (set-buffer-modified-p modp)) | |
295 )) | |
296 | |
297 (defun hif-show-all () | |
298 "Show all of the text in the current buffer." | |
299 (interactive) | |
300 (hif-outline-flag-region (point-min) (point-max) ?\n)) | |
301 | |
302 (defun hide-ifdef-region (start end) | |
303 "START is the start of a #if or #else form. END is the ending part. | |
304 Everything including these lines is made invisible." | |
305 (hif-outline-flag-region start end ?\^M) | |
306 ) | |
307 | |
308 (defun hif-show-ifdef-region (start end) | |
309 "Everything between START and END is made visible." | |
310 (hif-outline-flag-region start end ?\n) | |
311 ) | |
312 | |
313 | |
314 | |
315 ;===%%SF%% evaluation (Start) === | |
316 | |
317 (defvar hide-ifdef-evaluator 'eval | |
318 "The evaluator is given a canonical form and returns T if text under | |
319 that form should be displayed.") | |
320 | |
321 (defvar hif-undefined-symbol nil | |
322 "...is by default considered to be false.") | |
323 | |
324 (defvar hide-ifdef-env nil | |
325 "An alist of defined symbols and their values.") | |
326 | |
327 | |
328 (defun hif-set-var (var value) | |
329 "Prepend (var value) pair to hide-ifdef-env." | |
330 (setq hide-ifdef-env (cons (cons var value) hide-ifdef-env))) | |
331 | |
332 | |
333 (defun hif-lookup (var) | |
334 ; (message "hif-lookup %s" var) | |
335 (let ((val (assoc var hide-ifdef-env))) | |
336 (if val | |
337 (cdr val) | |
338 hif-undefined-symbol))) | |
339 | |
340 (defun hif-defined (var) | |
341 (hif-lookup var) | |
342 ; when #if expressions are fully supported, defined result should be 1 | |
343 ; (if (assoc var hide-ifdef-env) | |
344 ; 1 | |
345 ; nil) | |
346 ) | |
347 | |
348 | |
349 ;===%%SF%% evaluation (End) === | |
350 | |
351 | |
352 | |
353 ;===%%SF%% parsing (Start) === | |
354 ;;; The code that understands what ifs and ifdef in files look like. | |
355 | |
356 (defconst hif-cpp-prefix "\\(^\\|\r\\)[ \t]*#[ \t]*") | |
357 (defconst hif-ifndef-regexp (concat hif-cpp-prefix "ifndef")) | |
358 (defconst hif-ifx-regexp (concat hif-cpp-prefix "if\\(n?def\\)?[ \t]+")) | |
359 (defconst hif-else-regexp (concat hif-cpp-prefix "else")) | |
360 (defconst hif-endif-regexp (concat hif-cpp-prefix "endif")) | |
361 (defconst hif-ifx-else-endif-regexp | |
362 (concat hif-ifx-regexp "\\|" hif-else-regexp "\\|" hif-endif-regexp)) | |
363 | |
364 | |
365 (defun hif-infix-to-prefix (token-list) | |
366 "Convert list of tokens in infix into prefix list" | |
367 ; (message "hif-infix-to-prefix: %s" token-list) | |
368 (if (= 1 (length token-list)) | |
369 (` (hif-lookup (quote (, (car token-list))))) | |
370 (hif-parse-if-exp token-list)) | |
371 ) | |
372 | |
373 ; pattern to match initial identifier, !, &&, ||, (, or ). | |
374 (defconst hif-token-regexp "^\\(!\\|&&\\|||\\|[()]\\|\\w+\\)") | |
375 (defconst hif-end-of-comment "\\*/") | |
376 | |
377 | |
378 (defun hif-tokenize (expr-string) | |
379 "Separate string into a list of tokens" | |
380 (let ((token-list nil) | |
381 (expr-start 0) | |
382 (expr-length (length expr-string))) | |
383 | |
384 (while (< expr-start expr-length) | |
385 ; (message "expr-start = %d" expr-start) (sit-for 1) | |
386 (cond | |
387 ((string-match "^[ \t]+" expr-string expr-start) | |
388 ; skip whitespace | |
389 (setq expr-start (match-end 0)) | |
390 ; stick newline in string so ^ matches on the next string-match | |
391 (aset expr-string (1- expr-start) ?\n) | |
392 ) | |
393 | |
394 ((string-match "^/\\*" expr-string expr-start) | |
395 (setq expr-start (match-end 0)) | |
396 (aset expr-string (1- expr-start) ?\n) | |
397 (or | |
398 (string-match hif-end-of-comment | |
399 expr-string expr-start) ; eat comment | |
400 (string-match "$" expr-string expr-start)) ; multi-line comment | |
401 (setq expr-start (match-end 0)) | |
402 (aset expr-string (1- expr-start) ?\n) | |
403 ) | |
404 | |
5560
a9924c6db247
(hif-tokenize): Handle // comments after #if.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
405 ((string-match "^//" expr-string expr-start) |
a9924c6db247
(hif-tokenize): Handle // comments after #if.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
406 (string-match "$" expr-string expr-start) |
a9924c6db247
(hif-tokenize): Handle // comments after #if.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
407 (setq expr-start (match-end 0)) |
a9924c6db247
(hif-tokenize): Handle // comments after #if.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
408 ) |
a9924c6db247
(hif-tokenize): Handle // comments after #if.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
409 |
31 | 410 ((string-match hif-token-regexp expr-string expr-start) |
411 (let ((token (substring expr-string expr-start (match-end 0)))) | |
412 (setq expr-start (match-end 0)) | |
413 (aset expr-string (1- expr-start) ?\n) | |
414 ; (message "token: %s" token) (sit-for 1) | |
415 (setq token-list | |
416 (cons | |
417 (cond | |
418 ((string-equal token "||") 'or) | |
419 ((string-equal token "&&") 'and) | |
420 ((string-equal token "!") 'not) | |
421 ((string-equal token "defined") 'hif-defined) | |
422 ((string-equal token "(") 'lparen) | |
423 ((string-equal token ")") 'rparen) | |
424 (t (intern token))) | |
425 token-list)) | |
426 )) | |
427 (t (error "Bad #if expression: %s" expr-string)) | |
428 )) | |
429 (nreverse token-list) | |
430 )) | |
431 | |
432 ;;;----------------------------------------------------------------- | |
433 ;;; Translate C preprocessor #if expressions using recursive descent. | |
434 ;;; This parser is limited to the operators &&, ||, !, and "defined". | |
435 | |
436 (defun hif-parse-if-exp (token-list) | |
437 "Parse the TOKEN-LIST. Return translated list in prefix form." | |
438 (hif-nexttoken) | |
439 (prog1 | |
440 (hif-expr) | |
441 (if token ; is there still a token? | |
210 | 442 (error "Error: unexpected token: %s" token)))) |
31 | 443 |
444 (defun hif-nexttoken () | |
445 "Pop the next token from token-list into the let variable \"token\"." | |
446 (setq token (car token-list)) | |
447 (setq token-list (cdr token-list)) | |
210 | 448 token) |
31 | 449 |
450 (defun hif-expr () | |
451 "Parse and expression of the form | |
452 expr : term | expr '||' term." | |
453 (let ((result (hif-term))) | |
454 (while (eq token 'or) | |
455 (hif-nexttoken) | |
456 (setq result (list 'or result (hif-term)))) | |
210 | 457 result)) |
31 | 458 |
459 (defun hif-term () | |
460 "Parse a term of the form | |
461 term : factor | term '&&' factor." | |
462 (let ((result (hif-factor))) | |
463 (while (eq token 'and) | |
464 (hif-nexttoken) | |
465 (setq result (list 'and result (hif-factor)))) | |
210 | 466 result)) |
31 | 467 |
468 (defun hif-factor () | |
469 "Parse a factor of the form | |
470 factor : '!' factor | '(' expr ')' | 'defined(' id ')' | id." | |
471 (cond | |
472 ((eq token 'not) | |
473 (hif-nexttoken) | |
474 (list 'not (hif-factor))) | |
475 | |
476 ((eq token 'lparen) | |
477 (hif-nexttoken) | |
478 (let ((result (hif-expr))) | |
479 (if (not (eq token 'rparen)) | |
480 (error "Bad token in parenthesized expression: %s" token) | |
481 (hif-nexttoken) | |
482 result))) | |
483 | |
484 ((eq token 'hif-defined) | |
485 (hif-nexttoken) | |
486 (if (not (eq token 'lparen)) | |
487 (error "Error: expected \"(\" after \"defined\"")) | |
488 (hif-nexttoken) | |
489 (let ((ident token)) | |
490 (if (memq token '(or and not hif-defined lparen rparen)) | |
491 (error "Error: unexpected token: %s" token)) | |
492 (hif-nexttoken) | |
493 (if (not (eq token 'rparen)) | |
494 (error "Error: expected \")\" after identifier")) | |
495 (hif-nexttoken) | |
496 (` (hif-defined (quote (, ident)))) | |
497 )) | |
498 | |
499 (t ; identifier | |
500 (let ((ident token)) | |
501 (if (memq ident '(or and)) | |
502 (error "Error: missing identifier")) | |
503 (hif-nexttoken) | |
504 (` (hif-lookup (quote (, ident)))) | |
505 )) | |
506 )) | |
507 | |
508 ;;;----------- end of parser ----------------------- | |
509 | |
510 | |
511 (defun hif-canonicalize () | |
512 "When at beginning of #ifX, returns a canonical (evaluatable) | |
513 form for the expression." | |
514 (save-excursion | |
515 (let ((negate (looking-at hif-ifndef-regexp))) | |
516 (re-search-forward hif-ifx-regexp) | |
517 (let* ((expr-string | |
518 (buffer-substring (point) | |
519 (progn (skip-chars-forward "^\n\r") (point)))) | |
520 (expr (hif-infix-to-prefix (hif-tokenize expr-string)))) | |
521 ; (message "hif-canonicalized: %s" expr) | |
522 (if negate | |
523 (list 'not expr) | |
524 expr))))) | |
525 | |
526 | |
527 (defun hif-find-any-ifX () | |
528 "Position at beginning of next #if, #ifdef, or #ifndef, including one on | |
529 this line." | |
530 ; (message "find ifX at %d" (point)) | |
531 (prog1 | |
532 (re-search-forward hif-ifx-regexp (point-max) t) | |
533 (beginning-of-line))) | |
534 | |
535 | |
536 (defun hif-find-next-relevant () | |
537 "Position at beginning of next #ifdef, #ifndef, #else, #endif, | |
538 NOT including one on this line." | |
539 ; (message "hif-find-next-relevant at %d" (point)) | |
540 (end-of-line) | |
541 ; avoid infinite recursion by only going to beginning of line if match found | |
542 (if (re-search-forward hif-ifx-else-endif-regexp (point-max) t) | |
210 | 543 (beginning-of-line))) |
31 | 544 |
545 (defun hif-find-previous-relevant () | |
546 "Position at beginning of previous #ifdef, #ifndef, #else, #endif, | |
547 NOT including one on this line." | |
548 ; (message "hif-find-previous-relevant at %d" (point)) | |
549 (beginning-of-line) | |
550 ; avoid infinite recursion by only going to beginning of line if match found | |
551 (if (re-search-backward hif-ifx-else-endif-regexp (point-min) t) | |
210 | 552 (beginning-of-line))) |
31 | 553 |
554 | |
555 (defun hif-looking-at-ifX () ;; Should eventually see #if | |
556 (looking-at hif-ifx-regexp)) | |
557 (defun hif-looking-at-endif () | |
558 (looking-at hif-endif-regexp)) | |
559 (defun hif-looking-at-else () | |
560 (looking-at hif-else-regexp)) | |
561 | |
562 | |
563 | |
564 (defun hif-ifdef-to-endif () | |
565 "If positioned at #ifX or #else form, skip to corresponding #endif." | |
566 ; (message "hif-ifdef-to-endif at %d" (point)) (sit-for 1) | |
567 (hif-find-next-relevant) | |
568 (cond ((hif-looking-at-ifX) | |
569 (hif-ifdef-to-endif) ; find endif of nested if | |
570 (hif-ifdef-to-endif)) ; find outer endif or else | |
571 ((hif-looking-at-else) | |
572 (hif-ifdef-to-endif)) ; find endif following else | |
573 ((hif-looking-at-endif) | |
574 'done) | |
575 (t | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
576 (error "Mismatched #ifdef #endif pair")))) |
31 | 577 |
578 | |
579 (defun hif-endif-to-ifdef () | |
580 "If positioned at #endif form, skip backward to corresponding #ifX." | |
581 ; (message "hif-endif-to-ifdef at %d" (point)) | |
582 (let ((start (point))) | |
583 (hif-find-previous-relevant) | |
584 (if (= start (point)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
585 (error "Mismatched #ifdef #endif pair"))) |
31 | 586 (cond ((hif-looking-at-endif) |
587 (hif-endif-to-ifdef) ; find beginning of nested if | |
588 (hif-endif-to-ifdef)) ; find beginning of outer if or else | |
589 ((hif-looking-at-else) | |
590 (hif-endif-to-ifdef)) | |
591 ((hif-looking-at-ifX) | |
592 'done) | |
922 | 593 (t))) ; never gets here |
31 | 594 |
595 | |
596 (defun forward-ifdef (&optional arg) | |
597 "Move point to beginning of line of the next ifdef-endif. | |
210 | 598 With argument, do this that many times." |
31 | 599 (interactive "p") |
600 (or arg (setq arg 1)) | |
601 (if (< arg 0) | |
602 (backward-ifdef (- arg))) | |
603 (while (< 0 arg) | |
604 (setq arg (- arg)) | |
605 (let ((start (point))) | |
606 (if (not (hif-looking-at-ifX)) | |
607 (hif-find-next-relevant)) | |
608 (if (hif-looking-at-ifX) | |
609 (hif-ifdef-to-endif) | |
610 (goto-char start) | |
611 (error "No following #ifdef") | |
612 )))) | |
613 | |
614 | |
615 (defun backward-ifdef (&optional arg) | |
616 "Move point to beginning of the previous ifdef-endif. | |
210 | 617 With argument, do this that many times." |
31 | 618 (interactive "p") |
619 (or arg (setq arg 1)) | |
620 (if (< arg 0) | |
621 (forward-ifdef (- arg))) | |
622 (while (< 0 arg) | |
623 (setq arg (1- arg)) | |
624 (beginning-of-line) | |
625 (let ((start (point))) | |
626 (if (not (hif-looking-at-endif)) | |
627 (hif-find-previous-relevant)) | |
628 (if (hif-looking-at-endif) | |
629 (hif-endif-to-ifdef) | |
630 (goto-char start) | |
210 | 631 (error "No previous #ifdef"))))) |
31 | 632 |
633 | |
634 (defun down-ifdef () | |
635 "Move point to beginning of nested ifdef or else-part." | |
636 (interactive) | |
637 (let ((start (point))) | |
638 (hif-find-next-relevant) | |
639 (if (or (hif-looking-at-ifX) (hif-looking-at-else)) | |
640 () | |
641 (goto-char start) | |
210 | 642 (error "No following #ifdef")))) |
31 | 643 |
644 | |
645 (defun up-ifdef () | |
646 "Move point to beginning of enclosing ifdef or else-part." | |
647 (interactive) | |
648 (beginning-of-line) | |
649 (let ((start (point))) | |
650 (if (not (hif-looking-at-endif)) | |
651 (hif-find-previous-relevant)) | |
652 (if (hif-looking-at-endif) | |
653 (hif-endif-to-ifdef)) | |
654 (if (= start (point)) | |
210 | 655 (error "No previous #ifdef")))) |
31 | 656 |
657 (defun next-ifdef (&optional arg) | |
658 "Move to the beginning of the next #ifX, #else, or #endif. | |
210 | 659 With argument, do this that many times." |
31 | 660 (interactive "p") |
661 (or arg (setq arg 1)) | |
662 (if (< arg 0) | |
663 (previous-ifdef (- arg))) | |
664 (while (< 0 arg) | |
665 (setq arg (1- arg)) | |
666 (hif-find-next-relevant) | |
667 (if (eolp) | |
668 (progn | |
669 (beginning-of-line) | |
210 | 670 (error "No following #ifdefs, #elses, or #endifs"))))) |
31 | 671 |
672 (defun previous-ifdef (&optional arg) | |
673 "Move to the beginning of the previous #ifX, #else, or #endif. | |
210 | 674 With argument, do this that many times." |
31 | 675 (interactive "p") |
676 (or arg (setq arg 1)) | |
677 (if (< arg 0) | |
678 (next-ifdef (- arg))) | |
679 (while (< 0 arg) | |
680 (setq arg (1- arg)) | |
681 (let ((start (point))) | |
682 (hif-find-previous-relevant) | |
683 (if (= start (point)) | |
684 (error "No previous #ifdefs, #elses, or #endifs") | |
685 )))) | |
686 | |
687 | |
688 ;===%%SF%% parsing (End) === | |
689 | |
690 | |
691 ;===%%SF%% hide-ifdef-hiding (Start) === | |
692 | |
693 | |
694 ;;; A range is a structure with four components: | |
695 ;;; ELSE-P True if there was an else clause for the ifdef. | |
696 ;;; START The start of the range. (beginning of line) | |
697 ;;; ELSE The else marker (beginning of line) | |
698 ;;; Only valid if ELSE-P is true. | |
699 ;;; END The end of the range. (beginning of line) | |
700 | |
701 (defun hif-make-range (else-p start end &optional else) | |
702 (list else-p start else end)) | |
703 | |
704 (defun hif-range-else-p (range) (elt range 0)) | |
705 (defun hif-range-start (range) (elt range 1)) | |
706 (defun hif-range-else (range) (elt range 2)) | |
707 (defun hif-range-end (range) (elt range 3)) | |
708 | |
709 | |
710 | |
711 ;;; Find-Range | |
712 ;;; The workhorse, it delimits the #if region. Reasonably simple: | |
713 ;;; Skip until an #else or #endif is found, remembering positions. If | |
714 ;;; an #else was found, skip some more, looking for the true #endif. | |
715 | |
716 (defun hif-find-range () | |
717 "Returns a Range structure describing the current #if region. | |
718 Point is left unchanged." | |
719 ; (message "hif-find-range at %d" (point)) | |
720 (save-excursion | |
721 (beginning-of-line) | |
722 (let ((start (point)) | |
723 (else-p nil) | |
724 (else nil) | |
725 (end nil)) | |
726 ;; Part one. Look for either #endif or #else. | |
727 ;; This loop-and-a-half dedicated to E. Dijkstra. | |
728 (hif-find-next-relevant) | |
729 (while (hif-looking-at-ifX) ; Skip nested ifdef | |
730 (hif-ifdef-to-endif) | |
731 (hif-find-next-relevant)) | |
732 ;; Found either a #else or an #endif. | |
733 (cond ((hif-looking-at-else) | |
734 (setq else-p t) | |
735 (setq else (point))) | |
736 (t | |
737 (setq end (point)) ; (save-excursion (end-of-line) (point)) | |
738 )) | |
739 ;; If found #else, look for #endif. | |
740 (if else-p | |
741 (progn | |
742 (hif-find-next-relevant) | |
743 (while (hif-looking-at-ifX) ; Skip nested ifdef | |
744 (hif-ifdef-to-endif) | |
745 (hif-find-next-relevant)) | |
746 (if (hif-looking-at-else) | |
747 (error "Found two elses in a row? Broken!")) | |
748 (setq end (point)) ; (save-excursion (end-of-line) (point)) | |
749 )) | |
750 (hif-make-range else-p start end else)))) | |
751 | |
752 | |
753 ;;; A bit slimy. | |
754 ;;; NOTE: If there's an #ifdef at the beginning of the file, we can't | |
755 ;;; hide it. There's no previous newline to replace. If we added | |
756 ;;; one, we'd throw off all the counts. Feh. | |
757 | |
758 (defun hif-hide-line (point) | |
210 | 759 "Hide the line containing point. Does nothing if `hide-ifdef-lines' is nil." |
31 | 760 (if hide-ifdef-lines |
761 (save-excursion | |
762 (goto-char point) | |
763 (let ((modp (buffer-modified-p))) | |
764 (unwind-protect | |
765 (progn | |
766 (beginning-of-line) | |
767 (if (not (= (point) 1)) | |
768 (hide-ifdef-region (1- (point)) (point)))) | |
769 (set-buffer-modified-p modp)) | |
770 )) | |
771 )) | |
772 | |
773 | |
774 ;;; Hif-Possibly-Hide | |
775 ;;; There are four cases. The #ifX expression is "taken" if it | |
776 ;;; the hide-ifdef-evaluator returns T. Presumably, this means the code | |
777 ;;; inside the #ifdef would be included when the program was | |
778 ;;; compiled. | |
779 ;;; | |
780 ;;; Case 1: #ifX taken, and there's an #else. | |
781 ;;; The #else part must be hidden. The #if (then) part must be | |
782 ;;; processed for nested #ifX's. | |
783 ;;; Case 2: #ifX taken, and there's no #else. | |
784 ;;; The #if part must be processed for nested #ifX's. | |
785 ;;; Case 3: #ifX not taken, and there's an #else. | |
786 ;;; The #if part must be hidden. The #else part must be processed | |
787 ;;; for nested #ifs. | |
788 ;;; Case 4: #ifX not taken, and there's no #else. | |
789 ;;; The #ifX part must be hidden. | |
790 ;;; | |
791 ;;; Further processing is done by narrowing to the relevant region | |
792 ;;; and just recursively calling hide-ifdef-guts. | |
793 ;;; | |
794 ;;; When hif-possibly-hide returns, point is at the end of the | |
795 ;;; possibly-hidden range. | |
796 | |
797 (defun hif-recurse-on (start end) | |
210 | 798 "Call `hide-ifdef-guts' after narrowing to end of START line and END line." |
31 | 799 (save-excursion |
800 (save-restriction | |
801 (goto-char start) | |
802 (end-of-line) | |
803 (narrow-to-region (point) end) | |
804 (hide-ifdef-guts)))) | |
805 | |
806 (defun hif-possibly-hide () | |
807 "Called at #ifX expression, this hides those parts that should be | |
210 | 808 hidden, according to judgement of `hide-ifdef-evaluator'." |
31 | 809 ; (message "hif-possibly-hide") (sit-for 1) |
810 (let ((test (hif-canonicalize)) | |
811 (range (hif-find-range))) | |
812 ; (message "test = %s" test) (sit-for 1) | |
813 | |
814 (hif-hide-line (hif-range-end range)) | |
815 (if (funcall hide-ifdef-evaluator test) | |
816 (cond ((hif-range-else-p range) ; case 1 | |
817 (hif-hide-line (hif-range-else range)) | |
818 (hide-ifdef-region (hif-range-else range) | |
819 (1- (hif-range-end range))) | |
820 (hif-recurse-on (hif-range-start range) | |
821 (hif-range-else range))) | |
822 (t ; case 2 | |
823 (hif-recurse-on (hif-range-start range) | |
824 (hif-range-end range)))) | |
825 (cond ((hif-range-else-p range) ; case 3 | |
826 (hif-hide-line (hif-range-else range)) | |
827 (hide-ifdef-region (hif-range-start range) | |
828 (1- (hif-range-else range))) | |
829 (hif-recurse-on (hif-range-else range) | |
830 (hif-range-end range))) | |
831 (t ; case 4 | |
832 (hide-ifdef-region (point) | |
833 (1- (hif-range-end range)))) | |
834 )) | |
835 (hif-hide-line (hif-range-start range)) ; Always hide start. | |
836 (goto-char (hif-range-end range)) | |
837 (end-of-line) | |
838 )) | |
839 | |
840 | |
841 | |
842 (defun hide-ifdef-guts () | |
210 | 843 "Does the work of `hide-ifdefs', except for the work that's pointless |
31 | 844 to redo on a recursive entry." |
845 ; (message "hide-ifdef-guts") | |
846 (save-excursion | |
847 (goto-char (point-min)) | |
848 (while (hif-find-any-ifX) | |
849 (hif-possibly-hide)))) | |
850 | |
851 ;===%%SF%% hide-ifdef-hiding (End) === | |
852 | |
853 | |
854 ;===%%SF%% exports (Start) === | |
855 | |
998 | 856 ;;;###autoload |
31 | 857 (defvar hide-ifdef-initially nil |
210 | 858 "*Non-nil if `hide-ifdefs' should be called when Hide-Ifdef mode |
859 is first activated.") | |
31 | 860 |
861 (defvar hide-ifdef-hiding nil | |
862 "Non-nil if text might be hidden.") | |
863 | |
998 | 864 ;;;###autoload |
31 | 865 (defvar hide-ifdef-read-only nil |
866 "*Set to non-nil if you want buffer to be read-only while hiding text.") | |
867 | |
868 (defvar hif-outside-read-only nil | |
210 | 869 "Internal variable. Saves the value of `buffer-read-only' while hiding.") |
31 | 870 |
998 | 871 ;;;###autoload |
31 | 872 (defvar hide-ifdef-lines nil |
873 "*Set to t if you don't want to see the #ifX, #else, and #endif lines.") | |
874 | |
875 (defun hide-ifdef-toggle-read-only () | |
876 "Toggle hide-ifdef-read-only." | |
877 (interactive) | |
878 (setq hide-ifdef-read-only (not hide-ifdef-read-only)) | |
879 (message "Hide-Read-Only %s" | |
880 (if hide-ifdef-read-only "ON" "OFF")) | |
881 (if hide-ifdef-hiding | |
882 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only))) | |
210 | 883 (hif-update-mode-line)) |
31 | 884 |
885 (defun hide-ifdef-toggle-outside-read-only () | |
1476 | 886 "Replacement for `toggle-read-only' within Hide Ifdef mode." |
31 | 887 (interactive) |
888 (setq hif-outside-read-only (not hif-outside-read-only)) | |
889 (message "Read only %s" | |
890 (if hif-outside-read-only "ON" "OFF")) | |
891 (setq buffer-read-only | |
892 (or (and hide-ifdef-hiding hide-ifdef-read-only) | |
893 hif-outside-read-only) | |
894 ) | |
210 | 895 (hif-update-mode-line)) |
31 | 896 |
897 | |
898 (defun hide-ifdef-define (var) | |
899 "Define a VAR so that #ifdef VAR would be included." | |
900 (interactive "SDefine what? ") | |
901 (hif-set-var var t) | |
902 (if hide-ifdef-hiding (hide-ifdefs))) | |
903 | |
904 (defun hide-ifdef-undef (var) | |
905 "Undefine a VAR so that #ifdef VAR would not be included." | |
906 (interactive "SUndefine what? ") | |
907 (hif-set-var var nil) | |
908 (if hide-ifdef-hiding (hide-ifdefs))) | |
909 | |
910 | |
911 (defun hide-ifdefs () | |
1476 | 912 "Hide the contents of some #ifdefs. |
913 Assume that defined symbols have been added to `hide-ifdef-env'. | |
914 The text hidden is the text that would not be included by the C | |
915 preprocessor if it were given the file with those symbols defined. | |
31 | 916 |
1476 | 917 Turn off hiding by calling `show-ifdef'." |
31 | 918 |
919 (interactive) | |
920 (message "Hiding...") | |
921 (if (not hide-ifdef-mode) | |
922 (hide-ifdef-mode 1)) ; turn on hide-ifdef-mode | |
923 (if hide-ifdef-hiding | |
924 (show-ifdefs)) ; Otherwise, deep confusion. | |
925 (if buffer-read-only (toggle-read-only)) ; make it writable temporarily | |
926 (setq selective-display t) | |
927 (setq hide-ifdef-hiding t) | |
928 (hide-ifdef-guts) | |
929 (if (or hide-ifdef-read-only hif-outside-read-only) | |
210 | 930 (toggle-read-only)) ; make it read only |
931 (message "Hiding done")) | |
31 | 932 |
933 | |
934 (defun show-ifdefs () | |
1476 | 935 "Cancel the effects of `hide-ifdef'. The contents of all #ifdefs is shown." |
31 | 936 (interactive) |
937 (if buffer-read-only (toggle-read-only)) ; make it writable temporarily | |
938 (setq selective-display nil) ; defaults | |
939 (hif-show-all) | |
940 (if hif-outside-read-only | |
941 (toggle-read-only)) ; make it read only | |
210 | 942 (setq hide-ifdef-hiding nil)) |
31 | 943 |
944 | |
945 (defun hif-find-ifdef-block () | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
946 "Utility for hide and show `ifdef-block'. |
1476 | 947 Set top and bottom of ifdef block." |
31 | 948 (let (max-bottom) |
949 (save-excursion | |
950 (beginning-of-line) | |
951 (if (not (or (hif-looking-at-else) (hif-looking-at-ifX))) | |
952 (up-ifdef)) | |
953 (setq top (point)) | |
954 (hif-ifdef-to-endif) | |
210 | 955 (setq max-bottom (1- (point)))) |
31 | 956 (save-excursion |
957 (beginning-of-line) | |
958 (if (not (hif-looking-at-endif)) | |
959 (hif-find-next-relevant)) | |
960 (while (hif-looking-at-ifX) | |
961 (hif-ifdef-to-endif) | |
210 | 962 (hif-find-next-relevant)) |
963 (setq bottom (min max-bottom (1- (point)))))) | |
31 | 964 ) |
965 | |
966 | |
967 (defun hide-ifdef-block () | |
968 "Hide the ifdef block (true or false part) enclosing or before the cursor." | |
969 (interactive) | |
970 (if (not hide-ifdef-mode) | |
971 (hide-ifdef-mode 1)) | |
972 (if buffer-read-only (toggle-read-only)) | |
973 (setq selective-display t) | |
974 (let (top bottom) | |
975 (hif-find-ifdef-block) ; set top and bottom - dynamic scoping | |
976 (hide-ifdef-region top bottom) | |
977 (if hide-ifdef-lines | |
978 (progn | |
979 (hif-hide-line top) | |
980 (hif-hide-line (1+ bottom)))) | |
210 | 981 (setq hide-ifdef-hiding t)) |
31 | 982 (if (or hide-ifdef-read-only hif-outside-read-only) |
210 | 983 (toggle-read-only))) |
31 | 984 |
985 | |
986 (defun show-ifdef-block () | |
987 "Show the ifdef block (true or false part) enclosing or before the cursor." | |
988 (interactive) | |
989 (let ((old-read-only buffer-read-only)) | |
990 (if old-read-only (toggle-read-only)) | |
991 (if hide-ifdef-lines | |
992 (save-excursion | |
993 (beginning-of-line) | |
994 (hif-show-ifdef-region (1- (point)) (progn (end-of-line) (point)))) | |
995 | |
996 (let (top bottom) | |
997 (hif-find-ifdef-block) | |
998 (hif-show-ifdef-region (1- top) bottom)) | |
999 ) | |
1000 | |
1001 ; restore read only status since we dont know if all is shown. | |
210 | 1002 (if old-read-only (toggle-read-only)))) |
31 | 1003 |
1004 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3457
diff
changeset
|
1005 ;;; definition alist support |
31 | 1006 |
1007 (defvar hide-ifdef-define-alist nil | |
1008 "A global assoc list of pre-defined symbol lists") | |
1009 | |
1010 (defun hif-compress-define-list (env) | |
1011 "Compress the define list ENV into a list of defined symbols only." | |
1012 (let ((defs (mapcar '(lambda (arg) | |
1013 (if (hif-lookup (car arg)) (car arg))) | |
1014 env)) | |
1015 (new-defs nil)) | |
1016 (while defs | |
1017 (if (car defs) | |
1018 (setq new-defs (cons (car defs) new-defs))) | |
1019 (setq defs (cdr defs))) | |
210 | 1020 new-defs)) |
31 | 1021 |
1022 (defun hide-ifdef-set-define-alist (name) | |
1476 | 1023 "Set the association for NAME to `hide-ifdef-env'." |
31 | 1024 (interactive "SSet define list: ") |
1025 (setq hide-ifdef-define-alist | |
1026 (cons (cons name (hif-compress-define-list hide-ifdef-env)) | |
210 | 1027 hide-ifdef-define-alist))) |
31 | 1028 |
1029 (defun hide-ifdef-use-define-alist (name) | |
1476 | 1030 "Set `hide-ifdef-env' to the define list specified by NAME." |
31 | 1031 (interactive "SUse define list: ") |
1032 (let ((define-list (assoc name hide-ifdef-define-alist))) | |
1033 (if define-list | |
1034 (setq hide-ifdef-env | |
1035 (mapcar '(lambda (arg) (cons arg t)) | |
1036 (cdr define-list))) | |
1037 (error "No define list for %s" name)) | |
210 | 1038 (if hide-ifdef-hiding (hide-ifdefs)))) |
31 | 1039 |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
210
diff
changeset
|
1040 ;;; hideif.el ends here |
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
210
diff
changeset
|
1041 |