Refill some copyright headers.
[bpt/emacs.git] / lisp / skeleton.el
1 ;;; skeleton.el --- Lisp language extension for writing statement skeletons -*- coding: utf-8 -*-
2
3 ;; Copyright (C) 1993, 1994, 1995, 1996, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 ;; Author: Daniel Pfeiffer <occitan@esperanto.org>
7 ;; Maintainer: FSF
8 ;; Keywords: extensions, abbrev, languages, tools
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; A very concise language extension for writing structured statement
28 ;; skeleton insertion commands for programming language modes. This
29 ;; originated in shell-script mode and was applied to ada-mode's
30 ;; commands which shrunk to one third. And these commands are now
31 ;; user configurable.
32
33 ;;; Code:
34
35 ;; page 1: statement skeleton language definition & interpreter
36 ;; page 2: paired insertion
37 ;; page 3: mirror-mode, an example for setting up paired insertion
38
39
40 (defvar skeleton-transformation-function 'identity
41 "*If non-nil, function applied to literal strings before they are inserted.
42 It should take strings and characters and return them transformed, or nil
43 which means no transformation.
44 Typical examples might be `upcase' or `capitalize'.")
45 (defvaralias 'skeleton-transformation 'skeleton-transformation-function)
46
47 ; this should be a fourth argument to defvar
48 (put 'skeleton-transformation-function 'variable-interactive
49 "aTransformation function: ")
50
51
52 (defvar skeleton-autowrap t
53 "Controls wrapping behavior of functions created with `define-skeleton'.
54 When the region is visible (due to `transient-mark-mode' or marking a region
55 with the mouse) and this is non-nil and the function was called without an
56 explicit ARG, then the ARG defaults to -1, i.e. wrapping around the visible
57 region.
58
59 We will probably delete this variable in a future Emacs version
60 unless we get a substantial number of complaints about the auto-wrap
61 feature.")
62
63 (defvar skeleton-end-newline t
64 "If non-nil, make sure that the skeleton inserted ends with a newline.
65 This just influences the way the default `skeleton-end-hook' behaves.")
66
67 (defvar skeleton-end-hook
68 (lambda ()
69 (or (eolp) (not skeleton-end-newline) (newline-and-indent)))
70 "Hook called at end of skeleton but before going to point of interest.
71 By default this moves out anything following to next line,
72 unless `skeleton-end-newline' is set to nil.
73 The variables `v1' and `v2' are still set when calling this.")
74
75
76 ;;;###autoload
77 (defvar skeleton-filter-function 'identity
78 "Function for transforming a skeleton proxy's aliases' variable value.")
79 (defvaralias 'skeleton-filter 'skeleton-filter-function)
80
81 (defvar skeleton-untabify t
82 "When non-nil untabifies when deleting backwards with element -ARG.")
83
84 (defvar skeleton-newline-indent-rigidly nil
85 "When non-nil, indent rigidly under current line for element `\\n'.
86 Else use mode's `indent-line-function'.")
87
88 (defvar skeleton-further-elements ()
89 "A buffer-local varlist (see `let') of mode specific skeleton elements.
90 These variables are bound while interpreting a skeleton. Their value may
91 in turn be any valid skeleton element if they are themselves to be used as
92 skeleton elements.")
93 (make-variable-buffer-local 'skeleton-further-elements)
94
95
96 (defvar skeleton-subprompt
97 (substitute-command-keys
98 "RET, \\<minibuffer-local-map>\\[abort-recursive-edit] or \\[help-command]")
99 "*Replacement for %s in prompts of recursive subskeletons.")
100
101
102 (defvar skeleton-debug nil
103 "*If non-nil `define-skeleton' will override previous definition.")
104
105 (defvar skeleton-positions nil
106 "List of positions marked with @, after skeleton insertion.
107 The list describes the most recent skeleton insertion, and its elements
108 are integer buffer positions in the reverse order of the insertion order.")
109
110 ;; reduce the number of compiler warnings
111 (defvar skeleton-il)
112 (defvar skeleton-modified)
113 (defvar skeleton-point)
114 (defvar skeleton-regions)
115
116 (def-edebug-spec skeleton-edebug-spec
117 ([&or null stringp (stringp &rest stringp) [[&not atom] def-form]]
118 &rest &or "n" "_" "-" ">" "@" "&" "!" "resume:"
119 ("quote" def-form) skeleton-edebug-spec def-form))
120 ;;;###autoload
121 (defmacro define-skeleton (command documentation &rest skeleton)
122 "Define a user-configurable COMMAND that enters a statement skeleton.
123 DOCUMENTATION is that of the command.
124 SKELETON is as defined under `skeleton-insert'."
125 (declare (debug (&define name stringp skeleton-edebug-spec)))
126 (if skeleton-debug
127 (set command skeleton))
128 `(progn
129 ;; Tell self-insert-command that this function, if called by an
130 ;; abbrev, should cause the self-insert to be skipped.
131 (put ',command 'no-self-insert t)
132 (defun ,command (&optional str arg)
133 ,(concat documentation
134 (if (string-match "\n\\'" documentation)
135 "" "\n")
136 "\n"
137 "This is a skeleton command (see `skeleton-insert').
138 Normally the skeleton text is inserted at point, with nothing \"inside\".
139 If there is a highlighted region, the skeleton text is wrapped
140 around the region text.
141
142 A prefix argument ARG says to wrap the skeleton around the next ARG words.
143 A prefix argument of -1 says to wrap around region, even if not highlighted.
144 A prefix argument of zero says to wrap around zero words---that is, nothing.
145 This is a way of overriding the use of a highlighted region.")
146 (interactive "*P\nP")
147 (skeleton-proxy-new ',skeleton str arg))))
148
149 ;;;###autoload
150 (defun skeleton-proxy-new (skeleton &optional str arg)
151 "Insert SKELETON.
152 Prefix ARG allows wrapping around words or regions (see `skeleton-insert').
153 If no ARG was given, but the region is visible, ARG defaults to -1 depending
154 on `skeleton-autowrap'. An ARG of M-0 will prevent this just for once.
155 This command can also be an abbrev expansion (3rd and 4th columns in
156 \\[edit-abbrevs] buffer: \"\" command-name).
157
158 Optional second argument STR may also be a string which will be the value
159 of `str' whereas the skeleton's interactor is then ignored."
160 (skeleton-insert (funcall skeleton-filter-function skeleton)
161 ;; Pretend C-x a e passed its prefix arg to us
162 (if (or arg current-prefix-arg)
163 (prefix-numeric-value (or arg
164 current-prefix-arg))
165 (and skeleton-autowrap
166 (or (eq last-command 'mouse-drag-region)
167 (and transient-mark-mode mark-active))
168 ;; Deactivate the mark, in case one of the
169 ;; elements of the skeleton is sensitive
170 ;; to such situations (e.g. it is itself a
171 ;; skeleton).
172 (progn (deactivate-mark)
173 -1)))
174 (if (stringp str)
175 str))
176 ;; Return non-nil to tell expand-abbrev that expansion has happened.
177 ;; Otherwise the no-self-insert is ignored.
178 t)
179
180 ;;;###autoload
181 (defun skeleton-insert (skeleton &optional regions str)
182 "Insert the complex statement skeleton SKELETON describes very concisely.
183
184 With optional second argument REGIONS, wrap first interesting point
185 \(`_') in skeleton around next REGIONS words, if REGIONS is positive.
186 If REGIONS is negative, wrap REGIONS preceding interregions into first
187 REGIONS interesting positions \(successive `_'s) in skeleton.
188
189 An interregion is the stretch of text between two contiguous marked
190 points. If you marked A B C [] (where [] is the cursor) in
191 alphabetical order, the 3 interregions are simply the last 3 regions.
192 But if you marked B A [] C, the interregions are B-A, A-[], []-C.
193
194 The optional third argument STR, if specified, is the value for the
195 variable `str' within the skeleton. When this is non-nil, the
196 interactor gets ignored, and this should be a valid skeleton element.
197
198 SKELETON is made up as (INTERACTOR ELEMENT ...). INTERACTOR may be nil if
199 not needed, a prompt-string or an expression for complex read functions.
200
201 If ELEMENT is a string or a character it gets inserted (see also
202 `skeleton-transformation-function'). Other possibilities are:
203
204 \\n go to next line and indent according to mode
205 _ interesting point, interregion here
206 - interesting point, no interregion interaction, overrides
207 interesting point set by _
208 > indent line (or interregion if > _) according to major mode
209 @ add position to `skeleton-positions'
210 & do next ELEMENT if previous moved point
211 | do next ELEMENT if previous didn't move point
212 -num delete num preceding characters (see `skeleton-untabify')
213 resume: skipped, continue here if quit is signaled
214 nil skipped
215
216 After termination, point will be positioned at the last occurrence of -
217 or at the first occurrence of _ or at the end of the inserted text.
218
219 Further elements can be defined via `skeleton-further-elements'. ELEMENT may
220 itself be a SKELETON with an INTERACTOR. The user is prompted repeatedly for
221 different inputs. The SKELETON is processed as often as the user enters a
222 non-empty string. \\[keyboard-quit] terminates skeleton insertion, but
223 continues after `resume:' and positions at `_' if any. If INTERACTOR in such
224 a subskeleton is a prompt-string which contains a \".. %s ..\" it is
225 formatted with `skeleton-subprompt'. Such an INTERACTOR may also be a list of
226 strings with the subskeleton being repeated once for each string.
227
228 Quoted Lisp expressions are evaluated for their side-effects.
229 Other Lisp expressions are evaluated and the value treated as above.
230 Note that expressions may not return t since this implies an
231 endless loop. Modes can define other symbols by locally setting them
232 to any valid skeleton element. The following local variables are
233 available:
234
235 str first time: read a string according to INTERACTOR
236 then: insert previously read string once more
237 help help-form during interaction with the user or nil
238 input initial input (string or cons with index) while reading str
239 v1, v2 local variables for memorizing anything you want
240
241 When done with skeleton, but before going back to `_'-point call
242 `skeleton-end-hook' if that is non-nil."
243 (let ((skeleton-regions regions))
244 (and skeleton-regions
245 (setq skeleton-regions
246 (if (> skeleton-regions 0)
247 (list (copy-marker (point) t)
248 (save-excursion (forward-word skeleton-regions)
249 (point-marker)))
250 (setq skeleton-regions (- skeleton-regions))
251 ;; copy skeleton-regions - 1 elements from `mark-ring'
252 (let ((l1 (cons (mark-marker) mark-ring))
253 (l2 (list (copy-marker (point) t))))
254 (while (and l1 (> skeleton-regions 0))
255 (push (copy-marker (pop l1) t) l2)
256 (setq skeleton-regions (1- skeleton-regions)))
257 (sort l2 '<))))
258 (goto-char (car skeleton-regions))
259 (setq skeleton-regions (cdr skeleton-regions)))
260 (let ((beg (point))
261 skeleton-modified skeleton-point resume: help input v1 v2)
262 (setq skeleton-positions nil)
263 (unwind-protect
264 (eval `(let ,skeleton-further-elements
265 (skeleton-internal-list skeleton str)))
266 (run-hooks 'skeleton-end-hook)
267 (sit-for 0)
268 (or (pos-visible-in-window-p beg)
269 (progn
270 (goto-char beg)
271 (recenter 0)))
272 (if skeleton-point
273 (goto-char skeleton-point))))))
274
275 (defun skeleton-read (prompt &optional initial-input recursive)
276 "Function for reading a string from the minibuffer within skeletons.
277
278 PROMPT must be a string or a form that evaluates to a string.
279 It may contain a `%s' which will be replaced by `skeleton-subprompt'.
280 If non-nil second arg INITIAL-INPUT or variable `input' is a string or
281 cons with index to insert before reading. If third arg RECURSIVE is non-nil
282 i.e. we are handling the iterator of a subskeleton, returns empty string if
283 user didn't modify input.
284 While reading, the value of `minibuffer-help-form' is variable `help' if that
285 is non-nil or a default string."
286 (let ((minibuffer-help-form (or (if (boundp 'help) (symbol-value 'help))
287 (if recursive "\
288 As long as you provide input you will insert another subskeleton.
289
290 If you enter the empty string, the loop inserting subskeletons is
291 left, and the current one is removed as far as it has been entered.
292
293 If you quit, the current subskeleton is removed as far as it has been
294 entered. No more of the skeleton will be inserted, except maybe for a
295 syntactically necessary termination."
296 "\
297 You are inserting a skeleton. Standard text gets inserted into the buffer
298 automatically, and you are prompted to fill in the variable parts.")))
299 (eolp (eolp)))
300 ;; since Emacs doesn't show main window's cursor, do something noticeable
301 (or eolp
302 ;; We used open-line before, but that can do a lot more than we want,
303 ;; since it runs self-insert-command. E.g. it may remove spaces
304 ;; before point.
305 (save-excursion (insert "\n")))
306 (unwind-protect
307 (setq prompt (if (stringp prompt)
308 (read-string (format prompt skeleton-subprompt)
309 (setq initial-input
310 (or initial-input
311 (symbol-value 'input))))
312 (eval prompt)))
313 (or eolp
314 (delete-char 1))))
315 (if (and recursive
316 (or (null prompt)
317 (string= prompt "")
318 (equal prompt initial-input)
319 (equal prompt (car-safe initial-input))))
320 (signal 'quit t)
321 prompt))
322
323 (defun skeleton-internal-list (skeleton-il &optional str recursive)
324 (let* ((start (line-beginning-position))
325 (column (current-column))
326 (line (buffer-substring start (line-end-position)))
327 opoint)
328 (or str
329 (setq str `(setq str
330 (skeleton-read ',(car skeleton-il) nil ,recursive))))
331 (when (and (eq (cadr skeleton-il) '\n) (not recursive)
332 (save-excursion (skip-chars-backward " \t") (bolp)))
333 (setq skeleton-il (cons nil (cons '> (cddr skeleton-il)))))
334 (while (setq skeleton-modified (eq opoint (point))
335 opoint (point)
336 skeleton-il (cdr skeleton-il))
337 (condition-case quit
338 (skeleton-internal-1 (car skeleton-il) nil recursive)
339 (quit
340 (if (eq (cdr quit) 'recursive)
341 (setq recursive 'quit
342 skeleton-il (memq 'resume: skeleton-il))
343 ;; Remove the subskeleton as far as it has been shown
344 ;; the subskeleton shouldn't have deleted outside current line.
345 (end-of-line)
346 (delete-region start (point))
347 (insert line)
348 (move-to-column column)
349 (if (cdr quit)
350 (setq skeleton-il ()
351 recursive nil)
352 (signal 'quit 'recursive)))))))
353 ;; maybe continue loop or go on to next outer resume: section
354 (if (eq recursive 'quit)
355 (signal 'quit 'recursive)
356 recursive))
357
358 (defun skeleton-newline ()
359 (if (or (eq (point) skeleton-point)
360 (eq (point) (car skeleton-positions)))
361 ;; If point is recorded, avoid `newline' since it may do things like
362 ;; strip trailing spaces, and since recorded points are commonly placed
363 ;; right after a trailing space, calling `newline' can destroy the
364 ;; position and renders the recorded position incorrect.
365 (insert "\n")
366 (newline)))
367
368 (defun skeleton-internal-1 (element &optional literal recursive)
369 (cond
370 ((or (integerp element) (stringp element))
371 (if (and (integerp element) ; -num
372 (< element 0))
373 (if skeleton-untabify
374 (backward-delete-char-untabify (- element))
375 (delete-char element))
376 (insert (if (not literal)
377 (funcall skeleton-transformation-function element)
378 element))))
379 ((or (eq element '\n) ; actually (eq '\n 'n)
380 ;; The sequence `> \n' is handled specially so as to indent the first
381 ;; line after inserting the newline (to get the proper indentation).
382 (and (eq element '>) (eq (nth 1 skeleton-il) '\n) (pop skeleton-il)))
383 (let ((pos (if (eq element '>) (point))))
384 (cond
385 ((and skeleton-regions (eq (nth 1 skeleton-il) '_))
386 (or (eolp) (newline))
387 (if pos (save-excursion (goto-char pos) (indent-according-to-mode)))
388 (indent-region (line-beginning-position)
389 (car skeleton-regions) nil))
390 ;; \n as last element only inserts \n if not at eol.
391 ((and (null (cdr skeleton-il)) (not recursive) (eolp))
392 (if pos (indent-according-to-mode)))
393 (skeleton-newline-indent-rigidly
394 (let ((pt (point)))
395 (skeleton-newline)
396 (indent-to (save-excursion
397 (goto-char pt)
398 (if pos (indent-according-to-mode))
399 (current-indentation)))))
400 (t (if pos (reindent-then-newline-and-indent)
401 (skeleton-newline)
402 (indent-according-to-mode))))))
403 ((eq element '>)
404 (if (and skeleton-regions (eq (nth 1 skeleton-il) '_))
405 (indent-region (line-beginning-position)
406 (car skeleton-regions) nil)
407 (indent-according-to-mode)))
408 ((eq element '_)
409 (if skeleton-regions
410 (progn
411 (goto-char (pop skeleton-regions))
412 (and (<= (current-column) (current-indentation))
413 (eq (nth 1 skeleton-il) '\n)
414 (end-of-line 0)))
415 (or skeleton-point
416 (setq skeleton-point (point)))))
417 ((eq element '-)
418 (setq skeleton-point (point)))
419 ((eq element '&)
420 (when skeleton-modified (pop skeleton-il)))
421 ((eq element '|)
422 (unless skeleton-modified (pop skeleton-il)))
423 ((eq element '@)
424 (push (point) skeleton-positions))
425 ((eq 'quote (car-safe element))
426 (eval (nth 1 element)))
427 ((and (consp element)
428 (or (stringp (car element)) (listp (car element))))
429 ;; Don't forget: `symbolp' is also true for nil.
430 (if (symbolp (car-safe (car element)))
431 (while (and (skeleton-internal-list element nil t)
432 ;; If the interactor is nil, don't infinite loop.
433 (car element)))
434 (setq literal (car element))
435 (while literal
436 (skeleton-internal-list element (car literal))
437 (setq literal (cdr literal)))))
438 ((null element))
439 (t (skeleton-internal-1 (eval element) t recursive))))
440 \f
441 ;; Maybe belongs into simple.el or elsewhere
442 ;; ;;;###autoload
443 ;; (define-skeleton local-variables-section
444 ;; "Insert a local variables section. Use current comment syntax if any."
445 ;; (completing-read "Mode: " obarray
446 ;; (lambda (symbol)
447 ;; (if (commandp symbol)
448 ;; (string-match "-mode$" (symbol-name symbol))))
449 ;; t)
450 ;; '(save-excursion
451 ;; (if (re-search-forward page-delimiter nil t)
452 ;; (error "Not on last page")))
453 ;; comment-start "Local Variables:" comment-end \n
454 ;; comment-start "mode: " str
455 ;; & -5 | '(kill-line 0) & -1 | comment-end \n
456 ;; ( (completing-read (format "Variable, %s: " skeleton-subprompt)
457 ;; obarray
458 ;; (lambda (symbol)
459 ;; (or (eq symbol 'eval)
460 ;; (user-variable-p symbol)))
461 ;; t)
462 ;; comment-start str ": "
463 ;; (read-from-minibuffer "Expression: " nil read-expression-map nil
464 ;; 'read-expression-history) | _
465 ;; comment-end \n)
466 ;; resume:
467 ;; comment-start "End:" comment-end \n)
468 \f
469 ;; Variables and command for automatically inserting pairs like () or "".
470
471 (defvar skeleton-pair nil
472 "*If this is nil pairing is turned off, no matter what else is set.
473 Otherwise modes with `skeleton-pair-insert-maybe' on some keys
474 will attempt to insert pairs of matching characters.")
475
476
477 (defvar skeleton-pair-on-word nil
478 "*If this is nil, paired insertion is inhibited before or inside a word.")
479
480
481 (defvar skeleton-pair-filter-function (lambda () nil)
482 "Attempt paired insertion if this function returns nil, before inserting.
483 This allows for context-sensitive checking whether pairing is appropriate.")
484
485
486 (defvar skeleton-pair-alist ()
487 "An override alist of pairing partners matched against `last-command-event'.
488 Each alist element, which looks like (ELEMENT ...), is passed to
489 `skeleton-insert' with no interactor. Variable `str' does nothing.
490
491 Elements might be (?` ?` _ \"''\"), (?\\( ? _ \" )\") or (?{ \\n > _ \\n ?} >).")
492
493 (defvar skeleton-pair-default-alist '((?( _ ?)) (?\))
494 (?[ _ ?]) (?\])
495 (?{ _ ?}) (?\})
496 (?< _ ?>) (?\>)
497 (?« _ ?») (?\»)
498 (?` _ ?')))
499
500 ;;;###autoload
501 (defun skeleton-pair-insert-maybe (arg)
502 "Insert the character you type ARG times.
503
504 With no ARG, if `skeleton-pair' is non-nil, pairing can occur. If the region
505 is visible the pair is wrapped around it depending on `skeleton-autowrap'.
506 Else, if `skeleton-pair-on-word' is non-nil or we are not before or inside a
507 word, and if `skeleton-pair-filter-function' returns nil, pairing is performed.
508 Pairing is also prohibited if we are right after a quoting character
509 such as backslash.
510
511 If a match is found in `skeleton-pair-alist', that is inserted, else
512 the defaults are used. These are (), [], {}, <> and `' for the
513 symmetrical ones, and the same character twice for the others."
514 (interactive "*P")
515 (if (or arg (not skeleton-pair))
516 (self-insert-command (prefix-numeric-value arg))
517 (let* ((mark (and skeleton-autowrap
518 (or (eq last-command 'mouse-drag-region)
519 (and transient-mark-mode mark-active))))
520 (skeleton-end-hook)
521 (char last-command-event)
522 (skeleton (or (assq char skeleton-pair-alist)
523 (assq char skeleton-pair-default-alist)
524 `(,char _ ,char))))
525 (if (or (memq (char-syntax (preceding-char)) '(?\\ ?/))
526 (and (not mark)
527 (or overwrite-mode
528 (if (not skeleton-pair-on-word) (looking-at "\\w"))
529 (funcall skeleton-pair-filter-function))))
530 (self-insert-command (prefix-numeric-value arg))
531 (skeleton-insert (cons nil skeleton) (if mark -1))))))
532
533 \f
534 ;; A more serious example can be found in sh-script.el
535 ;; (defun mirror-mode ()
536 ;; "This major mode is an amusing little example of paired insertion.
537 ;;All printable characters do a paired self insert, while the other commands
538 ;;work normally."
539 ;; (interactive)
540 ;; (kill-all-local-variables)
541 ;; (make-local-variable 'skeleton-pair)
542 ;; (make-local-variable 'skeleton-pair-on-word)
543 ;; (make-local-variable 'skeleton-pair-filter-function)
544 ;; (make-local-variable 'skeleton-pair-alist)
545 ;; (setq major-mode 'mirror-mode
546 ;; mode-name "Mirror"
547 ;; skeleton-pair-on-word t
548 ;; ;; in the middle column insert one or none if odd window-width
549 ;; skeleton-pair-filter-function (lambda ()
550 ;; (if (>= (current-column)
551 ;; (/ (window-width) 2))
552 ;; ;; insert both on next line
553 ;; (next-line 1)
554 ;; ;; insert one or both?
555 ;; (= (* 2 (1+ (current-column)))
556 ;; (window-width))))
557 ;; ;; mirror these the other way round as well
558 ;; skeleton-pair-alist '((?) _ ?()
559 ;; (?] _ ?[)
560 ;; (?} _ ?{)
561 ;; (?> _ ?<)
562 ;; (?/ _ ?\\)
563 ;; (?\\ _ ?/)
564 ;; (?` ?` _ "''")
565 ;; (?' ?' _ "``"))
566 ;; ;; in this mode we exceptionally ignore the user, else it's no fun
567 ;; skeleton-pair t)
568 ;; (let ((map (make-vector 256 'skeleton-pair-insert-maybe))
569 ;; (i 0))
570 ;; (use-local-map `(keymap ,map))
571 ;; (while (< i ? )
572 ;; (aset map i nil)
573 ;; (aset map (+ i 128) nil)
574 ;; (setq i (1+ i))))
575 ;; (run-mode-hooks 'mirror-mode-hook))
576
577 (provide 'skeleton)
578
579 ;;; skeleton.el ends here