1 ;;;_* allout.el --- Extensive outline mode for use alone and with other modes.
3 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
5 ;; Author: Ken Manheimer <klm@python.org>
6 ;; Maintainer: Ken Manheimer <klm@python.org>
7 ;; Created: Dec 1991 - first release to usenet
8 ;; Version: $Id: allout.el,v 4.35 2000/02/01 15:58:14 klm Exp klm $||
9 ;; Keywords: outline mode wp languages
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
30 ;; Allout outline mode provides extensive outline formatting and
31 ;; and manipulation beyond standard emacs outline mode. It provides
32 ;; for structured editing of outlines, as well as navigation and
33 ;; exposure. It also provides for syntax-sensitive text like
34 ;; programming languages. (For an example, see the allout code
35 ;; itself, which is organized in ;; an outline framework.)
37 ;; In addition to outline navigation and exposure, allout includes:
39 ;; - topic-oriented repositioning, cut, and paste
40 ;; - integral outline exposure-layout
41 ;; - incremental search with dynamic exposure and reconcealment of hidden text
42 ;; - automatic topic-number maintenance
43 ;; - "Hot-spot" operation, for single-keystroke maneuvering and
44 ;; exposure control. (See the outline-mode docstring.)
46 ;; and many other features.
48 ;; The outline menubar additions provide quick reference to many of
49 ;; the features, and see the docstring of the variable `outline-init'
50 ;; for instructions on priming your emacs session for automatic
51 ;; activation of outline-mode.
53 ;; See the docstring of the variables `outline-layout' and
54 ;; `outline-auto-activation' for details on automatic activation of
55 ;; allout outline-mode as a minor mode. (It has changed since allout
56 ;; 3.x, for those of you that depend on the old method.)
58 ;; Note - the lines beginning with `;;;_' are outline topic headers.
59 ;; Just `ESC-x eval-current-buffer' to give it a whirl.
61 ;; Ken Manheimer klm@python.org
67 ;;;_* USER CUSTOMIZATION VARIABLES:
69 "Extensive outline mode for use alone and with other modes."
73 ;;;_ + Layout, Mode, and Topic Header Configuration
75 ;;;_ = outline-auto-activation
76 (defcustom outline-auto-activation nil
77 "*Regulates auto-activation modality of allout outlines - see `outline-init'.
79 Setq-default by `outline-init' to regulate whether or not allout
80 outline mode is automatically activated when the buffer-specific
81 variable `outline-layout' is non-nil, and whether or not the layout
82 dictated by `outline-layout' should be imposed on mode activation.
84 With value `t', auto-mode-activation and auto-layout are enabled.
85 \(This also depends on `outline-find-file-hooks' being installed in
86 `find-file-hooks', which is also done by `outline-init'.)
88 With value `ask', auto-mode-activation is enabled, and endorsement for
89 performing auto-layout is asked of the user each time.
91 With value `activate', only auto-mode-activation is enabled,
94 With value `nil', neither auto-mode-activation nor auto-layout are
97 See the docstring for `outline-init' for the proper interface to
99 :type
'(choice (const :tag
"On" t
)
100 (const :tag
"Ask about layout" "ask")
101 (const :tag
"Mode only" "activate")
102 (const :tag
"Off" nil
))
104 ;;;_ = outline-layout
105 (defvar outline-layout nil
106 "*Layout specification and provisional mode trigger for allout outlines.
110 A list value specifies a default layout for the current buffer, to be
111 applied upon activation of allout outline-mode. Any non-nil value will
112 automatically trigger allout outline-mode, provided `outline-init'
113 has been called to enable it.
115 See the docstring for `outline-init' for details on setting up for
116 auto-mode-activation, and for `outline-expose-topic' for the format of
117 the layout specification.
119 You can associate a particular outline layout with a file by setting
120 this var via the file's local variables. For example, the following
121 lines at the bottom of an Emacs Lisp file:
124 ;;;outline-layout: \(0 : -1 -1 0)
127 will, modulo the above-mentioned conditions, cause the mode to be
128 activated when the file is visited, followed by the equivalent of
129 `\(outline-expose-topic 0 : -1 -1 0)'. \(This is the layout used for
130 the allout.el, itself.)
132 Also, allout's mode-specific provisions will make topic prefixes default
133 to the comment-start string, if any, of the language of the file. This
134 is modulo the setting of `outline-use-mode-specific-leader', which see.")
135 (make-variable-buffer-local 'outline-layout
)
136 ;;;_ = outline-show-bodies
137 (defcustom outline-show-bodies nil
138 "*If non-nil, show entire body when exposing a topic, rather than
142 (make-variable-buffer-local 'outline-show-bodies
)
144 ;;;_ = outline-header-prefix
145 (defcustom outline-header-prefix
"."
146 "*Leading string which helps distinguish topic headers.
148 Outline topic header lines are identified by a leading topic
149 header prefix, which mostly have the value of this var at their front.
150 \(Level 1 topics are exceptions. They consist of only a single
151 character, which is typically set to the outline-primary-bullet. Many
152 outlines start at level 2 to avoid this discrepancy."
155 (make-variable-buffer-local 'outline-header-prefix
)
156 ;;;_ = outline-primary-bullet
157 (defcustom outline-primary-bullet
"*"
158 "Bullet used for top-level outline topics.
160 Outline topic header lines are identified by a leading topic header
161 prefix, which is concluded by bullets that includes the value of this
162 var and the respective outline-*-bullets-string vars.
164 The value of an asterisk (`*') provides for backwards compatibility
165 with the original emacs outline mode. See outline-plain-bullets-string
166 and outline-distinctive-bullets-string for the range of available
170 (make-variable-buffer-local 'outline-primary-bullet
)
171 ;;;_ = outline-plain-bullets-string
172 (defcustom outline-plain-bullets-string
".:,;"
173 "*The bullets normally used in outline topic prefixes.
175 See `outline-distinctive-bullets-string' for the other kind of
178 DO NOT include the close-square-bracket, `]', as a bullet.
180 Outline mode has to be reactivated in order for changes to the value
181 of this var to take effect."
184 (make-variable-buffer-local 'outline-plain-bullets-string
)
185 ;;;_ = outline-distinctive-bullets-string
186 (defcustom outline-distinctive-bullets-string
"*+-=>([{}&!?#%\"X@$~_\\"
187 "*Persistent outline header bullets used to distinguish special topics.
189 These bullets are used to distinguish topics from the run-of-the-mill
190 ones. They are not used in the standard topic headers created by
191 the topic-opening, shifting, and rebulleting \(eg, on topic shift,
192 topic paste, blanket rebulleting) routines, but are offered among the
193 choices for rebulleting. They are not altered by the above automatic
194 rebulleting, so they can be used to characterize topics, eg:
197 `\(' parenthetic comment \(with a matching close paren inside)
198 `[' meta-note \(with a matching close ] inside)
203 ... just for example. (`#' typically has a special meaning to the
204 software, according to the value of `outline-numbered-bullet'.)
206 See `outline-plain-bullets-string' for the selection of
209 You must run `set-outline-regexp' in order for outline mode to
210 reconcile to changes of this value.
212 DO NOT include the close-square-bracket, `]', on either of the bullet
216 (make-variable-buffer-local 'outline-distinctive-bullets-string
)
218 ;;;_ = outline-use-mode-specific-leader
219 (defcustom outline-use-mode-specific-leader t
220 "*When non-nil, use mode-specific topic-header prefixes.
222 Allout outline mode will use the mode-specific `outline-mode-leaders'
223 and/or comment-start string, if any, to lead the topic prefix string,
224 so topic headers look like comments in the programming language.
226 String values are used as they stand.
228 Value `t' means to first check for assoc value in `outline-mode-leaders'
229 alist, then use comment-start string, if any, then use default \(`.').
230 \(See note about use of comment-start strings, below.)
232 Set to the symbol for either of `outline-mode-leaders' or
233 `comment-start' to use only one of them, respectively.
235 Value `nil' means to always use the default \(`.').
237 comment-start strings that do not end in spaces are tripled, and an
238 `_' underscore is tacked on the end, to distinguish them from regular
239 comment strings. comment-start strings that do end in spaces are not
240 tripled, but an underscore is substituted for the space. [This
241 presumes that the space is for appearance, not comment syntax. You
242 can use `outline-mode-leaders' to override this behavior, when
244 :type
'(choice (const t
) (const nil
) string
245 (const outline-mode-leaders
)
246 (const comment-start
))
248 ;;;_ = outline-mode-leaders
249 (defvar outline-mode-leaders
'()
250 "Specific outline-prefix leading strings per major modes.
252 Entries will be used instead or in lieu of mode-specific
253 comment-start strings. See also `outline-use-mode-specific-leader'.
255 If you're constructing a string that will comment-out outline
256 structuring so it can be included in program code, append an extra
257 character, like an \"_\" underscore, to distinguish the lead string
258 from regular comments that start at bol.")
260 ;;;_ = outline-old-style-prefixes
261 (defcustom outline-old-style-prefixes nil
262 "*When non-nil, use only old-and-crusty outline-mode `*' topic prefixes.
264 Non-nil restricts the topic creation and modification
265 functions to asterix-padded prefixes, so they look exactly
266 like the original emacs-outline style prefixes.
268 Whatever the setting of this variable, both old and new style prefixes
269 are always respected by the topic maneuvering functions."
272 (make-variable-buffer-local 'outline-old-style-prefixes
)
273 ;;;_ = outline-stylish-prefixes - alternating bullets
274 (defcustom outline-stylish-prefixes t
275 "*Do fancy stuff with topic prefix bullets according to level, etc.
277 Non-nil enables topic creation, modification, and repositioning
278 functions to vary the topic bullet char (the char that marks the topic
279 depth) just preceding the start of the topic text) according to level.
280 Otherwise, only asterisks (`*') and distinctive bullets are used.
282 This is how an outline can look (but sans indentation) with stylish
287 . + One level 3 subtopic
288 . . One level 4 subtopic
289 . . A second 4 subtopic
290 . + Another level 3 subtopic
291 . #1 A numbered level 4 subtopic
293 . ! Another level 4 subtopic with a different distinctive bullet
294 . #4 And another numbered level 4 subtopic
296 This would be an outline with stylish prefixes inhibited (but the
297 numbered and other distinctive bullets retained):
301 . * One level 3 subtopic
302 . * One level 4 subtopic
303 . * A second 4 subtopic
304 . * Another level 3 subtopic
305 . #1 A numbered level 4 subtopic
307 . ! Another level 4 subtopic with a different distinctive bullet
308 . #4 And another numbered level 4 subtopic
310 Stylish and constant prefixes (as well as old-style prefixes) are
311 always respected by the topic maneuvering functions, regardless of
312 this variable setting.
314 The setting of this var is not relevant when outline-old-style-prefixes
318 (make-variable-buffer-local 'outline-stylish-prefixes
)
320 ;;;_ = outline-numbered-bullet
321 (defcustom outline-numbered-bullet
"#"
322 "*String designating bullet of topics that have auto-numbering; nil for none.
324 Topics having this bullet have automatic maintenance of a sibling
325 sequence-number tacked on, just after the bullet. Conventionally set
326 to \"#\", you can set it to a bullet of your choice. A nil value
327 disables numbering maintenance."
328 :type
'(choice (const nil
) string
)
330 (make-variable-buffer-local 'outline-numbered-bullet
)
331 ;;;_ = outline-file-xref-bullet
332 (defcustom outline-file-xref-bullet
"@"
333 "*Bullet signifying file cross-references, for `outline-resolve-xref'.
335 Set this var to the bullet you want to use for file cross-references."
336 :type
'(choice (const nil
) string
)
339 ;;;_ = outline-presentation-padding
340 (defcustom outline-presentation-padding
2
341 "*Presentation-format white-space padding factor, for greater indent."
345 (make-variable-buffer-local 'outline-presentation-padding
)
347 ;;;_ = outline-abbreviate-flattened-numbering
348 (defcustom outline-abbreviate-flattened-numbering nil
349 "*If non-nil, `outline-flatten-exposed-to-buffer' abbreviates topic
350 numbers to minimal amount with some context. Otherwise, entire
351 numbers are always used."
355 ;;;_ + LaTeX formatting
356 ;;;_ - outline-number-pages
357 (defcustom outline-number-pages nil
358 "*Non-nil turns on page numbering for LaTeX formatting of an outline."
361 ;;;_ - outline-label-style
362 (defcustom outline-label-style
"\\large\\bf"
363 "*Font and size of labels for LaTeX formatting of an outline."
366 ;;;_ - outline-head-line-style
367 (defcustom outline-head-line-style
"\\large\\sl "
368 "*Font and size of entries for LaTeX formatting of an outline."
371 ;;;_ - outline-body-line-style
372 (defcustom outline-body-line-style
" "
373 "*Font and size of entries for LaTeX formatting of an outline."
376 ;;;_ - outline-title-style
377 (defcustom outline-title-style
"\\Large\\bf"
378 "*Font and size of titles for LaTeX formatting of an outline."
382 (defcustom outline-title
'(or buffer-file-name
(current-buffer-name))
383 "*Expression to be evaluated to determine the title for LaTeX
387 ;;;_ - outline-line-skip
388 (defcustom outline-line-skip
".05cm"
389 "*Space between lines for LaTeX formatting of an outline."
392 ;;;_ - outline-indent
393 (defcustom outline-indent
".3cm"
394 "*LaTeX formatted depth-indent spacing."
398 ;;;_ + Miscellaneous customization
400 ;;;_ = outline-command-prefix
401 (defcustom outline-command-prefix
"\C-c"
402 "*Key sequence to be used as prefix for outline mode command key bindings."
406 ;;;_ = outline-keybindings-list
407 ;;; You have to reactivate outline-mode - `(outline-mode t)' - to
408 ;;; institute changes to this var.
409 (defvar outline-keybindings-list
()
410 "*List of outline-mode key / function bindings, for outline-mode-map.
412 String or vector key will be prefaced with outline-command-prefix,
413 unless optional third, non-nil element is present.")
414 (setq outline-keybindings-list
417 ("\C-n" outline-next-visible-heading
)
418 ("\C-p" outline-previous-visible-heading
)
419 ("\C-u" outline-up-current-level
)
420 ("\C-f" outline-forward-current-level
)
421 ("\C-b" outline-backward-current-level
)
422 ("\C-a" outline-beginning-of-current-entry
)
423 ("\C-e" outline-end-of-current-entry
)
425 ("\C-i" outline-show-children
)
426 ("\C-s" outline-show-current-subtree
)
427 ("\C-h" outline-hide-current-subtree
)
428 ("\C-o" outline-show-current-entry
)
429 ("!" outline-show-all
)
430 ; Alteration commands:
431 (" " outline-open-sibtopic
)
432 ("." outline-open-subtopic
)
433 ("," outline-open-supertopic
)
434 ("'" outline-shift-in
)
435 (">" outline-shift-in
)
436 ("<" outline-shift-out
)
437 ("\C-m" outline-rebullet-topic
)
438 ("*" outline-rebullet-current-heading
)
439 ("#" outline-number-siblings
)
440 ("\C-k" outline-kill-line t
)
441 ("\C-y" outline-yank t
)
442 ("\M-y" outline-yank-pop t
)
443 ("\C-k" outline-kill-topic
)
444 ; Miscellaneous commands:
445 ;([?\C-\ ] outline-mark-topic)
446 ("@" outline-resolve-xref
)
447 ("=c" outline-copy-exposed-to-buffer
)
448 ("=i" outline-indented-exposed-to-buffer
)
449 ("=t" outline-latexify-exposed
)
450 ("=p" outline-flatten-exposed-to-buffer
)))
452 ;;;_ = outline-isearch-dynamic-expose
453 (defcustom outline-isearch-dynamic-expose t
454 "*Non-nil enable dynamic exposure of hidden incremental-search
455 targets as they're encountered."
458 (make-variable-buffer-local 'outline-isearch-dynamic-expose
)
460 ;;;_ = outline-use-hanging-indents
461 (defcustom outline-use-hanging-indents t
462 "*If non-nil, topic body text auto-indent defaults to indent of the header.
463 Ie, it is indented to be just past the header prefix. This is
464 relevant mostly for use with indented-text-mode, or other situations
465 where auto-fill occurs.
467 \[This feature no longer depends in any way on the `filladapt.el'
468 lisp-archive package.\]"
471 (make-variable-buffer-local 'outline-use-hanging-indents
)
473 ;;;_ = outline-reindent-bodies
474 (defcustom outline-reindent-bodies
(if outline-use-hanging-indents
476 "*Non-nil enables auto-adjust of topic body hanging indent with depth shifts.
478 When active, topic body lines that are indented even with or beyond
479 their topic header are reindented to correspond with depth shifts of
482 A value of `t' enables reindent in non-programming-code buffers, ie
483 those that do not have the variable `comment-start' set. A value of
484 `force' enables reindent whether or not `comment-start' is set."
485 :type
'(choice (const nil
) (const t
) (const text
) (const force
))
488 (make-variable-buffer-local 'outline-reindent-bodies
)
490 ;;;_ = outline-inhibit-protection
491 (defcustom outline-inhibit-protection nil
492 "*Non-nil disables warnings and confirmation-checks for concealed-text edits.
494 Outline mode uses emacs change-triggered functions to detect unruly
495 changes to concealed regions. Set this var non-nil to disable the
496 protection, potentially increasing text-entry responsiveness a bit.
498 This var takes effect at outline-mode activation, so you may have to
499 deactivate and then reactivate the mode if you want to toggle the
504 ;;;_* CODE - no user customizations below.
506 ;;;_ #1 Internal Outline Formatting and Configuration
508 ;;;_ = outline-version
509 (defvar outline-version
510 (let ((rcs-rev "$Revision: 4.35 $"))
513 (string-match "Revision: \\([0-9]+\\.[0-9]+\\)" rcs-rev
)
514 (substring rcs-rev
(match-beginning 1) (match-end 1)))
516 "Revision number of currently loaded outline package. \(allout.el)")
517 ;;;_ > outline-version
518 (defun outline-version (&optional here
)
519 "Return string describing the loaded outline version."
521 (let ((msg (concat "Allout Outline Mode v " outline-version
)))
522 (if here
(insert-string msg
))
525 ;;;_ : Topic header format
526 ;;;_ = outline-regexp
527 (defvar outline-regexp
""
528 "*Regular expression to match the beginning of a heading line.
530 Any line whose beginning matches this regexp is considered a
531 heading. This var is set according to the user configuration vars
532 by set-outline-regexp.")
533 (make-variable-buffer-local 'outline-regexp
)
534 ;;;_ = outline-bullets-string
535 (defvar outline-bullets-string
""
536 "A string dictating the valid set of outline topic bullets.
538 This var should *not* be set by the user - it is set by `set-outline-regexp',
539 and is produced from the elements of `outline-plain-bullets-string'
540 and `outline-distinctive-bullets-string'.")
541 (make-variable-buffer-local 'outline-bullets-string
)
542 ;;;_ = outline-bullets-string-len
543 (defvar outline-bullets-string-len
0
544 "Length of current buffers' outline-plain-bullets-string.")
545 (make-variable-buffer-local 'outline-bullets-string-len
)
546 ;;;_ = outline-line-boundary-regexp
547 (defvar outline-line-boundary-regexp
()
548 "Outline-regexp with outline-style beginning-of-line anchor.
550 \(Ie, C-j, *or* C-m, for prefixes of hidden topics). This is properly
551 set when outline-regexp is produced by `set-outline-regexp', so
552 that (match-beginning 2) and (match-end 2) delimit the prefix.")
553 (make-variable-buffer-local 'outline-line-boundary-regexp
)
554 ;;;_ = outline-bob-regexp
555 (defvar outline-bob-regexp
()
556 "Like outline-line-boundary-regexp, for headers at beginning of buffer.
557 \(match-beginning 2) and \(match-end 2) delimit the prefix.")
558 (make-variable-buffer-local 'outline-bob-regexp
)
559 ;;;_ = outline-header-subtraction
560 (defvar outline-header-subtraction
(1- (length outline-header-prefix
))
561 "Outline-header prefix length to subtract when computing topic depth.")
562 (make-variable-buffer-local 'outline-header-subtraction
)
563 ;;;_ = outline-plain-bullets-string-len
564 (defvar outline-plain-bullets-string-len
(length outline-plain-bullets-string
)
565 "Length of outline-plain-bullets-string, updated by set-outline-regexp.")
566 (make-variable-buffer-local 'outline-plain-bullets-string-len
)
569 ;;;_ X outline-reset-header-lead (header-lead)
570 (defun outline-reset-header-lead (header-lead)
571 "*Reset the leading string used to identify topic headers."
572 (interactive "sNew lead string: ")
573 (setq outline-header-prefix header-lead
)
574 (setq outline-header-subtraction
(1- (length outline-header-prefix
)))
575 (set-outline-regexp))
576 ;;;_ X outline-lead-with-comment-string (header-lead)
577 (defun outline-lead-with-comment-string (&optional header-lead
)
578 "*Set the topic-header leading string to specified string.
580 Useful when for encapsulating outline structure in programming
581 language comments. Returns the leading string."
584 (if (not (stringp header-lead
))
585 (setq header-lead
(read-string
586 "String prefix for topic headers: ")))
587 (setq outline-reindent-bodies nil
)
588 (outline-reset-header-lead header-lead
)
590 ;;;_ > outline-infer-header-lead ()
591 (defun outline-infer-header-lead ()
592 "Determine appropriate `outline-header-prefix'.
594 Works according to settings of:
597 `outline-header-prefix' (default)
598 `outline-use-mode-specific-leader'
599 and `outline-mode-leaders'.
601 Apply this via \(re)activation of `outline-mode', rather than
602 invoking it directly."
603 (let* ((use-leader (and (boundp 'outline-use-mode-specific-leader
)
604 (if (or (stringp outline-use-mode-specific-leader
)
605 (memq outline-use-mode-specific-leader
606 '(outline-mode-leaders
609 outline-use-mode-specific-leader
610 ;; Oops - garbled value, equate with effect of 't:
614 ((not use-leader
) nil
)
615 ;; Use the explicitly designated leader:
616 ((stringp use-leader
) use-leader
)
617 (t (or (and (memq use-leader
'(t outline-mode-leaders
))
618 ;; Get it from outline mode leaders?
619 (cdr (assq major-mode outline-mode-leaders
)))
620 ;; ... didn't get from outline-mode-leaders...
621 (and (memq use-leader
'(t comment-start
))
623 ;; Use comment-start, maybe tripled, and with
627 (substring comment-start
628 (1- (length comment-start
))))
629 ;; Use comment-start, sans trailing space:
630 (substring comment-start
0 -
1)
631 (concat comment-start comment-start comment-start
))
632 ;; ... and append underscore, whichever:
636 (if (string= leader outline-header-prefix
)
637 nil
; no change, nothing to do.
638 (setq outline-header-prefix leader
)
639 outline-header-prefix
))))
640 ;;;_ > outline-infer-body-reindent ()
641 (defun outline-infer-body-reindent ()
642 "Determine proper setting for `outline-reindent-bodies'.
644 Depends on default setting of `outline-reindent-bodies' \(which see)
645 and presence of setting for `comment-start', to tell whether the
646 file is programming code."
647 (if (and outline-reindent-bodies
649 (not (eq 'force outline-reindent-bodies
)))
650 (setq outline-reindent-bodies nil
)))
651 ;;;_ > set-outline-regexp ()
652 (defun set-outline-regexp ()
653 "Generate proper topic-header regexp form for outline functions.
655 Works with respect to `outline-plain-bullets-string' and
656 `outline-distinctive-bullets-string'."
659 ;; Derive outline-bullets-string from user configured components:
660 (setq outline-bullets-string
"")
661 (let ((strings (list 'outline-plain-bullets-string
662 'outline-distinctive-bullets-string
663 'outline-primary-bullet
))
671 (setq new-string
"") (setq index
0)
672 (setq cur-len
(length (setq cur-string
(symbol-value (car strings
)))))
673 (while (< index cur-len
)
674 (setq cur-char
(aref cur-string index
))
675 (setq outline-bullets-string
676 (concat outline-bullets-string
678 ; Single dash would denote a
679 ; sequence, repeated denotes
681 ((eq cur-char ?-
) "--")
682 ; literal close-square-bracket
683 ; doesn't work right in the
685 ((eq cur-char ?\
]) "")
686 (t (regexp-quote (char-to-string cur-char
))))))
687 (setq index
(1+ index
)))
688 (setq strings
(cdr strings
)))
690 ;; Derive next for repeated use in outline-pending-bullet:
691 (setq outline-plain-bullets-string-len
(length outline-plain-bullets-string
))
692 (setq outline-header-subtraction
(1- (length outline-header-prefix
)))
693 ;; Produce the new outline-regexp:
694 (setq outline-regexp
(concat "\\(\\"
695 outline-header-prefix
697 outline-bullets-string
699 outline-primary-bullet
701 (setq outline-line-boundary-regexp
702 (concat "\\([\n\r]\\)\\(" outline-regexp
"\\)"))
703 (setq outline-bob-regexp
704 (concat "\\(\\`\\)\\(" outline-regexp
"\\)"))
707 ;;;_ = outline-mode-map
708 (defvar outline-mode-map nil
"Keybindings for (allout) outline minor mode.")
709 ;;;_ > produce-outline-mode-map (keymap-alist &optional base-map)
710 (defun produce-outline-mode-map (keymap-list &optional base-map
)
711 "Produce keymap for use as outline-mode-map, from keymap-list.
713 Built on top of optional BASE-MAP, or empty sparse map if none specified.
714 See doc string for outline-keybindings-list for format of binding list."
715 (let ((map (or base-map
(make-sparse-keymap)))
716 (pref (list outline-command-prefix
)))
719 (let ((add-pref (null (cdr (cdr cell
))))
720 (key-suff (list (car cell
))))
723 (apply 'concat
(if add-pref
724 (append pref key-suff
)
726 (car (cdr cell
)))))))
729 ;;;_ = outline-prior-bindings - being deprecated.
730 (defvar outline-prior-bindings nil
731 "Variable for use in V18, with outline-added-bindings, for
732 resurrecting, on mode deactivation, bindings that existed before
733 activation. Being deprecated.")
734 ;;;_ = outline-added-bindings - being deprecated
735 (defvar outline-added-bindings nil
736 "Variable for use in V18, with outline-prior-bindings, for
737 resurrecting, on mode deactivation, bindings that existed before
738 activation. Being deprecated.")
740 (defun produce-outline-mode-menubar-entries ()
742 (easy-menu-define outline-mode-exposure-menu
744 "Allout outline exposure menu."
746 ["Show Entry" outline-show-current-entry t
]
747 ["Show Children" outline-show-children t
]
748 ["Show Subtree" outline-show-current-subtree t
]
749 ["Hide Subtree" outline-hide-current-subtree t
]
750 ["Hide Leaves" outline-hide-current-leaves t
]
752 ["Show All" outline-show-all t
]))
753 (easy-menu-define outline-mode-editing-menu
755 "Allout outline editing menu."
757 ["Open Sibling" outline-open-sibtopic t
]
758 ["Open Subtopic" outline-open-subtopic t
]
759 ["Open Supertopic" outline-open-supertopic t
]
761 ["Shift Topic In" outline-shift-in t
]
762 ["Shift Topic Out" outline-shift-out t
]
763 ["Rebullet Topic" outline-rebullet-topic t
]
764 ["Rebullet Heading" outline-rebullet-current-heading t
]
765 ["Number Siblings" outline-number-siblings t
]))
766 (easy-menu-define outline-mode-navigation-menu
768 "Allout outline navigation menu."
770 ["Next Visible Heading" outline-next-visible-heading t
]
771 ["Previous Visible Heading"
772 outline-previous-visible-heading t
]
774 ["Up Level" outline-up-current-level t
]
775 ["Forward Current Level" outline-forward-current-level t
]
776 ["Backward Current Level"
777 outline-backward-current-level t
]
779 ["Beginning of Entry"
780 outline-beginning-of-current-entry t
]
781 ["End of Entry" outline-end-of-current-entry t
]
782 ["End of Subtree" outline-end-of-current-subtree t
]))
783 (easy-menu-define outline-mode-misc-menu
785 "Allout outlines miscellaneous bindings."
787 ["Version" outline-version t
]
789 ["Duplicate Exposed" outline-copy-exposed-to-buffer t
]
790 ["Duplicate Exposed, numbered"
791 outline-flatten-exposed-to-buffer t
]
792 ["Duplicate Exposed, indented"
793 outline-indented-exposed-to-buffer t
]
795 ["Set Header Lead" outline-reset-header-lead t
]
796 ["Set New Exposure" outline-expose-topic t
])))
797 ;;;_ : Mode-Specific Variable Maintenance Utilities
798 ;;;_ = outline-mode-prior-settings
799 (defvar outline-mode-prior-settings nil
800 "Internal outline mode use; settings to be resumed on mode deactivation.")
801 (make-variable-buffer-local 'outline-mode-prior-settings
)
802 ;;;_ > outline-resumptions (name &optional value)
803 (defun outline-resumptions (name &optional value
)
805 "Registers or resumes settings over outline-mode activation/deactivation.
807 First arg is NAME of variable affected. Optional second arg is list
808 containing outline-mode-specific VALUE to be imposed on named
809 variable, and to be registered. (It's a list so you can specify
810 registrations of null values.) If no value is specified, the
811 registered value is returned (encapsulated in the list, so the caller
812 can distinguish nil vs no value), and the registration is popped
815 (let ((on-list (assq name outline-mode-prior-settings
))
816 prior-capsule
; By `capsule' i mean a list
817 ; containing a value, so we can
818 ; distinguish nil from no value.
826 nil
; Already preserved prior value - don't mess with it.
827 ;; Register the old value, or nil if previously unbound:
828 (setq outline-mode-prior-settings
830 (if (boundp name
) (list (symbol-value name
))))
831 outline-mode-prior-settings
)))
832 ; And impose the new value, locally:
833 (progn (make-local-variable name
)
834 (set name
(car value
))))
839 ;; Oops, not registered - leave it be:
842 ;; Some registration:
844 (setq prior-capsule
(car (cdr on-list
)))
846 (set name
(car prior-capsule
)) ; Some prior value - reestablish it.
847 (makunbound name
)) ; Previously unbound - demolish var.
848 ; Remove registration:
850 (while outline-mode-prior-settings
851 (if (not (eq (car outline-mode-prior-settings
)
854 (cons (car outline-mode-prior-settings
)
856 (setq outline-mode-prior-settings
857 (cdr outline-mode-prior-settings
)))
858 (setq outline-mode-prior-settings rebuild
)))))
860 ;;;_ : Mode-specific incidentals
861 ;;;_ = outline-during-write-cue nil
862 (defvar outline-during-write-cue nil
863 "Used to inhibit outline change-protection during file write.
865 See also `outline-post-command-business', `outline-write-file-hook',
866 `outline-before-change-protect', and `outline-post-command-business'
868 ;;;_ = outline-pre-was-isearching nil
869 (defvar outline-pre-was-isearching nil
870 "Cue for isearch-dynamic-exposure mechanism, implemented in
871 outline-pre- and -post-command-hooks.")
872 (make-variable-buffer-local 'outline-pre-was-isearching
)
873 ;;;_ = outline-isearch-prior-pos nil
874 (defvar outline-isearch-prior-pos nil
875 "Cue for isearch-dynamic-exposure tracking, used by outline-isearch-expose.")
876 (make-variable-buffer-local 'outline-isearch-prior-pos
)
877 ;;;_ = outline-isearch-did-quit
878 (defvar outline-isearch-did-quit nil
879 "Distinguishes isearch conclusion and cancellation.
881 Maintained by outline-isearch-abort \(which is wrapped around the real
882 isearch-abort), and monitored by outline-isearch-expose for action.")
883 (make-variable-buffer-local 'outline-isearch-did-quit
)
884 ;;;_ = outline-override-protect nil
885 (defvar outline-override-protect nil
886 "Used in outline-mode for regulate of concealed-text protection mechanism.
888 Allout outline mode regulates alteration of concealed text to protect
889 against inadvertent, unnoticed changes. This is for use by specific,
890 native outline functions to temporarily override that protection.
891 It's automatically reset to nil after every buffer modification.")
892 (make-variable-buffer-local 'outline-override-protect
)
893 ;;;_ > outline-unprotected (expr)
894 (defmacro outline-unprotected
(expr)
895 "Evaluate EXPRESSION with `outline-override-protect' let-bound `t'."
896 `(let ((outline-override-protect t
))
898 ;;;_ = outline-undo-aggregation
899 (defvar outline-undo-aggregation
30
900 "Amount of successive self-insert actions to bunch together per undo.
902 This is purely a kludge variable, regulating the compensation for a bug in
903 the way that before-change-functions and undo interact.")
904 (make-variable-buffer-local 'outline-undo-aggregation
)
905 ;;;_ = file-var-bug hack
906 (defvar outline-v18
/19-file-var-hack nil
907 "Horrible hack used to prevent invalid multiple triggering of outline
908 mode from prop-line file-var activation. Used by outline-mode function
910 ;;;_ > outline-write-file-hook ()
911 (defun outline-write-file-hook ()
912 "In outline mode, run as a local-write-file-hooks activity.
914 Currently just sets `outline-during-write-cue', so outline-change-protection
915 knows to keep inactive during file write."
916 (setq outline-during-write-cue t
)
919 ;;;_ #2 Mode activation
921 (defvar outline-mode
() "Allout outline mode minor-mode flag.")
922 (make-variable-buffer-local 'outline-mode
)
923 ;;;_ > outline-mode-p ()
924 (defmacro outline-mode-p
()
925 "Return t if outline-mode is active in current buffer."
927 ;;;_ = outline-explicitly-deactivated
928 (defvar outline-explicitly-deactivated nil
929 "Outline-mode was last deliberately deactivated.
930 So outline-post-command-business should not reactivate it...")
931 (make-variable-buffer-local 'outline-explicitly-deactivated
)
932 ;;;_ > outline-init (&optional mode)
933 (defun outline-init (&optional mode
)
934 "Prime outline-mode to enable/disable auto-activation, wrt `outline-layout'.
936 MODE is one of the following symbols:
938 - nil \(or no argument) deactivate auto-activation/layout;
939 - `activate', enable auto-activation only;
940 - `ask', enable auto-activation, and enable auto-layout but with
941 confirmation for layout operation solicited from user each time;
942 - `report', just report and return the current auto-activation state;
943 - anything else \(eg, t) for auto-activation and auto-layout, without
944 any confirmation check.
946 Use this function to setup your emacs session for automatic activation
947 of allout outline mode, contingent to the buffer-specific setting of
948 the `outline-layout' variable. (See `outline-layout' and
949 `outline-expose-topic' docstrings for more details on auto layout).
951 `outline-init' works by setting up (or removing) the outline-mode
952 find-file-hook, and giving `outline-auto-activation' a suitable
955 To prime your emacs session for full auto-outline operation, include
956 the following two lines in your emacs init file:
966 (concat "Select outline auto setup mode "
967 "(empty for report, ? for options) ")
968 '(("nil")("full")("activate")("deactivate")
969 ("ask") ("report") (""))
972 (if (string= mode
"")
974 (setq mode
(intern-soft mode
)))))
976 ;; convenience aliases, for consistent ref to respective vars:
977 ((hook 'outline-find-file-hook
)
978 (curr-mode 'outline-auto-activation
))
981 (setq find-file-hooks
(delq hook find-file-hooks
))
983 (message "Allout outline mode auto-activation inhibited.")))
985 (if (not (memq hook find-file-hooks
))
987 ;; Just punt and use the reports from each of the modes:
988 (outline-init (symbol-value curr-mode
))))
989 (t (add-hook 'find-file-hooks hook
)
990 (set curr-mode
; `set', not `setq'!
991 (cond ((eq mode
'activate
)
993 "Outline mode auto-activation enabled.")
996 ;; Return the current mode setting:
1000 (concat "Outline mode auto-activation and "
1001 "-layout \(upon confirmation) enabled."))
1004 "Outline mode auto-activation and -layout enabled.")
1007 ;;;_ > outline-setup-menubar ()
1008 (defun outline-setup-menubar ()
1009 "Populate the current buffer's menubar with allout outline-mode stuff."
1010 (let ((menus (list outline-mode-exposure-menu
1011 outline-mode-editing-menu
1012 outline-mode-navigation-menu
1013 outline-mode-misc-menu
))
1016 (setq cur
(car menus
)
1018 (easy-menu-add cur
))))
1019 ;;;_ > outline-mode (&optional toggle)
1021 (defun outline-mode (&optional toggle
)
1023 "Toggle minor mode for controlling exposure and editing of text outlines.
1025 Optional arg forces mode to re-initialize iff arg is positive num or
1026 symbol. Allout outline mode always runs as a minor mode.
1028 Allout outline mode provides extensive outline-oriented formatting and
1029 manipulation. It enables structural editing of outlines, as well as
1030 navigation and exposure. It also is specifically aimed at
1031 accommodating syntax-sensitive text like programming languages. \(For
1032 an example, see the allout code itself, which is organized as an allout
1035 In addition to outline navigation and exposure, allout includes:
1037 - topic-oriented repositioning, cut, and paste
1038 - integral outline exposure-layout
1039 - incremental search with dynamic exposure and reconcealment of hidden text
1040 - automatic topic-number maintenance
1041 - \"Hot-spot\" operation, for single-keystroke maneuvering and
1042 exposure control. \(See the outline-mode docstring.)
1044 and many other features.
1046 Below is a description of the bindings, and then explanation of
1047 special outline-mode features and terminology. See also the outline
1048 menubar additions for quick reference to many of the features, and see
1049 the docstring of the variable `outline-init' for instructions on
1050 priming your emacs session for automatic activation of outline-mode.
1053 The bindings are dictated by the `outline-keybindings-list' and
1054 `outline-command-prefix' variables.
1056 Navigation: Exposure Control:
1057 ---------- ----------------
1058 C-c C-n outline-next-visible-heading | C-c C-h outline-hide-current-subtree
1059 C-c C-p outline-previous-visible-heading | C-c C-i outline-show-children
1060 C-c C-u outline-up-current-level | C-c C-s outline-show-current-subtree
1061 C-c C-f outline-forward-current-level | C-c C-o outline-show-current-entry
1062 C-c C-b outline-backward-current-level | ^U C-c C-s outline-show-all
1063 C-c C-e outline-end-of-current-entry | outline-hide-current-leaves
1064 C-c C-a outline-beginning-of-current-entry, alternately, goes to hot-spot
1066 Topic Header Production:
1067 -----------------------
1068 C-c<SP> outline-open-sibtopic Create a new sibling after current topic.
1069 C-c . outline-open-subtopic ... an offspring of current topic.
1070 C-c , outline-open-supertopic ... a sibling of the current topic's parent.
1072 Topic Level and Prefix Adjustment:
1073 ---------------------------------
1074 C-c > outline-shift-in Shift current topic and all offspring deeper.
1075 C-c < outline-shift-out ... less deep.
1076 C-c<CR> outline-rebullet-topic Reconcile bullets of topic and its offspring
1077 - distinctive bullets are not changed, others
1078 alternated according to nesting depth.
1079 C-c b outline-rebullet-current-heading Prompt for alternate bullet for
1081 C-c # outline-number-siblings Number bullets of topic and siblings - the
1082 offspring are not affected. With repeat
1083 count, revoke numbering.
1085 Topic-oriented Killing and Yanking:
1086 ----------------------------------
1087 C-c C-k outline-kill-topic Kill current topic, including offspring.
1088 C-k outline-kill-line Like kill-line, but reconciles numbering, etc.
1089 C-y outline-yank Yank, adjusting depth of yanked topic to
1090 depth of heading if yanking into bare topic
1091 heading (ie, prefix sans text).
1092 M-y outline-yank-pop Is to outline-yank as yank-pop is to yank
1096 M-x outlineify-sticky Activate outline mode for current buffer,
1097 and establish a default file-var setting
1098 for `outline-layout'.
1099 C-c C-SPC outline-mark-topic
1100 C-c = c outline-copy-exposed-to-buffer
1101 Duplicate outline, sans concealed text, to
1102 buffer with name derived from derived from
1103 that of current buffer - \"*XXX exposed*\".
1104 C-c = p outline-flatten-exposed-to-buffer
1105 Like above 'copy-exposed', but convert topic
1106 prefixes to section.subsection... numeric
1108 ESC ESC (outline-init t) Setup emacs session for outline mode
1113 Hot-spot operation provides a means for easy, single-keystroke outline
1114 navigation and exposure control.
1116 \\<outline-mode-map>
1117 When the text cursor is positioned directly on the bullet character of
1118 a topic, regular characters (a to z) invoke the commands of the
1119 corresponding outline-mode keymap control chars. For example, \"f\"
1120 would invoke the command typically bound to \"C-c C-f\"
1121 \(\\[outline-forward-current-level] `outline-forward-current-level').
1123 Thus, by positioning the cursor on a topic bullet, you can execute
1124 the outline navigation and manipulation commands with a single
1125 keystroke. Non-literal chars never get this special translation, so
1126 you can use them to get away from the hot-spot, and back to normal
1129 Note that the command `outline-beginning-of-current-entry' \(\\[outline-beginning-of-current-entry]\)
1130 will move to the hot-spot when the cursor is already located at the
1131 beginning of the current entry, so you can simply hit \\[outline-beginning-of-current-entry]
1132 twice in a row to get to the hot-spot.
1136 Topic hierarchy constituents - TOPICS and SUBTOPICS:
1138 TOPIC: A basic, coherent component of an emacs outline. It can
1139 contain other topics, and it can be subsumed by other topics,
1141 The visible topic most immediately containing the cursor.
1142 DEPTH: The degree of nesting of a topic; it increases with
1143 containment. Also called the:
1144 LEVEL: The same as DEPTH.
1147 The topics that contain a topic.
1148 PARENT: A topic's immediate ancestor. It has a depth one less than
1151 The topics contained by a topic;
1153 An immediate offspring of a topic;
1155 The immediate offspring of a topic.
1157 Topics having the same parent and depth.
1159 Topic text constituents:
1161 HEADER: The first line of a topic, include the topic PREFIX and header
1163 PREFIX: The leading text of a topic which which distinguishes it from
1164 normal text. It has a strict form, which consists of a
1165 prefix-lead string, padding, and a bullet. The bullet may be
1166 followed by a number, indicating the ordinal number of the
1167 topic among its siblings, a space, and then the header text.
1169 The relative length of the PREFIX determines the nesting depth
1172 The string at the beginning of a topic prefix, normally a `.'.
1173 It can be customized by changing the setting of
1174 `outline-header-prefix' and then reinitializing outline-mode.
1176 By setting the prefix-lead to the comment-string of a
1177 programming language, you can embed outline-structuring in
1178 program code without interfering with the language processing
1179 of that code. See `outline-use-mode-specific-leader'
1180 docstring for more detail.
1182 Spaces or asterisks which separate the prefix-lead and the
1183 bullet, according to the depth of the topic.
1184 BULLET: A character at the end of the topic prefix, it must be one of
1185 the characters listed on `outline-plain-bullets-string' or
1186 `outline-distinctive-bullets-string'. (See the documentation
1187 for these variables for more details.) The default choice of
1188 bullet when generating varies in a cycle with the depth of the
1190 ENTRY: The text contained in a topic before any offspring.
1191 BODY: Same as ENTRY.
1195 The state of a topic which determines the on-screen visibility
1196 of its offspring and contained text.
1198 Topics and entry text whose display is inhibited. Contiguous
1199 units of concealed text is represented by `...' ellipses.
1200 (Ref the `selective-display' var.)
1202 Concealed topics are effectively collapsed within an ancestor.
1203 CLOSED: A topic whose immediate offspring and body-text is concealed.
1204 OPEN: A topic that is not closed, though its offspring or body may be."
1208 (let* ((active (and (not (equal major-mode
'outline
))
1210 ; Massage universal-arg `toggle' val:
1212 (or (and (listp toggle
)(car toggle
))
1214 ; Activation specifically demanded?
1215 (explicit-activation (or
1218 (or (symbolp toggle
)
1219 (and (natnump toggle
)
1220 (not (zerop toggle
)))))))
1221 ;; outline-mode already called once during this complex command?
1222 (same-complex-command (eq outline-v18
/19-file-var-hack
1223 (car command-history
)))
1227 ; See comments below re v19.18,.19 bug.
1228 (setq outline-v18
/19-file-var-hack
(car command-history
))
1232 ;; Provision for v19.18, 19.19 bug -
1233 ;; Emacs v 19.18, 19.19 file-var code invokes prop-line-designated
1234 ;; modes twice when file is visited. We have to avoid toggling mode
1235 ;; off on second invocation, so we detect it as best we can, and
1237 ((and same-complex-command
; Still in same complex command
1238 ; as last time outline-mode invoked.
1239 active
; Already activated.
1240 (not explicit-activation
) ; Prop-line file-vars don't have args.
1241 (string-match "^19.1[89]" ; Bug only known to be in v19.18 and
1242 emacs-version
)); 19.19.
1246 ((and (not explicit-activation
)
1248 ; Activation not explicitly
1249 ; requested, and either in
1250 ; active state or *de*activation
1251 ; specifically requested:
1252 (setq outline-explicitly-deactivated t
)
1253 (if (string-match "^18\." emacs-version
)
1254 ; Revoke those keys that remain
1256 (let ((curr-loc (current-local-map)))
1259 (if (eq (lookup-key curr-loc
(car cell
))
1261 (define-key curr-loc
(car cell
)
1262 (assq (car cell
) outline-prior-bindings
)))))
1263 outline-added-bindings
)
1264 (outline-resumptions 'outline-added-bindings
)
1265 (outline-resumptions 'outline-prior-bindings
)))
1267 (if outline-old-style-prefixes
1269 (outline-resumptions 'outline-primary-bullet
)
1270 (outline-resumptions 'outline-old-style-prefixes
)))
1271 (outline-resumptions 'selective-display
)
1272 (if (and (boundp 'before-change-functions
) before-change-functions
)
1273 (outline-resumptions 'before-change-functions
))
1274 (setq local-write-file-hooks
1275 (delq 'outline-write-file-hook
1276 local-write-file-hooks
))
1277 (outline-resumptions 'paragraph-start
)
1278 (outline-resumptions 'paragraph-separate
)
1279 (outline-resumptions (if (string-match "^18" emacs-version
)
1281 'auto-fill-function
))
1282 (outline-resumptions 'outline-former-auto-filler
)
1283 (setq outline-mode nil
))
1287 (setq outline-explicitly-deactivated nil
)
1288 (if outline-old-style-prefixes
1289 (progn ; Inhibit all the fancy formatting:
1290 (outline-resumptions 'outline-primary-bullet
'("*"))
1291 (outline-resumptions 'outline-old-style-prefixes
'(()))))
1293 (outline-infer-header-lead)
1294 (outline-infer-body-reindent)
1296 (set-outline-regexp)
1298 ; Produce map from current version
1299 ; of outline-keybindings-list:
1300 (if (boundp 'minor-mode-map-alist
)
1302 (progn ; V19, and maybe lucid and
1303 ; epoch, minor-mode key bindings:
1304 (setq outline-mode-map
1305 (produce-outline-mode-map outline-keybindings-list
))
1306 (produce-outline-mode-menubar-entries)
1307 (fset 'outline-mode-map outline-mode-map
)
1308 ; Include on minor-mode-map-alist,
1309 ; if not already there:
1310 (if (not (member '(outline-mode . outline-mode-map
)
1311 minor-mode-map-alist
))
1312 (setq minor-mode-map-alist
1313 (cons '(outline-mode . outline-mode-map
)
1314 minor-mode-map-alist
))))
1316 ; V18 minor-mode key bindings:
1317 ; Stash record of added bindings
1318 ; for later revocation:
1319 (outline-resumptions 'outline-added-bindings
1320 (list outline-keybindings-list
))
1321 (outline-resumptions 'outline-prior-bindings
1322 (list (current-local-map)))
1324 (use-local-map (produce-outline-mode-map outline-keybindings-list
1325 (current-local-map)))
1328 ; selective-display is the
1329 ; emacs conditional exposure
1331 (outline-resumptions 'selective-display
'(t))
1332 (if outline-inhibit-protection
1334 (outline-resumptions 'before-change-functions
1335 '(outline-before-change-protect)))
1336 (add-hook 'pre-command-hook
'outline-pre-command-business
)
1337 (add-hook 'post-command-hook
'outline-post-command-business
)
1338 ; Temporarily set by any outline
1339 ; functions that can be trusted to
1340 ; deal properly with concealed text.
1341 (add-hook 'local-write-file-hooks
'outline-write-file-hook
)
1342 ; Custom auto-fill func, to support
1343 ; respect for topic headline,
1344 ; hanging-indents, etc:
1345 (let* ((fill-func-var (if (string-match "^18" emacs-version
)
1347 'auto-fill-function
))
1348 (fill-func (symbol-value fill-func-var
)))
1349 ;; Register prevailing fill func for use by outline-auto-fill:
1350 (outline-resumptions 'outline-former-auto-filler
(list fill-func
))
1351 ;; Register outline-auto-fill to be used if filling is active:
1352 (outline-resumptions fill-func-var
'(outline-auto-fill)))
1353 ;; Paragraphs are broken by topic headlines.
1354 (make-local-variable 'paragraph-start
)
1355 (outline-resumptions 'paragraph-start
1356 (list (concat paragraph-start
"\\|^\\("
1357 outline-regexp
"\\)")))
1358 (make-local-variable 'paragraph-separate
)
1359 (outline-resumptions 'paragraph-separate
1360 (list (concat paragraph-separate
"\\|^\\("
1361 outline-regexp
"\\)")))
1363 (or (assq 'outline-mode minor-mode-alist
)
1364 (setq minor-mode-alist
1365 (cons '(outline-mode " Outl") minor-mode-alist
)))
1367 (outline-setup-menubar)
1372 (if (and outline-isearch-dynamic-expose
1373 (not (fboundp 'outline-real-isearch-abort
)))
1374 (outline-enwrap-isearch))
1376 (run-hooks 'outline-mode-hook
)
1377 (setq outline-mode t
))
1381 (outline-infer-body-reindent))
1385 outline-auto-activation
1386 (listp outline-layout
)
1387 (and (not (eq outline-auto-activation
'activate
))
1388 (if (eq outline-auto-activation
'ask
)
1389 (if (y-or-n-p (format "Expose %s with layout '%s'? "
1393 (message "Skipped %s layout." (buffer-name))
1397 (message "Adjusting '%s' exposure..." (buffer-name))
1399 (outline-this-or-next-heading)
1402 (apply 'outline-expose-topic
(list outline-layout
))
1403 (message "Adjusting '%s' exposure... done." (buffer-name)))
1404 ;; Problem applying exposure - notify user, but don't
1405 ;; interrupt, eg, file visit:
1406 (error (message "%s" (car (cdr err
)))
1411 ;;;_ > outline-minor-mode
1412 ;;; XXX released verion doesn't do this?
1413 (defalias 'outline-minor-mode
'outline-mode
)
1415 ;;;_ #3 Internal Position State-Tracking - "outline-recent-*" funcs
1416 ;;; All the basic outline functions that directly do string matches to
1417 ;;; evaluate heading prefix location set the variables
1418 ;;; `outline-recent-prefix-beginning' and `outline-recent-prefix-end'
1419 ;;; when successful. Functions starting with `outline-recent-' all
1420 ;;; use this state, providing the means to avoid redundant searches
1421 ;;; for just-established data. This optimization can provide
1422 ;;; significant speed improvement, but it must be employed carefully.
1423 ;;;_ = outline-recent-prefix-beginning
1424 (defvar outline-recent-prefix-beginning
0
1425 "Buffer point of the start of the last topic prefix encountered.")
1426 (make-variable-buffer-local 'outline-recent-prefix-beginning
)
1427 ;;;_ = outline-recent-prefix-end
1428 (defvar outline-recent-prefix-end
0
1429 "Buffer point of the end of the last topic prefix encountered.")
1430 (make-variable-buffer-local 'outline-recent-prefix-end
)
1431 ;;;_ = outline-recent-end-of-subtree
1432 (defvar outline-recent-end-of-subtree
0
1433 "Buffer point last returned by outline-end-of-current-subtree.")
1434 (make-variable-buffer-local 'outline-recent-end-of-subtree
)
1435 ;;;_ > outline-prefix-data (beg end)
1436 (defmacro outline-prefix-data
(beg end
)
1437 "Register outline-prefix state data - BEGINNING and END of prefix.
1439 For reference by `outline-recent' funcs. Returns BEGINNING."
1440 `(setq outline-recent-prefix-end
,end
1441 outline-recent-prefix-beginning
,beg
))
1442 ;;;_ > outline-recent-depth ()
1443 (defmacro outline-recent-depth
()
1444 "Return depth of last heading encountered by an outline maneuvering function.
1446 All outline functions which directly do string matches to assess
1447 headings set the variables outline-recent-prefix-beginning and
1448 outline-recent-prefix-end if successful. This function uses those settings
1449 to return the current depth."
1451 '(max 1 (- outline-recent-prefix-end
1452 outline-recent-prefix-beginning
1453 outline-header-subtraction
)))
1454 ;;;_ > outline-recent-prefix ()
1455 (defmacro outline-recent-prefix
()
1456 "Like outline-recent-depth, but returns text of last encountered prefix.
1458 All outline functions which directly do string matches to assess
1459 headings set the variables outline-recent-prefix-beginning and
1460 outline-recent-prefix-end if successful. This function uses those settings
1461 to return the current depth."
1462 '(buffer-substring outline-recent-prefix-beginning
1463 outline-recent-prefix-end
))
1464 ;;;_ > outline-recent-bullet ()
1465 (defmacro outline-recent-bullet
()
1466 "Like outline-recent-prefix, but returns bullet of last encountered prefix.
1468 All outline functions which directly do string matches to assess
1469 headings set the variables outline-recent-prefix-beginning and
1470 outline-recent-prefix-end if successful. This function uses those settings
1471 to return the current depth of the most recently matched topic."
1472 '(buffer-substring (1- outline-recent-prefix-end
)
1473 outline-recent-prefix-end
))
1477 ;;;_ - Position Assessment
1478 ;;;_ : Location Predicates
1479 ;;;_ > outline-on-current-heading-p ()
1480 (defun outline-on-current-heading-p ()
1481 "Return non-nil if point is on current visible topics' header line.
1483 Actually, returns prefix beginning point."
1486 (and (looking-at outline-regexp
)
1487 (outline-prefix-data (match-beginning 0) (match-end 0)))))
1488 ;;;_ > outline-on-heading-p ()
1489 (defalias 'outline-on-heading-p
'outline-on-current-heading-p
)
1490 ;;;_ > outline-e-o-prefix-p ()
1491 (defun outline-e-o-prefix-p ()
1492 "True if point is located where current topic prefix ends, heading begins."
1493 (and (save-excursion (beginning-of-line)
1494 (looking-at outline-regexp
))
1495 (= (point)(save-excursion (outline-end-of-prefix)(point)))))
1496 ;;;_ > outline-hidden-p ()
1497 (defmacro outline-hidden-p
()
1498 "True if point is in hidden text."
1500 (and (re-search-backward "[\n\r]" () t
)
1501 (= ?
\r (following-char)))))
1502 ;;;_ > outline-visible-p ()
1503 (defmacro outline-visible-p
()
1504 "True if point is not in hidden text."
1506 '(not (outline-hidden-p)))
1507 ;;;_ : Location attributes
1508 ;;;_ > outline-depth ()
1509 (defsubst outline-depth
()
1510 "Like outline-current-depth, but respects hidden as well as visible topics."
1512 (if (outline-goto-prefix)
1513 (outline-recent-depth)
1515 ;; Oops, no prefix, zero prefix data:
1516 (outline-prefix-data (point)(point))
1517 ;; ... and return 0:
1519 ;;;_ > outline-current-depth ()
1520 (defmacro outline-current-depth
()
1521 "Return nesting depth of visible topic most immediately containing point."
1523 (if (outline-back-to-current-heading)
1525 (- outline-recent-prefix-end
1526 outline-recent-prefix-beginning
1527 outline-header-subtraction
))
1529 ;;;_ > outline-get-current-prefix ()
1530 (defun outline-get-current-prefix ()
1531 "Topic prefix of the current topic."
1533 (if (outline-goto-prefix)
1534 (outline-recent-prefix))))
1535 ;;;_ > outline-get-bullet ()
1536 (defun outline-get-bullet ()
1537 "Return bullet of containing topic (visible or not)."
1539 (and (outline-goto-prefix)
1540 (outline-recent-bullet))))
1541 ;;;_ > outline-current-bullet ()
1542 (defun outline-current-bullet ()
1543 "Return bullet of current (visible) topic heading, or none if none found."
1546 (outline-back-to-current-heading)
1547 (buffer-substring (- outline-recent-prefix-end
1)
1548 outline-recent-prefix-end
))
1549 ;; Quick and dirty provision, ostensibly for missing bullet:
1550 ('args-out-of-range nil
))
1552 ;;;_ > outline-get-prefix-bullet (prefix)
1553 (defun outline-get-prefix-bullet (prefix)
1554 "Return the bullet of the header prefix string PREFIX."
1555 ;; Doesn't make sense if we're old-style prefixes, but this just
1556 ;; oughtn't be called then, so forget about it...
1557 (if (string-match outline-regexp prefix
)
1558 (substring prefix
(1- (match-end 0)) (match-end 0))))
1559 ;;;_ > outline-sibling-index (&optional depth)
1560 (defun outline-sibling-index (&optional depth
)
1561 "Item number of this prospective topic among its siblings.
1563 If optional arg depth is greater than current depth, then we're
1564 opening a new level, and return 0.
1566 If less than this depth, ascend to that depth and count..."
1569 (cond ((and depth
(<= depth
0) 0))
1570 ((or (not depth
) (= depth
(outline-depth)))
1572 (while (outline-previous-sibling (outline-recent-depth) nil
)
1573 (setq index
(1+ index
)))
1575 ((< depth
(outline-recent-depth))
1576 (outline-ascend-to-depth depth
)
1577 (outline-sibling-index))
1579 ;;;_ > outline-topic-flat-index ()
1580 (defun outline-topic-flat-index ()
1581 "Return a list indicating point's numeric section.subsect.subsubsect...
1582 Outermost is first."
1583 (let* ((depth (outline-depth))
1584 (next-index (outline-sibling-index depth
))
1586 (while (> next-index
0)
1587 (setq rev-sibls
(cons next-index rev-sibls
))
1588 (setq depth
(1- depth
))
1589 (setq next-index
(outline-sibling-index depth
)))
1593 ;;;_ - Navigation macros
1594 ;;;_ > outline-next-heading ()
1595 (defsubst outline-next-heading
()
1596 "Move to the heading for the topic \(possibly invisible) before this one.
1598 Returns the location of the heading, or nil if none found."
1600 (if (and (bobp) (not (eobp)))
1603 (if (re-search-forward outline-line-boundary-regexp nil
0)
1604 (outline-prefix-data ; Got valid location state - set vars:
1605 (goto-char (or (match-beginning 2)
1606 outline-recent-prefix-beginning
))
1607 (or (match-end 2) outline-recent-prefix-end
))))
1608 ;;;_ : outline-this-or-next-heading
1609 (defun outline-this-or-next-heading ()
1610 "Position cursor on current or next heading."
1611 ;; A throwaway non-macro that is defined after outline-next-heading
1612 ;; and usable by outline-mode.
1613 (if (not (outline-goto-prefix)) (outline-next-heading)))
1614 ;;;_ > outline-previous-heading ()
1615 (defmacro outline-previous-heading
()
1616 "Move to the prior \(possibly invisible) heading line.
1618 Return the location of the beginning of the heading, or nil if not found."
1622 (outline-goto-prefix)
1624 ;; searches are unbounded and return nil if failed:
1625 (or (re-search-backward outline-line-boundary-regexp nil
0)
1626 (looking-at outline-bob-regexp
))
1627 (progn ; Got valid location state - set vars:
1628 (outline-prefix-data
1629 (goto-char (or (match-beginning 2)
1630 outline-recent-prefix-beginning
))
1631 (or (match-end 2) outline-recent-prefix-end
))))))
1633 ;;;_ - Subtree Charting
1634 ;;;_ " These routines either produce or assess charts, which are
1635 ;;; nested lists of the locations of topics within a subtree.
1637 ;;; Use of charts enables efficient navigation of subtrees, by
1638 ;;; requiring only a single regexp-search based traversal, to scope
1639 ;;; out the subtopic locations. The chart then serves as the basis
1640 ;;; for assessment or adjustment of the subtree, without redundant
1641 ;;; traversal of the structure.
1643 ;;;_ > outline-chart-subtree (&optional levels orig-depth prev-depth)
1644 (defun outline-chart-subtree (&optional levels orig-depth prev-depth
)
1645 "Produce a location \"chart\" of subtopics of the containing topic.
1647 Optional argument LEVELS specifies the depth \(relative to start
1648 depth) for the chart. Subsequent optional args are not for public
1651 Charts are used to capture outline structure, so that outline-altering
1652 routines need assess the structure only once, and then use the chart
1653 for their elaborate manipulations.
1655 Topics are entered in the chart so the last one is at the car.
1656 The entry for each topic consists of an integer indicating the point
1657 at the beginning of the topic. Charts for offspring consists of a
1658 list containing, recursively, the charts for the respective subtopics.
1659 The chart for a topics' offspring precedes the entry for the topic
1662 The other function parameters are for internal recursion, and should
1663 not be specified by external callers. ORIG-DEPTH is depth of topic at
1664 starting point, and PREV-DEPTH is depth of prior topic."
1666 (let ((original (not orig-depth
)) ; `orig-depth' set only in recursion.
1669 (if original
; Just starting?
1670 ; Register initial settings and
1671 ; position to first offspring:
1672 (progn (setq orig-depth
(outline-depth))
1673 (or prev-depth
(setq prev-depth
(1+ orig-depth
)))
1674 (outline-next-heading)))
1676 ;; Loop over the current levels' siblings. Besides being more
1677 ;; efficient than tail-recursing over a level, it avoids exceeding
1678 ;; the typically quite constrained emacs max-lisp-eval-depth.
1680 ;; Probably would speed things up to implement loop-based stack
1681 ;; operation rather than recursing for lower levels. Bah.
1683 (while (and (not (eobp))
1684 ; Still within original topic?
1685 (< orig-depth
(setq curr-depth
(outline-recent-depth)))
1686 (cond ((= prev-depth curr-depth
)
1687 ;; Register this one and move on:
1688 (setq chart
(cons (point) chart
))
1689 (if (and levels
(<= levels
1))
1690 ;; At depth limit - skip sublevels:
1691 (or (outline-next-sibling curr-depth
)
1692 ;; or no more siblings - proceed to
1693 ;; next heading at lesser depth:
1694 (while (and (<= curr-depth
1695 (outline-recent-depth))
1696 (outline-next-heading))))
1697 (outline-next-heading)))
1699 ((and (< prev-depth curr-depth
)
1702 ;; Recurse on deeper level of curr topic:
1704 (cons (outline-chart-subtree (and levels
1709 ;; ... then continue with this one.
1712 ;; ... else nil if we've ascended back to prev-depth.
1716 (if original
; We're at the last sibling on
1717 ; the original level. Position
1719 (progn (and (not (eobp)) (forward-char -
1))
1720 (and (memq (preceding-char) '(?
\n ?
\r))
1721 (memq (aref (buffer-substring (max 1 (- (point) 3))
1726 (setq outline-recent-end-of-subtree
(point))))
1728 chart
; (nreverse chart) not necessary,
1729 ; and maybe not preferable.
1731 ;;;_ > outline-chart-siblings (&optional start end)
1732 (defun outline-chart-siblings (&optional start end
)
1733 "Produce a list of locations of this and succeeding sibling topics.
1734 Effectively a top-level chart of siblings. See `outline-chart-subtree'
1735 for an explanation of charts."
1737 (if (outline-goto-prefix)
1738 (let ((chart (list (point))))
1739 (while (outline-next-sibling)
1740 (setq chart
(cons (point) chart
)))
1741 (if chart
(setq chart
(nreverse chart
)))))))
1742 ;;;_ > outline-chart-to-reveal (chart depth)
1743 (defun outline-chart-to-reveal (chart depth
)
1745 "Return a flat list of hidden points in subtree CHART, up to DEPTH.
1747 Note that point can be left at any of the points on chart, or at the
1751 (while (and (or (eq depth t
) (> depth
0))
1753 (setq here
(car chart
))
1755 (let ((further (outline-chart-to-reveal here
(or (eq depth t
)
1757 ;; We're on the start of a subtree - recurse with it, if there's
1758 ;; more depth to go:
1759 (if further
(setq result
(append further result
)))
1760 (setq chart
(cdr chart
)))
1762 (if (= (preceding-char) ?
\r)
1763 (setq result
(cons here result
)))
1764 (setq chart
(cdr chart
))))
1766 ;;;_ X outline-chart-spec (chart spec &optional exposing)
1767 (defun outline-chart-spec (chart spec
&optional exposing
)
1768 "Not yet \(if ever) implemented.
1770 Produce exposure directives given topic/subtree CHART and an exposure SPEC.
1772 Exposure spec indicates the locations to be exposed and the prescribed
1773 exposure status. Optional arg EXPOSING is an integer, with 0
1774 indicating pending concealment, anything higher indicating depth to
1775 which subtopic headers should be exposed, and negative numbers
1776 indicating (negative of) the depth to which subtopic headers and
1777 bodies should be exposed.
1779 The produced list can have two types of entries. Bare numbers
1780 indicate points in the buffer where topic headers that should be
1783 - bare negative numbers indicates that the topic starting at the
1784 point which is the negative of the number should be opened,
1785 including their entries.
1786 - bare positive values indicate that this topic header should be
1788 - Lists signify the beginning and end points of regions that should
1789 be flagged, and the flag to employ. (For concealment: `\(\?r\)', and
1795 (setq spec
(cdr spec
)))
1799 ;;;_ > outline-goto-prefix ()
1800 (defun outline-goto-prefix ()
1801 "Put point at beginning of immediately containing outline topic.
1803 Goes to most immediate subsequent topic if none immediately containing.
1805 Not sensitive to topic visibility.
1807 Returns a the point at the beginning of the prefix, or nil if none."
1810 (while (and (not done
)
1811 (re-search-backward "[\n\r]" nil
1))
1813 (if (looking-at outline-regexp
)
1814 (setq done
(outline-prefix-data (match-beginning 0)
1818 (cond ((looking-at outline-regexp
)
1819 (outline-prefix-data (match-beginning 0)(match-end 0)))
1820 ((outline-next-heading))
1823 ;;;_ > outline-end-of-prefix ()
1824 (defun outline-end-of-prefix (&optional ignore-decorations
)
1825 "Position cursor at beginning of header text.
1827 If optional IGNORE-DECORATIONS is non-nil, put just after bullet,
1828 otherwise skip white space between bullet and ensuing text."
1830 (if (not (outline-goto-prefix))
1832 (let ((match-data (match-data)))
1833 (goto-char (match-end 0))
1834 (if ignore-decorations
1836 (while (looking-at "[0-9]") (forward-char 1))
1837 (if (and (not (eolp)) (looking-at "\\s-")) (forward-char 1)))
1838 (store-match-data match-data
))
1839 ;; Reestablish where we are:
1840 (outline-current-depth)))
1841 ;;;_ > outline-current-bullet-pos ()
1842 (defun outline-current-bullet-pos ()
1843 "Return position of current \(visible) topic's bullet."
1845 (if (not (outline-current-depth))
1847 (1- (match-end 0))))
1848 ;;;_ > outline-back-to-current-heading ()
1849 (defun outline-back-to-current-heading ()
1850 "Move to heading line of current topic, or beginning if already on the line."
1853 (prog1 (or (outline-on-current-heading-p)
1854 (and (re-search-backward (concat "^\\(" outline-regexp
"\\)")
1857 (outline-prefix-data (match-beginning 1)(match-end 1))))
1858 (if (interactive-p) (outline-end-of-prefix))))
1859 ;;;_ > outline-back-to-heading ()
1860 (defalias 'outline-back-to-heading
'outline-back-to-current-heading
)
1861 ;;;_ > outline-pre-next-preface ()
1862 (defun outline-pre-next-preface ()
1863 "Skip forward to just before the next heading line.
1865 Returns that character position."
1867 (if (re-search-forward outline-line-boundary-regexp nil
'move
)
1868 (prog1 (goto-char (match-beginning 0))
1869 (outline-prefix-data (match-beginning 2)(match-end 2)))))
1870 ;;;_ > outline-end-of-current-subtree ()
1871 (defun outline-end-of-current-subtree ()
1872 "Put point at the end of the last leaf in the currently visible topic."
1874 (outline-back-to-current-heading)
1875 (let ((level (outline-recent-depth)))
1876 (outline-next-heading)
1877 (while (and (not (eobp))
1878 (> (outline-recent-depth) level
))
1879 (outline-next-heading))
1880 (and (not (eobp)) (forward-char -
1))
1881 (and (memq (preceding-char) '(?
\n ?
\r))
1882 (memq (aref (buffer-substring (max 1 (- (point) 3)) (point)) 1)
1885 (setq outline-recent-end-of-subtree
(point))))
1886 ;;;_ > outline-beginning-of-current-entry ()
1887 (defun outline-beginning-of-current-entry ()
1888 "When not already there, position point at beginning of current topic's body.
1890 If already there, move cursor to bullet for hot-spot operation.
1891 \(See outline-mode doc string for details on hot-spot operation.)"
1893 (let ((start-point (point)))
1894 (outline-end-of-prefix)
1895 (if (and (interactive-p)
1896 (= (point) start-point
))
1897 (goto-char (outline-current-bullet-pos)))))
1898 ;;;_ > outline-end-of-current-entry ()
1899 (defun outline-end-of-current-entry ()
1900 "Position the point at the end of the current topics' entry."
1902 (outline-show-entry)
1903 (prog1 (outline-pre-next-preface)
1904 (if (and (not (bobp))(looking-at "^$"))
1905 (forward-char -
1))))
1906 ;;;_ > outline-end-of-current-heading ()
1907 (defun outline-end-of-current-heading ()
1909 (outline-beginning-of-current-entry)
1912 (defalias 'outline-end-of-heading
'outline-end-of-current-heading
)
1915 ;;;_ > outline-ascend-to-depth (depth)
1916 (defun outline-ascend-to-depth (depth)
1917 "Ascend to depth DEPTH, returning depth if successful, nil if not."
1918 (if (and (> depth
0)(<= depth
(outline-depth)))
1919 (let ((last-good (point)))
1920 (while (and (< depth
(outline-depth))
1921 (setq last-good
(point))
1922 (outline-beginning-of-level)
1923 (outline-previous-heading)))
1924 (if (= (outline-recent-depth) depth
)
1925 (progn (goto-char outline-recent-prefix-beginning
)
1927 (goto-char last-good
)
1929 (if (interactive-p) (outline-end-of-prefix))))
1930 ;;;_ > outline-ascend ()
1931 (defun outline-ascend ()
1932 "Ascend one level, returning t if successful, nil if not."
1934 (if (outline-beginning-of-level)
1935 (outline-previous-heading))
1936 (if (interactive-p) (outline-end-of-prefix))))
1937 ;;;_ > outline-descend-to-depth (depth)
1938 (defun outline-descend-to-depth (depth)
1939 "Descend to depth DEPTH within current topic.
1941 Returning depth if successful, nil if not."
1942 (let ((start-point (point))
1943 (start-depth (outline-depth)))
1945 (and (> (outline-depth) 0)
1946 (not (= depth
(outline-recent-depth))) ; ... not there yet
1947 (outline-next-heading) ; ... go further
1948 (< start-depth
(outline-recent-depth)))) ; ... still in topic
1949 (if (and (> (outline-depth) 0)
1950 (= (outline-recent-depth) depth
))
1952 (goto-char start-point
)
1955 ;;;_ > outline-up-current-level (arg &optional dont-complain)
1956 (defun outline-up-current-level (arg &optional dont-complain
)
1957 "Move out ARG levels from current visible topic.
1959 Positions on heading line of containing topic. Error if unable to
1960 ascend that far, or nil if unable to ascend but optional arg
1961 DONT-COMPLAIN is non-nil."
1963 (outline-back-to-current-heading)
1964 (let ((present-level (outline-recent-depth))
1968 ;; Loop for iterating arg:
1969 (while (and (> (outline-recent-depth) 1)
1973 (setq last-good
(point))
1974 ;; Loop for going back over current or greater depth:
1975 (while (and (not (< (outline-recent-depth) present-level
))
1976 (or (outline-previous-visible-heading 1)
1977 (not (setq failed present-level
)))))
1978 (setq present-level
(outline-current-depth))
1979 (setq arg
(- arg
1)))
1982 (progn (goto-char last-good
)
1983 (if (interactive-p) (outline-end-of-prefix))
1984 (if (not dont-complain
)
1985 (error "Can't ascend past outermost level.")
1986 (if (interactive-p) (outline-end-of-prefix))
1988 (if (interactive-p) (outline-end-of-prefix))
1989 outline-recent-prefix-beginning
)))
1992 ;;;_ > outline-next-sibling (&optional depth backward)
1993 (defun outline-next-sibling (&optional depth backward
)
1994 "Like outline-forward-current-level, but respects invisible topics.
1996 Traverse at optional DEPTH, or current depth if none specified.
1998 Go backward if optional arg BACKWARD is non-nil.
2000 Return depth if successful, nil otherwise."
2002 (if (and backward
(bobp))
2004 (let ((start-depth (or depth
(outline-depth)))
2005 (start-point (point))
2007 (while (and (not (if backward
(bobp) (eobp)))
2008 (if backward
(outline-previous-heading)
2009 (outline-next-heading))
2010 (> (setq last-depth
(outline-recent-depth)) start-depth
)))
2011 (if (and (not (eobp))
2012 (and (> (or last-depth
(outline-depth)) 0)
2013 (= (outline-recent-depth) start-depth
)))
2014 outline-recent-prefix-beginning
2015 (goto-char start-point
)
2016 (if depth
(outline-depth) start-depth
)
2018 ;;;_ > outline-previous-sibling (&optional depth backward)
2019 (defun outline-previous-sibling (&optional depth backward
)
2020 "Like outline-forward-current-level,but backwards & respect invisible topics.
2022 Optional DEPTH specifies depth to traverse, default current depth.
2024 Optional BACKWARD reverses direction.
2026 Return depth if successful, nil otherwise."
2027 (outline-next-sibling depth
(not backward
))
2029 ;;;_ > outline-snug-back ()
2030 (defun outline-snug-back ()
2031 "Position cursor at end of previous topic
2033 Presumes point is at the start of a topic prefix."
2034 (if (or (bobp) (eobp))
2037 (if (or (bobp) (not (memq (preceding-char) '(?
\n ?
\r))))
2040 (if (or (bobp) (not (memq (preceding-char) '(?
\n ?
\r))))
2043 ;;;_ > outline-beginning-of-level ()
2044 (defun outline-beginning-of-level ()
2045 "Go back to the first sibling at this level, visible or not."
2046 (outline-end-of-level 'backward
))
2047 ;;;_ > outline-end-of-level (&optional backward)
2048 (defun outline-end-of-level (&optional backward
)
2049 "Go to the last sibling at this level, visible or not."
2051 (let ((depth (outline-depth)))
2052 (while (outline-previous-sibling depth nil
))
2053 (prog1 (outline-recent-depth)
2054 (if (interactive-p) (outline-end-of-prefix)))))
2055 ;;;_ > outline-next-visible-heading (arg)
2056 (defun outline-next-visible-heading (arg)
2057 "Move to the next ARG'th visible heading line, backward if arg is negative.
2059 Move as far as possible in indicated direction \(beginning or end of
2060 buffer) if headings are exhausted."
2063 (let* ((backward (if (< arg
0) (setq arg
(* -
1 arg
))))
2064 (step (if backward -
1 1))
2065 (start-point (point))
2068 (while (> arg
0) ; limit condition
2069 (while (and (not (if backward
(bobp)(eobp))) ; boundary condition
2070 ;; Move, skipping over all those concealed lines:
2071 (< -
1 (forward-line step
))
2072 (not (setq got
(looking-at outline-regexp
)))))
2073 ;; Register this got, it may be the last:
2074 (if got
(setq prev got
))
2075 (setq arg
(1- arg
)))
2076 (cond (got ; Last move was to a prefix:
2077 (outline-prefix-data (match-beginning 0) (match-end 0))
2078 (outline-end-of-prefix))
2079 (prev ; Last move wasn't, but prev was:
2080 (outline-prefix-data (match-beginning 0) (match-end 0)))
2081 ((not backward
) (end-of-line) nil
))))
2082 ;;;_ > outline-previous-visible-heading (arg)
2083 (defun outline-previous-visible-heading (arg)
2084 "Move to the previous heading line.
2086 With argument, repeats or can move forward if negative.
2087 A heading line is one that starts with a `*' (or that outline-regexp
2090 (outline-next-visible-heading (- arg
)))
2091 ;;;_ > outline-forward-current-level (arg)
2092 (defun outline-forward-current-level (arg)
2093 "Position point at the next heading of the same level.
2095 Takes optional repeat-count, goes backward if count is negative.
2097 Returns resulting position, else nil if none found."
2099 (let ((start-depth (outline-current-depth))
2100 (start-point (point))
2102 (backward (> 0 arg
))
2106 (if (= 0 start-depth
)
2107 (error "No siblings, not in a topic..."))
2108 (if backward
(setq arg
(* -
1 arg
)))
2109 (while (not (or (zerop arg
)
2111 (while (and (not (if backward
(bobp) (eobp)))
2112 (if backward
(outline-previous-visible-heading 1)
2113 (outline-next-visible-heading 1))
2114 (> (setq last-depth
(outline-recent-depth)) start-depth
)))
2115 (if (and last-depth
(= last-depth start-depth
)
2116 (not (if backward
(bobp) (eobp))))
2117 (setq last-good
(point)
2119 (setq at-boundary t
)))
2120 (if (and (not (eobp))
2122 (and (> (or last-depth
(outline-depth)) 0)
2123 (= (outline-recent-depth) start-depth
)))
2124 outline-recent-prefix-beginning
2125 (goto-char last-good
)
2126 (if (not (interactive-p))
2128 (outline-end-of-prefix)
2129 (error "Hit %s level %d topic, traversed %d of %d requested."
2130 (if backward
"first" "last")
2131 (outline-recent-depth)
2132 (- (abs start-arg
) arg
)
2133 (abs start-arg
))))))
2134 ;;;_ > outline-backward-current-level (arg)
2135 (defun outline-backward-current-level (arg)
2136 "Inverse of `outline-forward-current-level'."
2139 (let ((current-prefix-arg (* -
1 arg
)))
2140 (call-interactively 'outline-forward-current-level
))
2141 (outline-forward-current-level (* -
1 arg
))))
2146 ;;;_ > outline-before-change-protect (beg end)
2147 (defun outline-before-change-protect (beg end
)
2148 "Outline before-change hook, regulates changes to concealed text.
2150 Reveal concealed text that would be changed by current command, and
2151 offer user choice to commit or forego the change. Unchanged text is
2152 reconcealed. User has option to have changed text reconcealed.
2154 Undo commands are specially treated - the user is not prompted for
2155 choice, the undoes are always committed (based on presumption that the
2156 things being undone were already subject to this regulation routine),
2157 and undoes always leave the changed stuff exposed.
2159 Changes to concealed regions are ignored while file is being written.
2160 \(This is for the sake of functions that do change the file during
2161 writes, like crypt and zip modes.)
2163 Locally bound in outline buffers to `before-change-functions', which
2164 in emacs 19 is run before any change to the buffer.
2166 Any functions which set [`this-command' to `undo', or which set]
2167 `outline-override-protect' non-nil (as does, eg, outline-flag-chars)
2168 are exempt from this restriction."
2169 (if (and (outline-mode-p)
2170 ; outline-override-protect
2171 ; set by functions that know what
2172 ; they're doing, eg outline internals:
2173 (not outline-override-protect
)
2174 (not outline-during-write-cue
)
2175 (save-match-data ; Preserve operation position state.
2176 ; Both beginning and end chars must
2178 (save-excursion (if (memq this-command
'(newline open-line
))
2179 ;; Compensate for stupid emacs {new,
2180 ;; open-}line display optimization:
2184 (or (outline-hidden-p)
2185 (and (not (= beg end
))
2187 (outline-hidden-p))))))
2189 (if (equal this-command
'undo
)
2190 ;; Allow undo without inhibition.
2191 ;; - Undoing new and open-line hits stupid emacs redisplay
2192 ;; optimization (em 19 cmds.c, ~ line 200).
2193 ;; - Presumably, undoing what was properly protected when
2195 ;; - Undo may be users' only recourse in protection faults.
2196 ;; So, expose what getting changed:
2197 (progn (message "Undo! - exposing concealed target...")
2198 (if (outline-hidden-p)
2199 (outline-show-children))
2202 (rehide-completely (save-excursion (outline-goto-prefix)
2203 (outline-hidden-p)))
2207 (if (condition-case err
2208 ;; Condition case to catch keyboard quits during reads.
2210 ; Give them a peek where
2212 (if (eolp) (setq rehide-place
2213 (outline-goto-prefix)))
2214 (outline-show-entry))
2215 ; Present the message, but...
2216 ; leave the cursor at the location
2217 ; until they respond:
2218 ; Then interpret the response:
2221 (message (concat "Change inside concealed"
2223 "(n or 'y'/'r'eclose)"))
2224 (setq response
(read-char))
2226 (cond ((memq response
'(?r ?R
))
2227 (setq response
'reclose
))
2228 ((memq response
'(?y ?Y ?
))
2230 ((memq response
'(?n ?N
127))
2235 "`r' means `yes, then reclose'")
2237 (t (message "Please answer y, n, or r")
2243 (if (eq response
'reclose
)
2245 (if rehide-place
(goto-char rehide-place
))
2246 (if rehide-completely
2247 (outline-hide-current-entry-completely)
2248 (outline-hide-current-entry)))
2249 (if (outline-ascend-to-depth (1- (outline-recent-depth)))
2250 (outline-show-children)
2251 (outline-show-to-offshoot)))
2253 (if rehide-completely
2255 (if rehide-place
(goto-char rehide-place
))
2256 (outline-hide-current-entry-completely))
2257 (outline-hide-current-entry))
2259 "Change within concealed region prevented.")))))))
2262 ;;;_ = outline-post-goto-bullet
2263 (defvar outline-post-goto-bullet nil
2264 "Outline internal var, for `outline-pre-command-business' hot-spot operation.
2266 When set, tells post-processing to reposition on topic bullet, and
2267 then unset it. Set by outline-pre-command-business when implementing
2268 hot-spot operation, where literal characters typed over a topic bullet
2269 are mapped to the command of the corresponding control-key on the
2271 (make-variable-buffer-local 'outline-post-goto-bullet
)
2272 ;;;_ > outline-post-command-business ()
2273 (defun outline-post-command-business ()
2274 "Outline post-command-hook function.
2276 - Null outline-override-protect, so it's not left open.
2278 - Implement (and clear) outline-post-goto-bullet, for hot-spot
2281 - Massages buffer-undo-list so successive, standard character self-inserts are
2282 aggregated. This kludge compensates for lack of undo bunching when
2283 before-change-functions is used."
2285 ; Apply any external change func:
2286 (if (not (outline-mode-p)) ; In outline-mode.
2288 (setq outline-override-protect nil
)
2289 (if outline-isearch-dynamic-expose
2290 (outline-isearch-rectification))
2291 (if outline-during-write-cue
2292 ;; Was used by outline-before-change-protect, done with it now:
2293 (setq outline-during-write-cue nil
))
2294 ;; Undo bunching business:
2295 (if (and (listp buffer-undo-list
) ; Undo history being kept.
2296 (equal this-command
'self-insert-command
)
2297 (equal last-command
'self-insert-command
))
2298 (let* ((prev-stuff (cdr buffer-undo-list
))
2299 (before-prev-stuff (cdr (cdr prev-stuff
)))
2300 cur-cell cur-from cur-to
2301 prev-cell prev-from prev-to
)
2302 (if (and before-prev-stuff
; Goes back far enough to bother,
2303 (not (car prev-stuff
)) ; and break before current,
2304 (not (car before-prev-stuff
)) ; !and break before prev!
2305 (setq prev-cell
(car (cdr prev-stuff
))) ; contents now,
2306 (setq cur-cell
(car buffer-undo-list
)) ; contents prev.
2308 ;; cur contents denote a single char insertion:
2309 (numberp (setq cur-from
(car cur-cell
)))
2310 (numberp (setq cur-to
(cdr cur-cell
)))
2311 (= 1 (- cur-to cur-from
))
2313 ;; prev contents denote fewer than aggregate-limit
2315 (numberp (setq prev-from
(car prev-cell
)))
2316 (numberp (setq prev-to
(cdr prev-cell
)))
2318 (> outline-undo-aggregation
(- prev-to prev-from
)))
2319 (setq buffer-undo-list
2320 (cons (cons prev-from cur-to
)
2321 (cdr (cdr (cdr buffer-undo-list
))))))))
2322 ;; Implement -post-goto-bullet, if set: (must be after undo business)
2323 (if (and outline-post-goto-bullet
2324 (outline-current-bullet-pos))
2325 (progn (goto-char (outline-current-bullet-pos))
2326 (setq outline-post-goto-bullet nil
)))
2328 ;;;_ > outline-pre-command-business ()
2329 (defun outline-pre-command-business ()
2330 "Outline pre-command-hook function for outline buffers.
2331 Implements special behavior when cursor is on bullet char.
2333 Self-insert characters are reinterpreted control-character references
2334 into the outline-mode-map. The outline-mode post-command hook will
2335 position a cursor that has moved as a result of such reinterpretation,
2336 on the destination topic's bullet, when the cursor wound up in the
2338 The upshot is that you can get easy, single (ie, unmodified) key
2339 outline maneuvering operations by positioning the cursor on the bullet
2340 char. You stay in this mode until you use some regular
2341 cursor-positioning command to relocate the cursor off of a bullet
2344 (if (not (outline-mode-p))
2345 ;; Shouldn't be invoked if not in allout outline-mode, but just in case:
2347 ;; Register isearch status:
2348 (if (and (boundp 'isearch-mode
) isearch-mode
)
2349 (setq outline-pre-was-isearching t
)
2350 (setq outline-pre-was-isearching nil
))
2351 ;; Hot-spot navigation provisions:
2352 (if (and (eq this-command
'self-insert-command
)
2353 (eq (point)(outline-current-bullet-pos)))
2354 (let* ((this-key-num (cond
2355 ((numberp last-command-char
)
2357 ;; XXX Only xemacs has characterp.
2358 ((and (fboundp 'characterp
)
2359 (characterp last-command-char
))
2360 (char-to-int last-command-char
))
2363 (if (zerop this-key-num
)
2365 ; Map upper-register literals
2366 ; to lower register:
2367 (if (<= 96 this-key-num
)
2368 (setq this-key-num
(- this-key-num
32)))
2369 ; Check if we have a literal:
2370 (if (and (<= 64 this-key-num
)
2371 (>= 96 this-key-num
))
2372 (setq mapped-binding
2373 (lookup-key 'outline-mode-map
2374 (concat outline-command-prefix
2375 (char-to-string (- this-key-num
2378 (setq outline-post-goto-bullet t
2379 this-command mapped-binding
)))))))
2380 ;;;_ > outline-find-file-hook ()
2381 (defun outline-find-file-hook ()
2382 "Activate outline-mode when `outline-auto-activation' & `outline-layout' are non-nil.
2384 See `outline-init' for setup instructions."
2385 (if (and outline-auto-activation
2386 (not (outline-mode-p))
2389 ;;;_ > outline-isearch-rectification
2390 (defun outline-isearch-rectification ()
2391 "Rectify outline exposure before, during, or after isearch.
2393 Called as part of outline-post-command-business."
2395 (let ((isearching (and (boundp 'isearch-mode
) isearch-mode
)))
2396 (cond ((and isearching
(not outline-pre-was-isearching
))
2397 (outline-isearch-expose 'start
))
2398 ((and isearching outline-pre-was-isearching
)
2399 (outline-isearch-expose 'continue
))
2400 ((and (not isearching
) outline-pre-was-isearching
)
2401 (outline-isearch-expose 'final
))
2402 ;; Not and wasn't isearching:
2403 (t (setq outline-isearch-prior-pos nil
)
2404 (setq outline-isearch-did-quit nil
)))))
2405 ;;;_ = outline-isearch-was-font-lock
2406 (defvar outline-isearch-was-font-lock
2407 (and (boundp 'font-lock-mode
) font-lock-mode
))
2408 ;;;_ > outline-isearch-expose (mode)
2409 (defun outline-isearch-expose (mode)
2410 "Mode is either 'clear, 'start, 'continue, or 'final."
2411 ;; outline-isearch-prior-pos encodes exposure status of prior pos:
2412 ;; (pos was-vis header-pos end-pos)
2413 ;; pos - point of concern
2414 ;; was-vis - t, else 'topic if entire topic was exposed, 'entry otherwise
2415 ;; Do reclosure or prior pos, as necessary:
2416 (if (eq mode
'start
)
2417 (setq outline-isearch-was-font-lock
(and (boundp 'font-lock-mode
)
2420 (if (eq mode
'final
)
2421 (setq font-lock-mode outline-isearch-was-font-lock
))
2422 (if (and outline-isearch-prior-pos
2423 (listp outline-isearch-prior-pos
))
2424 ;; Conceal prior peek:
2425 (outline-flag-region (car (cdr outline-isearch-prior-pos
))
2426 (car (cdr (cdr outline-isearch-prior-pos
)))
2428 (if (outline-visible-p)
2429 (setq outline-isearch-prior-pos nil
)
2430 (if (not (eq mode
'final
))
2431 (setq outline-isearch-prior-pos
(cons (point) (outline-show-entry)))
2432 (if outline-isearch-did-quit
2434 (setq outline-isearch-prior-pos nil
)
2435 (outline-show-children))))
2436 (setq outline-isearch-did-quit nil
))
2437 ;;;_ > outline-enwrap-isearch ()
2438 (defun outline-enwrap-isearch ()
2439 "Impose outline-mode isearch-abort wrapper for dynamic exposure in isearch.
2441 The function checks to ensure that the rebinding is done only once."
2443 (add-hook 'isearch-mode-end-hook
'outline-isearch-rectification
)
2444 (if (fboundp 'outline-real-isearch-abort
)
2447 ; Ensure load of isearch-mode:
2448 (if (or (and (fboundp 'isearch-mode
)
2449 (fboundp 'isearch-abort
))
2450 (condition-case error
2451 (load-library "isearch-mode")
2452 ('file-error
(message
2453 "Skipping isearch-mode provisions - %s '%s'"
2455 (car (cdr (cdr error
))))
2457 ;; Inhibit subsequent tries and return nil:
2458 (setq outline-isearch-dynamic-expose nil
))))
2459 ;; Isearch-mode loaded, encapsulate specific entry points for
2460 ;; outline dynamic-exposure business:
2462 ;; stash crucial isearch-mode funcs under known, private
2463 ;; names, then register wrapper functions under the old
2464 ;; names, in their stead:
2465 (fset 'outline-real-isearch-abort
(symbol-function 'isearch-abort
))
2466 (fset 'isearch-abort
'outline-isearch-abort
)))))
2467 ;;;_ > outline-isearch-abort ()
2468 (defun outline-isearch-abort ()
2469 "Wrapper for outline-real-isearch-abort \(which see), to register
2472 (setq outline-isearch-did-quit nil
)
2473 (condition-case what
2474 (outline-real-isearch-abort)
2475 ('quit
(setq outline-isearch-did-quit t
)
2476 (signal 'quit nil
))))
2478 ;;; Prevent unnecessary font-lock while isearching!
2479 (defvar isearch-was-font-locking nil
)
2480 (defun isearch-inhibit-font-lock ()
2481 "Inhibit font-lock while isearching - for use on isearch-mode-hook."
2482 (if (and (outline-mode-p) (boundp 'font-lock-mode
) font-lock-mode
)
2483 (setq isearch-was-font-locking t
2484 font-lock-mode nil
)))
2485 (add-hook 'isearch-mode-hook
'isearch-inhibit-font-lock
)
2486 (defun isearch-reenable-font-lock ()
2487 "Reenable font-lock after isearching - for use on isearch-mode-end-hook."
2488 (if (and (boundp 'font-lock-mode
) font-lock-mode
)
2489 (if (and (outline-mode-p) isearch-was-font-locking
)
2490 (setq isearch-was-font-locking nil
2491 font-lock-mode t
))))
2492 (add-hook 'isearch-mode-end-hook
'isearch-reenable-font-lock
)
2494 ;;;_ - Topic Format Assessment
2495 ;;;_ > outline-solicit-alternate-bullet (depth &optional current-bullet)
2496 (defun outline-solicit-alternate-bullet (depth &optional current-bullet
)
2498 "Prompt for and return a bullet char as an alternative to the current one.
2500 Offer one suitable for current depth DEPTH as default."
2502 (let* ((default-bullet (or (and (stringp current-bullet
) current-bullet
)
2503 (outline-bullet-for-depth depth
)))
2504 (sans-escapes (regexp-sans-escapes outline-bullets-string
))
2507 (goto-char (outline-current-bullet-pos))
2508 (setq choice
(solicit-char-in-string
2509 (format "Select bullet: %s ('%s' default): "
2515 (if (string= choice
"") default-bullet choice
))
2517 ;;;_ > outline-distinctive-bullet (bullet)
2518 (defun outline-distinctive-bullet (bullet)
2519 "True if bullet is one of those on outline-distinctive-bullets-string."
2520 (string-match (regexp-quote bullet
) outline-distinctive-bullets-string
))
2521 ;;;_ > outline-numbered-type-prefix (&optional prefix)
2522 (defun outline-numbered-type-prefix (&optional prefix
)
2523 "True if current header prefix bullet is numbered bullet."
2524 (and outline-numbered-bullet
2525 (string= outline-numbered-bullet
2527 (outline-get-prefix-bullet prefix
)
2528 (outline-get-bullet)))))
2529 ;;;_ > outline-bullet-for-depth (&optional depth)
2530 (defun outline-bullet-for-depth (&optional depth
)
2531 "Return outline topic bullet suited to optional DEPTH, or current depth."
2532 ;; Find bullet in plain-bullets-string modulo DEPTH.
2533 (if outline-stylish-prefixes
2534 (char-to-string (aref outline-plain-bullets-string
2535 (%
(max 0 (- depth
2))
2536 outline-plain-bullets-string-len
)))
2537 outline-primary-bullet
)
2540 ;;;_ - Topic Production
2541 ;;;_ > outline-make-topic-prefix (&optional prior-bullet
2542 (defun outline-make-topic-prefix (&optional prior-bullet
2548 ;; Depth null means use current depth, non-null means we're either
2549 ;; opening a new topic after current topic, lower or higher, or we're
2550 ;; changing level of current topic.
2551 ;; Solicit dominates specified bullet-char.
2553 "Generate a topic prefix suitable for optional arg DEPTH, or current depth.
2555 All the arguments are optional.
2557 PRIOR-BULLET indicates the bullet of the prefix being changed, or
2558 nil if none. This bullet may be preserved (other options
2559 notwithstanding) if it is on the outline-distinctive-bullets-string,
2562 Second arg NEW indicates that a new topic is being opened after the
2563 topic at point, if non-nil. Default bullet for new topics, eg, may
2564 be set (contingent to other args) to numbered bullets if previous
2565 sibling is one. The implication otherwise is that the current topic
2566 is being adjusted - shifted or rebulleted - and we don't consider
2567 bullet or previous sibling.
2569 Third arg DEPTH forces the topic prefix to that depth, regardless of
2570 the current topics' depth.
2572 If SOLICIT is non-nil, then the choice of bullet is solicited from
2573 user. If it's a character, then that character is offered as the
2574 default, otherwise the one suited to the context \(according to
2575 distinction or depth) is offered. \(This overrides other options,
2576 including, eg, a distinctive PRIOR-BULLET.) If non-nil, then the
2577 context-specific bullet is used.
2579 Fifth arg, NUMBER-CONTROL, matters only if `outline-numbered-bullet'
2580 is non-nil *and* soliciting was not explicitly invoked. Then
2581 NUMBER-CONTROL non-nil forces prefix to either numbered or
2582 denumbered format, depending on the value of the sixth arg, INDEX.
2584 \(Note that NUMBER-CONTROL does *not* apply to level 1 topics. Sorry...)
2586 If NUMBER-CONTROL is non-nil and sixth arg INDEX is non-nil then
2587 the prefix of the topic is forced to be numbered. Non-nil
2588 NUMBER-CONTROL and nil INDEX forces non-numbered format on the
2589 bullet. Non-nil NUMBER-CONTROL and non-nil, non-number INDEX means
2590 that the index for the numbered prefix will be derived, by counting
2591 siblings back to start of level. If INDEX is a number, then that
2592 number is used as the index for the numbered prefix (allowing, eg,
2593 sequential renumbering to not require this function counting back the
2594 index for each successive sibling)."
2596 ;; The options are ordered in likely frequence of use, most common
2597 ;; highest, least lowest. Ie, more likely to be doing prefix
2598 ;; adjustments than soliciting, and yet more than numbering.
2599 ;; Current prefix is least dominant, but most likely to be commonly
2605 (depth (or depth
(outline-depth)))
2606 (header-lead outline-header-prefix
)
2609 ;; Getting value for bullet char is practically the whole job:
2612 ; Simplest situation - level 1:
2613 ((<= depth
1) (setq header-lead
"") outline-primary-bullet
)
2614 ; Simple, too: all asterisks:
2615 (outline-old-style-prefixes
2616 ;; Cheat - make body the whole thing, null out header-lead and
2618 (setq body
(make-string depth
2619 (string-to-char outline-primary-bullet
)))
2620 (setq header-lead
"")
2623 ;; (Neither level 1 nor old-style, so we're space padding.
2624 ;; Sneak it in the condition of the next case, whatever it is.)
2626 ;; Solicitation overrides numbering and other cases:
2627 ((progn (setq body
(make-string (- depth
2) ?\
))
2628 ;; The actual condition:
2630 (let* ((got (outline-solicit-alternate-bullet depth solicit
)))
2631 ;; Gotta check whether we're numbering and got a numbered bullet:
2632 (setq numbering
(and outline-numbered-bullet
2633 (not (and number-control
(not index
)))
2634 (string= got outline-numbered-bullet
)))
2635 ;; Now return what we got, regardless:
2638 ;; Numbering invoked through args:
2639 ((and outline-numbered-bullet number-control
)
2640 (if (setq numbering
(not (setq denumbering
(not index
))))
2641 outline-numbered-bullet
2642 (if (and prior-bullet
2643 (not (string= outline-numbered-bullet
2646 (outline-bullet-for-depth depth
))))
2648 ;;; Neither soliciting nor controlled numbering ;;;
2649 ;;; (may be controlled denumbering, tho) ;;;
2651 ;; Check wrt previous sibling:
2652 ((and new
; only check for new prefixes
2653 (<= depth
(outline-depth))
2654 outline-numbered-bullet
; ... & numbering enabled
2656 (let ((sibling-bullet
2658 ;; Locate correct sibling:
2659 (or (>= depth
(outline-depth))
2660 (outline-ascend-to-depth depth
))
2661 (outline-get-bullet))))
2662 (if (and sibling-bullet
2663 (string= outline-numbered-bullet sibling-bullet
))
2664 (setq numbering sibling-bullet
)))))
2666 ;; Distinctive prior bullet?
2668 (outline-distinctive-bullet prior-bullet
)
2669 ;; Either non-numbered:
2670 (or (not (and outline-numbered-bullet
2671 (string= prior-bullet outline-numbered-bullet
)))
2672 ;; or numbered, and not denumbering:
2673 (setq numbering
(not denumbering
)))
2677 ;; Else, standard bullet per depth:
2678 ((outline-bullet-for-depth depth
)))))
2684 (format "%d" (cond ((and index
(numberp index
)) index
)
2685 (new (1+ (outline-sibling-index depth
)))
2686 ((outline-sibling-index))))))
2689 ;;;_ > outline-open-topic (relative-depth &optional before use_sib_bullet)
2690 (defun outline-open-topic (relative-depth &optional before use_sib_bullet
)
2691 "Open a new topic at depth DEPTH.
2693 New topic is situated after current one, unless optional flag BEFORE
2694 is non-nil, or unless current line is complete empty (not even
2695 whitespace), in which case open is done on current line.
2697 If USE_SIB_BULLET is true, use the bullet of the prior sibling.
2701 - Creation of new topics is with respect to the visible topic
2702 containing the cursor, regardless of intervening concealed ones.
2704 - New headers are generally created after/before the body of a
2705 topic. However, they are created right at cursor location if the
2706 cursor is on a blank line, even if that breaks the current topic
2707 body. This is intentional, to provide a simple means for
2708 deliberately dividing topic bodies.
2710 - Double spacing of topic lists is preserved. Also, the first
2711 level two topic is created double-spaced (and so would be
2712 subsequent siblings, if that's left intact). Otherwise,
2713 single-spacing is used.
2715 - Creation of sibling or nested topics is with respect to the topic
2716 you're starting from, even when creating backwards. This way you
2717 can easily create a sibling in front of the current topic without
2718 having to go to its preceding sibling, and then open forward
2721 (let* ((depth (+ (outline-current-depth) relative-depth
))
2722 (opening-on-blank (if (looking-at "^\$")
2723 (not (setq before nil
))))
2724 opening-numbered
; Will get while computing ref-topic, below
2725 ref-depth
; Will get while computing ref-topic, below
2726 ref-bullet
; Will get while computing ref-topic, next
2727 (ref-topic (save-excursion
2728 (cond ((< relative-depth
0)
2729 (outline-ascend-to-depth depth
))
2730 ((>= relative-depth
1) nil
)
2731 (t (outline-back-to-current-heading)))
2732 (setq ref-depth
(outline-recent-depth))
2734 (if (> outline-recent-prefix-end
1)
2735 (outline-recent-bullet)
2737 (setq opening-numbered
2739 (and outline-numbered-bullet
2740 (or (<= relative-depth
0)
2741 (outline-descend-to-depth depth
))
2742 (if (outline-numbered-type-prefix)
2743 outline-numbered-bullet
))))
2748 (if (not opening-on-blank
)
2749 ; Positioning and vertical
2750 ; padding - only if not
2753 (goto-char ref-topic
)
2754 (setq dbl-space
; Determine double space action:
2755 (or (and (<= relative-depth
0) ; not descending;
2757 ;; at b-o-b or preceded by a blank line?
2758 (or (> 0 (forward-line -
1))
2759 (looking-at "^\\s-*$")
2762 ;; succeeded by a blank line?
2763 (outline-end-of-current-subtree)
2765 (and (= ref-depth
1)
2769 ;; Don't already have following
2770 ;; vertical padding:
2771 (not (outline-pre-next-preface)))))))
2773 ; Position to prior heading,
2774 ; if inserting backwards, and
2775 ; not going outwards:
2776 (if (and before
(>= relative-depth
0))
2777 (progn (outline-back-to-current-heading)
2778 (setq doing-beginning
(bobp))
2780 (outline-previous-heading)))
2781 (if (and before
(bobp))
2782 (outline-unprotected (open-line 1))))
2784 (if (<= relative-depth
0)
2785 ;; Not going inwards, don't snug up:
2787 (outline-unprotected (open-line (if dbl-space
2 1)))
2789 (progn (end-of-line)
2790 (outline-pre-next-preface)
2791 (while (= ?
\r (following-char))
2793 (if (not (looking-at "^$"))
2794 (outline-unprotected (open-line 1))))
2795 (outline-end-of-current-subtree)))
2796 ;; Going inwards - double-space if first offspring is,
2797 ;; otherwise snug up.
2798 (end-of-line) ; So we skip any concealed progeny.
2799 (outline-pre-next-preface)
2801 ;; Blank lines between current header body and next
2802 ;; header - get to last substantive (non-white-space)
2804 (re-search-backward "[^ \t\n]" nil t
))
2806 (outline-next-heading)
2807 (if (> (outline-recent-depth) ref-depth
)
2808 ;; This is an offspring.
2809 (progn (forward-line -
1)
2810 (looking-at "^\\s-*$"))))
2811 (progn (forward-line 1)
2812 (outline-unprotected (open-line 1))))
2814 ;;(if doing-beginning (goto-char doing-beginning))
2816 (progn (if (and (not (> depth ref-depth
))
2818 (outline-unprotected (open-line 1))
2819 (if (> depth ref-depth
)
2820 (outline-unprotected (newline 1))
2822 (outline-unprotected (open-line 1))
2824 (outline-unprotected (newline 1))))))
2826 (outline-unprotected (newline 1)))
2827 (if (and (not (eobp))
2831 (insert-string (concat (outline-make-topic-prefix opening-numbered
2836 ;;(if doing-beginning (save-excursion (newline (if dbl-space 2 1))))
2839 (outline-rebullet-heading (and use_sib_bullet ref-bullet
);;; solicit
2841 nil
;;; number-control
2846 ;;;_ . open-topic contingencies
2847 ;;;_ ; base topic - one from which open was issued
2848 ;;;_ , beginning char
2849 ;;;_ , amount of space before will be used, unless opening in place
2850 ;;;_ , end char will be used, unless opening before (and it still may)
2851 ;;;_ ; absolute depth of new topic
2852 ;;;_ ! insert in place - overrides most stuff
2853 ;;;_ ; relative depth of new re base
2854 ;;;_ ; before or after base topic
2855 ;;;_ ; spacing around topic, if any, prior to new topic and at same depth
2856 ;;;_ ; buffer boundaries - special provisions for beginning and end ob
2857 ;;;_ ; level 1 topics have special provisions also - double space.
2858 ;;;_ ; location of new topic
2859 ;;;_ > outline-open-subtopic (arg)
2860 (defun outline-open-subtopic (arg)
2861 "Open new topic header at deeper level than the current one.
2863 Negative universal arg means to open deeper, but place the new topic
2864 prior to the current one."
2866 (outline-open-topic 1 (> 0 arg
)))
2867 ;;;_ > outline-open-sibtopic (arg)
2868 (defun outline-open-sibtopic (arg)
2869 "Open new topic header at same level as the current one.
2871 Positive universal arg means to use the bullet of the prior sibling.
2873 Negative universal arg means to place the new topic prior to the current
2876 (outline-open-topic 0 (> 0 arg
) (< 1 arg
)))
2877 ;;;_ > outline-open-supertopic (arg)
2878 (defun outline-open-supertopic (arg)
2879 "Open new topic header at shallower level than the current one.
2881 Negative universal arg means to open shallower, but place the new
2882 topic prior to the current one."
2885 (outline-open-topic -
1 (> 0 arg
)))
2887 ;;;_ - Outline Alteration
2888 ;;;_ : Topic Modification
2889 ;;;_ = outline-former-auto-filler
2890 (defvar outline-former-auto-filler nil
2891 "Name of modal fill function being wrapped by outline-auto-fill.")
2892 ;;;_ > outline-auto-fill ()
2893 (defun outline-auto-fill ()
2894 "Outline-mode autofill function.
2896 Maintains outline hanging topic indentation if
2897 `outline-use-hanging-indents' is set."
2898 (let ((fill-prefix (if outline-use-hanging-indents
2899 ;; Check for topic header indentation:
2902 (if (looking-at outline-regexp
)
2903 ;; ... construct indentation to account for
2904 ;; length of topic prefix:
2905 (make-string (progn (outline-end-of-prefix)
2908 (if (or outline-former-auto-filler outline-use-hanging-indents
)
2910 ;;;_ > outline-reindent-body (old-depth new-depth &optional number)
2911 (defun outline-reindent-body (old-depth new-depth
&optional number
)
2912 "Reindent body lines which were indented at old-depth to new-depth.
2914 Optional arg NUMBER indicates numbering is being added, and it must
2917 Note that refill of indented paragraphs is not done."
2920 (outline-end-of-prefix)
2921 (let* ((new-margin (current-column))
2922 excess old-indent-begin old-indent-end
2924 ;; We want the column where the header-prefix text started
2925 ;; *before* the prefix was changed, so we infer it relative
2926 ;; to the new margin and the shift in depth:
2927 (old-margin (+ old-depth
(- new-margin new-depth
))))
2929 ;; Process lines up to (but excluding) next topic header:
2930 (outline-unprotected
2933 (and (re-search-forward "[\n\r]\\(\\s-*\\)"
2936 ;; Register the indent data, before we reset the
2937 ;; match data with a subsequent `looking-at':
2938 (setq old-indent-begin
(match-beginning 1)
2939 old-indent-end
(match-end 1))
2940 (not (looking-at outline-regexp
)))
2941 (if (> 0 (setq excess
(- (current-column)
2943 ;; Text starts left of old margin - don't adjust:
2945 ;; Text was hanging at or right of old left margin -
2946 ;; reindent it, preserving its existing indentation
2947 ;; beyond the old margin:
2948 (delete-region old-indent-begin old-indent-end
)
2949 (indent-to (+ new-margin excess
)))))))))
2950 ;;;_ > outline-rebullet-current-heading (arg)
2951 (defun outline-rebullet-current-heading (arg)
2952 "Solicit new bullet for current visible heading."
2954 (let ((initial-col (current-column))
2955 (on-bullet (eq (point)(outline-current-bullet-pos)))
2956 (backwards (if (< arg
0)
2957 (setq arg
(* arg -
1)))))
2959 (save-excursion (outline-back-to-current-heading)
2960 (outline-end-of-prefix)
2961 (outline-rebullet-heading t
;;; solicit
2963 nil
;;; number-control
2965 t
)) ;;; do-successors
2969 (setq initial-col nil
) ; Override positioning back to init col
2971 (outline-next-visible-heading 1)
2972 (outline-goto-prefix)
2973 (outline-next-visible-heading -
1))))
2975 (cond (on-bullet (goto-char (outline-current-bullet-pos)))
2976 (initial-col (move-to-column initial-col
)))))
2977 ;;;_ > outline-rebullet-heading (&optional solicit ...)
2978 (defun outline-rebullet-heading (&optional solicit
2984 "Adjust bullet of current topic prefix.
2986 All args are optional.
2988 If SOLICIT is non-nil, then the choice of bullet is solicited from
2989 user. If it's a character, then that character is offered as the
2990 default, otherwise the one suited to the context \(according to
2991 distinction or depth) is offered. If non-nil, then the
2992 context-specific bullet is just used.
2994 Second arg DEPTH forces the topic prefix to that depth, regardless
2995 of the topic's current depth.
2997 Third arg NUMBER-CONTROL can force the prefix to or away from
2998 numbered form. It has effect only if `outline-numbered-bullet' is
2999 non-nil and soliciting was not explicitly invoked (via first arg).
3000 Its effect, numbering or denumbering, then depends on the setting
3001 of the forth arg, INDEX.
3003 If NUMBER-CONTROL is non-nil and forth arg INDEX is nil, then the
3004 prefix of the topic is forced to be non-numbered. Null index and
3005 non-nil NUMBER-CONTROL forces denumbering. Non-nil INDEX (and
3006 non-nil NUMBER-CONTROL) forces a numbered-prefix form. If non-nil
3007 INDEX is a number, then that number is used for the numbered
3008 prefix. Non-nil and non-number means that the index for the
3009 numbered prefix will be derived by outline-make-topic-prefix.
3011 Fifth arg DO-SUCCESSORS t means re-resolve count on succeeding
3014 Cf vars `outline-stylish-prefixes', `outline-old-style-prefixes',
3015 and `outline-numbered-bullet', which all affect the behavior of
3018 (let* ((current-depth (outline-depth))
3019 (new-depth (or new-depth current-depth
))
3020 (mb outline-recent-prefix-beginning
)
3021 (me outline-recent-prefix-end
)
3022 (current-bullet (buffer-substring (- me
1) me
))
3023 (new-prefix (outline-make-topic-prefix current-bullet
3030 ;; Is new one is identical to old?
3031 (if (and (= current-depth new-depth
)
3032 (string= current-bullet
3033 (substring new-prefix
(1- (length new-prefix
)))))
3037 ;; New prefix probably different from old:
3038 ; get rid of old one:
3039 (outline-unprotected (delete-region mb me
))
3041 ; Dispense with number if
3042 ; numbered-bullet prefix:
3043 (if (and outline-numbered-bullet
3044 (string= outline-numbered-bullet current-bullet
)
3045 (looking-at "[0-9]+"))
3046 (outline-unprotected
3047 (delete-region (match-beginning 0)(match-end 0))))
3049 ; Put in new prefix:
3050 (outline-unprotected (insert-string new-prefix
))
3052 ;; Reindent the body if elected and margin changed:
3053 (if (and outline-reindent-bodies
3054 (not (= new-depth current-depth
)))
3055 (outline-reindent-body current-depth new-depth
))
3057 ;; Recursively rectify successive siblings of orig topic if
3058 ;; caller elected for it:
3061 (while (outline-next-sibling new-depth nil
)
3063 (cond ((numberp index
) (1+ index
))
3064 ((not number-control
) (outline-sibling-index))))
3065 (if (outline-numbered-type-prefix)
3066 (outline-rebullet-heading nil
;;; solicit
3067 new-depth
;;; new-depth
3068 number-control
;;; number-control
3070 nil
))))) ;;;(dont!)do-successors
3071 ) ; (if (and (= current-depth new-depth)...))
3072 ) ; let* ((current-depth (outline-depth))...)
3074 ;;;_ > outline-rebullet-topic (arg)
3075 (defun outline-rebullet-topic (arg)
3076 "Like outline-rebullet-topic-grunt, but start from topic visible at point.
3078 Descends into invisible as well as visible topics, however.
3080 With repeat count, shift topic depth by that amount."
3082 (let ((start-col (current-column))
3086 (cond ((null arg
) (setq arg
0))
3087 ((listp arg
) (setq arg
(car arg
))))
3088 ;; Fill the user in, in case we're shifting a big topic:
3089 (if (not (zerop arg
)) (message "Shifting..."))
3090 (outline-back-to-current-heading)
3091 (if (<= (+ (outline-recent-depth) arg
) 0)
3092 (error "Attempt to shift topic below level 1"))
3093 (outline-rebullet-topic-grunt arg
)
3094 (if (not (zerop arg
)) (message "Shifting... done.")))
3095 (move-to-column (max 0 (+ start-col arg
)))))
3096 ;;;_ > outline-rebullet-topic-grunt (&optional relative-depth ...)
3097 (defun outline-rebullet-topic-grunt (&optional relative-depth
3103 "Rebullet the topic at point, visible or invisible, and all
3104 contained subtopics. See outline-rebullet-heading for rebulleting
3107 All arguments are optional.
3109 First arg RELATIVE-DEPTH means to shift the depth of the entire
3112 The rest of the args are for internal recursive use by the function
3113 itself. The are STARTING-DEPTH, STARTING-POINT, and INDEX."
3115 (let* ((relative-depth (or relative-depth
0))
3116 (new-depth (outline-depth))
3117 (starting-depth (or starting-depth new-depth
))
3118 (on-starting-call (null starting-point
))
3120 ;; Leave index null on starting call, so rebullet-heading
3121 ;; calculates it at what might be new depth:
3122 (and (or (zerop relative-depth
)
3123 (not on-starting-call
))
3124 (outline-sibling-index))))
3125 (moving-outwards (< 0 relative-depth
))
3126 (starting-point (or starting-point
(point))))
3128 ;; Sanity check for excessive promotion done only on starting call:
3129 (and on-starting-call
3131 (> 0 (+ starting-depth relative-depth
))
3132 (error "Attempt to shift topic out beyond level 1.")) ;;; ====>
3134 (cond ((= starting-depth new-depth
)
3135 ;; We're at depth to work on this one:
3136 (outline-rebullet-heading nil
;;; solicit
3137 (+ starting-depth
;;; starting-depth
3141 ;; Every contained topic will get hit,
3142 ;; and we have to get to outside ones
3144 nil
) ;;; do-successors
3145 ;; ... and work on subsequent ones which are at greater depth:
3147 (outline-next-heading)
3148 (while (and (not (eobp))
3149 (< starting-depth
(outline-recent-depth)))
3150 (setq index
(1+ index
))
3151 (outline-rebullet-topic-grunt relative-depth
;;; relative-depth
3152 (1+ starting-depth
);;;starting-depth
3153 starting-point
;;; starting-point
3156 ((< starting-depth new-depth
)
3157 ;; Rare case - subtopic more than one level deeper than parent.
3158 ;; Treat this one at an even deeper level:
3159 (outline-rebullet-topic-grunt relative-depth
;;; relative-depth
3160 new-depth
;;; starting-depth
3161 starting-point
;;; starting-point
3164 (if on-starting-call
3166 ;; Rectify numbering of former siblings of the adjusted topic,
3167 ;; if topic has changed depth
3168 (if (or do-successors
3169 (and (not (zerop relative-depth
))
3170 (or (= (outline-recent-depth) starting-depth
)
3171 (= (outline-recent-depth) (+ starting-depth
3173 (outline-rebullet-heading nil nil nil nil t
))
3174 ;; Now rectify numbering of new siblings of the adjusted topic,
3175 ;; if depth has been changed:
3176 (progn (goto-char starting-point
)
3177 (if (not (zerop relative-depth
))
3178 (outline-rebullet-heading nil nil nil nil t
)))))
3181 ;;;_ > outline-renumber-to-depth (&optional depth)
3182 (defun outline-renumber-to-depth (&optional depth
)
3183 "Renumber siblings at current depth.
3185 Affects superior topics if optional arg DEPTH is less than current depth.
3187 Returns final depth."
3189 ;; Proceed by level, processing subsequent siblings on each,
3190 ;; ascending until we get shallower than the start depth:
3192 (let ((ascender (outline-depth))
3194 (while (and (not (eobp))
3196 (>= (outline-recent-depth) depth
)
3197 (>= ascender depth
))
3198 ; Skip over all topics at
3199 ; lesser depths, which can not
3200 ; have been disturbed:
3201 (while (and (not (setq was-eobp
(eobp)))
3202 (> (outline-recent-depth) ascender
))
3203 (outline-next-heading))
3204 ; Prime ascender for ascension:
3205 (setq ascender
(1- (outline-recent-depth)))
3206 (if (>= (outline-recent-depth) depth
)
3207 (outline-rebullet-heading nil
;;; solicit
3209 nil
;;; number-control
3211 t
)) ;;; do-successors
3212 (if was-eobp
(goto-char (point-max)))))
3213 (outline-recent-depth))
3214 ;;;_ > outline-number-siblings (&optional denumber)
3215 (defun outline-number-siblings (&optional denumber
)
3216 "Assign numbered topic prefix to this topic and its siblings.
3218 With universal argument, denumber - assign default bullet to this
3219 topic and its siblings.
3221 With repeated universal argument (`^U^U'), solicit bullet for each
3222 rebulleting each topic at this level."
3227 (outline-back-to-current-heading)
3228 (outline-beginning-of-level)
3229 (let ((depth (outline-recent-depth))
3230 (index (if (not denumber
) 1))
3231 (use-bullet (equal '(16) denumber
))
3234 (outline-rebullet-heading use-bullet
;;; solicit
3236 t
;;; number-control
3238 nil
) ;;; do-successors
3239 (if index
(setq index
(1+ index
)))
3240 (setq more
(outline-next-sibling depth nil
))))))
3241 ;;;_ > outline-shift-in (arg)
3242 (defun outline-shift-in (arg)
3243 "Increase depth of current heading and any topics collapsed within it."
3245 (outline-rebullet-topic arg
))
3246 ;;;_ > outline-shift-out (arg)
3247 (defun outline-shift-out (arg)
3248 "Decrease depth of current heading and any topics collapsed within it."
3250 (outline-rebullet-topic (* arg -
1)))
3251 ;;;_ : Surgery (kill-ring) functions with special provisions for outlines:
3252 ;;;_ > outline-kill-line (&optional arg)
3253 (defun outline-kill-line (&optional arg
)
3254 "Kill line, adjusting subsequent lines suitably for outline mode."
3257 (if (not (and (outline-mode-p) ; active outline mode,
3258 outline-numbered-bullet
; numbers may need adjustment,
3259 (bolp) ; may be clipping topic head,
3260 (looking-at outline-regexp
))) ; are clipping topic head.
3261 ;; Above conditions do not obtain - just do a regular kill:
3263 ;; Ah, have to watch out for adjustments:
3264 (let* ((depth (outline-depth)))
3267 ; Provide some feedback:
3270 ; Start with the topic
3271 ; following killed line:
3272 (if (not (looking-at outline-regexp
))
3273 (outline-next-heading))
3274 (outline-renumber-to-depth depth
)))))
3275 ;;;_ > outline-kill-topic ()
3276 (defun outline-kill-topic ()
3277 "Kill topic together with subtopics.
3279 Leaves primary topic's trailing vertical whitespace, if any."
3281 ;; Some finagling is done to make complex topic kills appear faster
3282 ;; than they actually are. A redisplay is performed immediately
3283 ;; after the region is disposed of, though the renumbering process
3284 ;; has yet to be performed. This means that there may appear to be
3285 ;; a lag *after* the kill has been performed.
3288 (let* ((beg (prog1 (outline-back-to-current-heading)(beginning-of-line)))
3289 (depth (outline-recent-depth)))
3290 (outline-end-of-current-subtree)
3292 (if (or (not (looking-at "^$"))
3293 ;; A blank line - cut it with this topic *unless* this
3294 ;; is the last topic at this level, in which case
3295 ;; we'll leave the blank line as part of the
3296 ;; containing topic:
3298 (and (outline-next-heading)
3299 (>= (outline-recent-depth) depth
))))
3302 (kill-region beg
(point))
3305 (outline-renumber-to-depth depth
))))
3306 ;;;_ > outline-yank-processing ()
3307 (defun outline-yank-processing (&optional arg
)
3309 "Incidental outline-specific business to be done just after text yanks.
3311 Does depth adjustment of yanked topics, when:
3313 1 the stuff being yanked starts with a valid outline header prefix, and
3314 2 it is being yanked at the end of a line which consists of only a valid
3317 Also, adjusts numbering of subsequent siblings when appropriate.
3319 Depth adjustment alters the depth of all the topics being yanked
3320 the amount it takes to make the first topic have the depth of the
3321 header into which it's being yanked.
3323 The point is left in front of yanked, adjusted topics, rather than
3324 at the end (and vice-versa with the mark). Non-adjusted yanks,
3325 however, are left exactly like normal, non-outline-specific yanks."
3328 ; Get to beginning, leaving
3329 ; region around subject:
3330 (if (< (my-mark-marker t
) (point))
3331 (exchange-point-and-mark))
3332 (let* ((subj-beg (point))
3333 (subj-end (my-mark-marker t
))
3334 ;; 'resituate' if yanking an entire topic into topic header:
3335 (resituate (and (outline-e-o-prefix-p)
3336 (looking-at (concat "\\(" outline-regexp
"\\)"))
3337 (outline-prefix-data (match-beginning 1)
3339 ;; `rectify-numbering' if resituating (where several topics may
3340 ;; be resituating) or yanking a topic into a topic slot (bol):
3341 (rectify-numbering (or resituate
3342 (and (bolp) (looking-at outline-regexp
)))))
3344 ; The yanked stuff is a topic:
3345 (let* ((prefix-len (- (match-end 1) subj-beg
))
3346 (subj-depth (outline-recent-depth))
3347 (prefix-bullet (outline-recent-bullet))
3349 ;; Nil if adjustment unnecessary, otherwise depth to which
3350 ;; adjustment should be made:
3352 (and (goto-char subj-end
)
3354 (goto-char subj-beg
)
3355 (and (looking-at outline-regexp
)
3358 (not (= (point) subj-beg
)))
3359 (looking-at outline-regexp
)
3360 (outline-prefix-data (match-beginning 0)
3362 (outline-recent-depth))))
3365 (setq rectify-numbering outline-numbered-bullet
)
3367 ; Do the adjustment:
3369 (message "... yanking") (sit-for 0)
3371 (narrow-to-region subj-beg subj-end
)
3372 ; Trim off excessive blank
3373 ; line at end, if any:
3374 (goto-char (point-max))
3375 (if (looking-at "^$")
3376 (outline-unprotected (delete-char -
1)))
3377 ; Work backwards, with each
3379 ; successively excluding the
3380 ; last processed topic from
3381 ; the narrow region:
3383 (outline-back-to-current-heading)
3384 ; go as high as we can in each bunch:
3385 (while (outline-ascend-to-depth (1- (outline-depth))))
3387 (outline-rebullet-topic-grunt (- adjust-to-depth
3390 (if (setq more
(not (bobp)))
3393 (narrow-to-region subj-beg
(point))))))
3395 ;; Preserve new bullet if it's a distinctive one, otherwise
3397 (if (string-match (regexp-quote prefix-bullet
)
3398 outline-distinctive-bullets-string
)
3399 ; Delete from bullet of old to
3400 ; before bullet of new:
3403 (delete-region (point) subj-beg
)
3404 (set-marker (my-mark-marker t
) subj-end
)
3405 (goto-char subj-beg
)
3406 (outline-end-of-prefix))
3407 ; Delete base subj prefix,
3409 (delete-region (point) (+ (point)
3411 (- adjust-to-depth subj-depth
)))
3412 ; and delete residual subj
3413 ; prefix digits and space:
3414 (while (looking-at "[0-9]") (delete-char 1))
3415 (if (looking-at " ") (delete-char 1))))
3416 (exchange-point-and-mark))))
3417 (if rectify-numbering
3420 ; Give some preliminary feedback:
3421 (message "... reconciling numbers") (sit-for 0)
3422 ; ... and renumber, in case necessary:
3423 (goto-char subj-beg
)
3424 (if (outline-goto-prefix)
3425 (outline-rebullet-heading nil
;;; solicit
3426 (outline-depth) ;;; depth
3427 nil
;;; number-control
3432 (exchange-point-and-mark))))
3433 ;;;_ > outline-yank (&optional arg)
3434 (defun outline-yank (&optional arg
)
3435 "Outline-mode yank, with depth and numbering adjustment of yanked topics.
3437 Non-topic yanks work no differently than normal yanks.
3439 If a topic is being yanked into a bare topic prefix, the depth of the
3440 yanked topic is adjusted to the depth of the topic prefix.
3442 1 we're yanking in an outline-mode buffer
3443 2 the stuff being yanked starts with a valid outline header prefix, and
3444 3 it is being yanked at the end of a line which consists of only a valid
3447 If these conditions hold then the depth of the yanked topics are all
3448 adjusted the amount it takes to make the first one at the depth of the
3449 header into which it's being yanked.
3451 The point is left in front of yanked, adjusted topics, rather than
3452 at the end (and vice-versa with the mark). Non-adjusted yanks,
3453 however, (ones that don't qualify for adjustment) are handled
3454 exactly like normal yanks.
3456 Numbering of yanked topics, and the successive siblings at the depth
3457 into which they're being yanked, is adjusted.
3459 Outline-yank-pop works with outline-yank just like normal yank-pop
3460 works with normal yank in non-outline buffers."
3463 (setq this-command
'yank
)
3465 (if (outline-mode-p)
3466 (outline-yank-processing)))
3467 ;;;_ > outline-yank-pop (&optional arg)
3468 (defun outline-yank-pop (&optional arg
)
3469 "Yank-pop like outline-yank when popping to bare outline prefixes.
3471 Adapts level of popped topics to level of fresh prefix.
3473 Note - prefix changes to distinctive bullets will stick, if followed
3474 by pops to non-distinctive yanks. Bug..."
3477 (setq this-command
'yank
)
3479 (if (outline-mode-p)
3480 (outline-yank-processing)))
3482 ;;;_ - Specialty bullet functions
3483 ;;;_ : File Cross references
3484 ;;;_ > outline-resolve-xref ()
3485 (defun outline-resolve-xref ()
3486 "Pop to file associated with current heading, if it has an xref bullet.
3488 \(Works according to setting of `outline-file-xref-bullet')."
3490 (if (not outline-file-xref-bullet
)
3492 "outline cross references disabled - no `outline-file-xref-bullet'")
3493 (if (not (string= (outline-current-bullet) outline-file-xref-bullet
))
3494 (error "current heading lacks cross-reference bullet `%s'"
3495 outline-file-xref-bullet
)
3498 (let* ((text-start outline-recent-prefix-end
)
3499 (heading-end (progn (end-of-line) (point))))
3500 (goto-char text-start
)
3502 (if (re-search-forward "\\s-\\(\\S-*\\)" heading-end t
)
3503 (buffer-substring (match-beginning 1) (match-end 1))))))
3505 (if (not (= (aref file-name
0) ?
:))
3506 (expand-file-name file-name
)
3507 ; A registry-files ref, strip the `:'
3508 ; and try to follow it:
3509 (let ((reg-ref (reference-registered-file
3510 (substring file-name
1) nil t
)))
3511 (if reg-ref
(car (cdr reg-ref
))))))
3512 (if (or (file-exists-p file-name
)
3513 (if (file-writable-p file-name
)
3514 (y-or-n-p (format "%s not there, create one? "
3516 (error "%s not found and can't be created" file-name
)))
3517 (condition-case failure
3518 (find-file-other-window file-name
)
3520 (error "%s not found" file-name
))
3526 ;;;_ #6 Exposure Control
3529 ;;;_ > outline-flag-region (from to flag)
3530 (defmacro outline-flag-region
(from to flag
)
3531 "Hide or show lines from FROM to TO, via emacs selective-display FLAG char.
3532 Ie, text following flag C-m \(carriage-return) is hidden until the
3533 next C-j (newline) char.
3535 Returns the endpoint of the region."
3536 `(let ((buffer-read-only nil
)
3537 (outline-override-protect t
))
3538 (subst-char-in-region ,from
,to
3539 (if (= ,flag ?
\n) ?
\r ?
\n)
3541 ;;;_ > outline-flag-current-subtree (flag)
3542 (defun outline-flag-current-subtree (flag)
3543 "Hide or show subtree of currently-visible topic.
3545 See `outline-flag-region' for more details."
3548 (outline-back-to-current-heading)
3549 (outline-flag-region (point)
3550 (progn (outline-end-of-current-subtree) (1- (point)))
3553 ;;;_ - Topic-specific
3554 ;;;_ > outline-show-entry ()
3555 (defun outline-show-entry ()
3556 "Like `outline-show-current-entry', reveals entries nested in hidden topics.
3558 This is a way to give restricted peek at a concealed locality without the
3559 expense of exposing its context, but can leave the outline with aberrant
3560 exposure. outline-hide-current-entry-completely or outline-show-offshoot
3561 should be used after the peek to rectify the exposure."
3567 (outline-goto-prefix)
3568 (setq beg
(if (= (preceding-char) ?
\r) (1- (point)) (point)))
3569 (re-search-forward "[\n\r]" nil t
)
3570 (setq end
(1- (if (< at
(point))
3571 ;; We're on topic head line - show only it:
3573 ;; or we're in body - include it:
3574 (max beg
(or (outline-pre-next-preface) (point))))))
3575 (outline-flag-region beg end ?
\n)
3577 ;;;_ > outline-show-children (&optional level strict)
3578 (defun outline-show-children (&optional level strict
)
3580 "If point is visible, show all direct subheadings of this heading.
3582 Otherwise, do outline-show-to-offshoot, and then show subheadings.
3584 Optional LEVEL specifies how many levels below the current level
3585 should be shown, or all levels if t. Default is 1.
3587 Optional STRICT means don't resort to -show-to-offshoot, no matter
3588 what. This is basically so -show-to-offshoot, which is called by
3589 this function, can employ the pure offspring-revealing capabilities of
3592 Returns point at end of subtree that was opened, if any. (May get a
3593 point of non-opened subtree?)"
3597 (if (and (not strict
)
3600 (progn (outline-show-to-offshoot) ; Point's concealed, open to
3602 ;; Then recurse, but with "strict" set so we don't
3603 ;; infinite regress:
3604 (setq max-pos
(outline-show-children level t
)))
3608 (let* ((start-pt (point))
3609 (chart (outline-chart-subtree (or level
1)))
3610 (to-reveal (outline-chart-to-reveal chart
(or level
1))))
3611 (goto-char start-pt
)
3612 (if (and strict
(= (preceding-char) ?
\r))
3613 ;; Concealed root would already have been taken care of,
3614 ;; unless strict was set.
3616 (outline-flag-region (point) (outline-snug-back) ?
\n)
3617 (if outline-show-bodies
3618 (progn (goto-char (car to-reveal
))
3619 (outline-show-current-entry)))))
3621 (goto-char (car to-reveal
))
3622 (outline-flag-region (point) (outline-snug-back) ?
\n)
3623 (if outline-show-bodies
3624 (progn (goto-char (car to-reveal
))
3625 (outline-show-current-entry)))
3626 (setq to-reveal
(cdr to-reveal
)))))))))
3627 ;;;_ > outline-hide-point-reconcile ()
3628 (defun outline-hide-reconcile ()
3629 "Like `outline-hide-current-entry'; hides completely if within hidden region.
3631 Specifically intended for aberrant exposure states, like entries that were
3632 exposed by outline-show-entry but are within otherwise concealed regions."
3635 (outline-goto-prefix)
3636 (outline-flag-region (if (not (bobp)) (1- (point)) (point))
3637 (progn (outline-pre-next-preface)
3638 (if (= ?
\r (following-char))
3642 ;;;_ > outline-show-to-offshoot ()
3643 (defun outline-show-to-offshoot ()
3644 "Like outline-show-entry, but reveals all concealed ancestors, as well.
3646 As with outline-hide-current-entry-completely, useful for rectifying
3647 aberrant exposure states produced by outline-show-entry."
3651 (let ((orig-pt (point))
3652 (orig-pref (outline-goto-prefix))
3655 (while (or bag-it
(= (preceding-char) ?
\r))
3657 (if (= last-at
(setq last-at
(point)))
3658 ;; Oops, we're not making any progress! Show the current
3659 ;; topic completely, and bag this try.
3660 (progn (beginning-of-line)
3661 (outline-show-current-subtree)
3666 "outline-show-to-offshoot: "
3667 "Aberrant nesting encountered.")))
3668 (outline-show-children)
3669 (goto-char orig-pref
))
3670 (goto-char orig-pt
)))
3671 (if (outline-hidden-p)
3672 (outline-show-entry)))
3673 ;;;_ > outline-hide-current-entry ()
3674 (defun outline-hide-current-entry ()
3675 "Hide the body directly following this heading."
3677 (outline-back-to-current-heading)
3679 (outline-flag-region (point)
3680 (progn (outline-end-of-current-entry) (point))
3682 ;;;_ > outline-show-current-entry (&optional arg)
3683 (defun outline-show-current-entry (&optional arg
)
3685 "Show body following current heading, or hide the entry if repeat count."
3689 (outline-hide-current-entry)
3691 (outline-flag-region (point)
3692 (progn (outline-end-of-current-entry) (point))
3694 ;;;_ > outline-hide-current-entry-completely ()
3695 ; ... outline-hide-current-entry-completely also for isearch dynamic exposure:
3696 (defun outline-hide-current-entry-completely ()
3697 "Like outline-hide-current-entry, but conceal topic completely.
3699 Specifically intended for aberrant exposure states, like entries that were
3700 exposed by outline-show-entry but are within otherwise concealed regions."
3703 (outline-goto-prefix)
3704 (outline-flag-region (if (not (bobp)) (1- (point)) (point))
3705 (progn (outline-pre-next-preface)
3706 (if (= ?
\r (following-char))
3710 ;;;_ > outline-show-current-subtree (&optional arg)
3711 (defun outline-show-current-subtree (&optional arg
)
3712 "Show everything within the current topic. With a repeat-count,
3713 expose this topic and its siblings."
3716 (if (<= (outline-current-depth) 0)
3717 ;; Outside any topics - try to get to the first:
3718 (if (not (outline-next-heading))
3719 (error "No topics.")
3720 ;; got to first, outermost topic - set to expose it and siblings:
3721 (message "Above outermost topic - exposing all.")
3722 (outline-flag-region (point-min)(point-max) ?
\n))
3724 (outline-flag-current-subtree ?
\n)
3725 (outline-beginning-of-level)
3726 (outline-expose-topic '(* :))))))
3727 ;;;_ > outline-hide-current-subtree (&optional just-close)
3728 (defun outline-hide-current-subtree (&optional just-close
)
3729 "Close the current topic, or containing topic if this one is already closed.
3731 If this topic is closed and it's a top level topic, close this topic
3734 If optional arg JUST-CLOSE is non-nil, do not treat the parent or
3735 siblings, even if the target topic is already closed."
3738 (let ((from (point))
3739 (orig-eol (progn (end-of-line)
3740 (if (not (outline-goto-prefix))
3741 (error "No topics found.")
3742 (end-of-line)(point)))))
3743 (outline-flag-current-subtree ?
\r)
3745 (if (and (= orig-eol
(progn (goto-char orig-eol
)
3749 ;; Structure didn't change - try hiding current level:
3751 (if (outline-up-current-level 1 t
)
3755 "Top-level topic already closed - closing siblings..."))
3757 (outline-expose-topic '(0 :))
3758 (message (concat msg
" Done.")))
3760 (/= (outline-recent-depth) 0))
3761 (outline-hide-current-subtree))
3763 ;;;_ > outline-show-current-branches ()
3764 (defun outline-show-current-branches ()
3765 "Show all subheadings of this heading, but not their bodies."
3768 (outline-show-children t
))
3769 ;;;_ > outline-hide-current-leaves ()
3770 (defun outline-hide-current-leaves ()
3771 "Hide the bodies of the current topic and all its offspring."
3773 (outline-back-to-current-heading)
3774 (outline-hide-region-body (point) (progn (outline-end-of-current-subtree)
3777 ;;;_ - Region and beyond
3778 ;;;_ > outline-show-all ()
3779 (defun outline-show-all ()
3780 "Show all of the text in the buffer."
3782 (message "Exposing entire buffer...")
3783 (outline-flag-region (point-min) (point-max) ?
\n)
3784 (message "Exposing entire buffer... Done."))
3785 ;;;_ > outline-hide-bodies ()
3786 (defun outline-hide-bodies ()
3787 "Hide all of buffer except headings."
3789 (outline-hide-region-body (point-min) (point-max)))
3790 ;;;_ > outline-hide-region-body (start end)
3791 (defun outline-hide-region-body (start end
)
3792 "Hide all body lines in the region, but not headings."
3795 (narrow-to-region start end
)
3796 (goto-char (point-min))
3798 (outline-flag-region (point)
3799 (progn (outline-pre-next-preface) (point)) ?
\r)
3802 (if (looking-at "[\n\r][\n\r]")
3805 ;;;_ > outline-expose-topic (spec)
3806 (defun outline-expose-topic (spec)
3807 "Apply exposure specs to successive outline topic items.
3809 Use the more convenient frontend, `outline-new-exposure', if you don't
3810 need evaluation of the arguments, or even better, the `outline-layout'
3811 variable-keyed mode-activation/auto-exposure feature of allout outline
3812 mode. See the respective documentation strings for more details.
3814 Cursor is left at start position.
3816 SPEC is either a number or a list.
3818 Successive specs on a list are applied to successive sibling topics.
3820 A simple spec \(either a number, one of a few symbols, or the null
3821 list) dictates the exposure for the corresponding topic.
3823 Non-null lists recursively designate exposure specs for respective
3824 subtopics of the current topic.
3826 The `:' repeat spec is used to specify exposure for any number of
3827 successive siblings, up to the trailing ones for which there are
3828 explicit specs following the `:'.
3830 Simple (numeric and null-list) specs are interpreted as follows:
3832 Numbers indicate the relative depth to open the corresponding topic.
3833 - negative numbers force the topic to be closed before opening to the
3834 absolute value of the number, so all siblings are open only to
3836 - positive numbers open to the relative depth indicated by the
3837 number, but do not force already opened subtopics to be closed.
3838 - 0 means to close topic - hide all offspring.
3840 apply prior element to all siblings at current level, *up to*
3841 those siblings that would be covered by specs following the `:'
3842 on the list. Ie, apply to all topics at level but the last
3843 ones. \(Only first of multiple colons at same level is
3844 respected - subsequent ones are discarded.)
3845 * - completely opens the topic, including bodies.
3846 + - shows all the sub headers, but not the bodies
3847 - - exposes the body of the corresponding topic.
3850 \(outline-expose-topic '(-1 : 0))
3851 Close this and all following topics at current level, exposing
3852 only their immediate children, but close down the last topic
3853 at this current level completely.
3854 \(outline-expose-topic '(-1 () : 1 0))
3855 Close current topic so only the immediate subtopics are shown;
3856 show the children in the second to last topic, and completely
3858 \(outline-expose-topic '(-2 : -1 *))
3859 Expose children and grandchildren of all topics at current
3860 level except the last two; expose children of the second to
3861 last and completely open the last one."
3863 (interactive "xExposure spec: ")
3864 (if (not (listp spec
))
3866 (let ((depth (outline-depth))
3873 (setq prev-elem curr-elem
3874 curr-elem
(car spec
)
3876 (cond ; Do current element:
3877 ((null curr-elem
) nil
)
3878 ((symbolp curr-elem
)
3879 (cond ((eq curr-elem
'*) (outline-show-current-subtree)
3880 (if (> outline-recent-end-of-subtree max-pos
)
3881 (setq max-pos outline-recent-end-of-subtree
)))
3882 ((eq curr-elem
'+) (outline-show-current-branches)
3883 (if (> outline-recent-end-of-subtree max-pos
)
3884 (setq max-pos outline-recent-end-of-subtree
)))
3885 ((eq curr-elem
'-
) (outline-show-current-entry))
3888 ;; Expand the `repeat' spec to an explicit version,
3889 ;; w.r.t. remaining siblings:
3890 (let ((residue ; = # of sibs not covered by remaining spec
3891 ;; Dang - could be nice to make use of the chart, sigh:
3892 (- (length (outline-chart-siblings))
3895 ;; Some residue - cover it with prev-elem:
3896 (setq spec
(append (make-list residue prev-elem
)
3898 ((numberp curr-elem
)
3899 (if (and (>= 0 curr-elem
) (outline-visible-p))
3900 (save-excursion (outline-hide-current-subtree t
)
3903 (if (> outline-recent-end-of-subtree max-pos
)
3905 outline-recent-end-of-subtree
)))))
3906 (if (> (abs curr-elem
) 0)
3907 (progn (outline-show-children (abs curr-elem
))
3908 (if (> outline-recent-end-of-subtree max-pos
)
3909 (setq max-pos outline-recent-end-of-subtree
)))))
3911 (if (outline-descend-to-depth (1+ depth
))
3912 (let ((got (outline-expose-topic curr-elem
)))
3913 (if (and got
(> got max-pos
)) (setq max-pos got
))))))
3914 (cond (stay (setq stay nil
))
3915 ((listp (car spec
)) nil
)
3916 ((> max-pos
(point))
3917 ;; Capitalize on max-pos state to get us nearer next sibling:
3918 (progn (goto-char (min (point-max) max-pos
))
3919 (outline-next-heading)))
3920 ((outline-next-sibling depth
))))
3922 ;;;_ > outline-old-expose-topic (spec &rest followers)
3923 (defun outline-old-expose-topic (spec &rest followers
)
3925 "Deprecated. Use outline-expose-topic \(with different schema
3928 Dictate wholesale exposure scheme for current topic, according to SPEC.
3930 SPEC is either a number or a list. Optional successive args
3931 dictate exposure for subsequent siblings of current topic.
3933 A simple spec (either a number, a special symbol, or the null list)
3934 dictates the overall exposure for a topic. Non null lists are
3935 composite specs whose first element dictates the overall exposure for
3936 a topic, with the subsequent elements in the list interpreted as specs
3937 that dictate the exposure for the successive offspring of the topic.
3939 Simple (numeric and null-list) specs are interpreted as follows:
3941 - Numbers indicate the relative depth to open the corresponding topic:
3942 - negative numbers force the topic to be close before opening to the
3943 absolute value of the number.
3944 - positive numbers just open to the relative depth indicated by the number.
3946 - `*' completely opens the topic, including bodies.
3947 - `+' shows all the sub headers, but not the bodies
3948 - `-' exposes the body and immediate offspring of the corresponding topic.
3950 If the spec is a list, the first element must be a number, which
3951 dictates the exposure depth of the topic as a whole. Subsequent
3952 elements of the list are nested SPECs, dictating the specific exposure
3953 for the corresponding offspring of the topic.
3955 Optional FOLLOWER arguments dictate exposure for succeeding siblings."
3957 (interactive "xExposure spec: ")
3958 (let ((depth (outline-current-depth))
3961 (cond ((null spec
) nil
)
3963 (if (eq spec
'*) (outline-show-current-subtree))
3964 (if (eq spec
'+) (outline-show-current-branches))
3965 (if (eq spec
'-
) (outline-show-current-entry)))
3968 (save-excursion (outline-hide-current-subtree t
)
3970 (if (or (not max-pos
)
3971 (> (point) max-pos
))
3972 (setq max-pos
(point)))
3974 (setq spec
(* -
1 spec
)))))
3976 (outline-show-children spec
)))
3978 ;(let ((got (outline-old-expose-topic (car spec))))
3979 ; (if (and got (or (not max-pos) (> got max-pos)))
3980 ; (setq max-pos got)))
3981 (let ((new-depth (+ (outline-current-depth) 1))
3983 (setq max-pos
(outline-old-expose-topic (car spec
)))
3984 (setq spec
(cdr spec
))
3986 (outline-descend-to-depth new-depth
)
3987 (not (outline-hidden-p)))
3988 (progn (setq got
(apply 'outline-old-expose-topic spec
))
3989 (if (and got
(or (not max-pos
) (> got max-pos
)))
3990 (setq max-pos got
)))))))
3991 (while (and followers
3992 (progn (if (and max-pos
(< (point) max-pos
))
3993 (progn (goto-char max-pos
)
3994 (setq max-pos nil
)))
3996 (outline-next-sibling depth
)))
3997 (outline-old-expose-topic (car followers
))
3998 (setq followers
(cdr followers
)))
4000 ;;;_ > outline-new-exposure '()
4001 (defmacro outline-new-exposure
(&rest spec
)
4002 "Literal frontend for `outline-expose-topic', doesn't evaluate arguments.
4003 Some arguments that would need to be quoted in outline-expose-topic
4004 need not be quoted in outline-new-exposure.
4006 Cursor is left at start position.
4008 Use this instead of obsolete `outline-exposure'.
4011 \(outline-exposure (-1 () () () 1) 0)
4012 Close current topic at current level so only the immediate
4013 subtopics are shown, except also show the children of the
4014 third subtopic; and close the next topic at the current level.
4015 \(outline-exposure : -1 0)
4016 Close all topics at current level to expose only their
4017 immediate children, except for the last topic at the current
4018 level, in which even its immediate children are hidden.
4019 \(outline-exposure -2 : -1 *)
4020 Expose children and grandchildren of first topic at current
4021 level, and expose children of subsequent topics at current
4022 level *except* for the last, which should be opened completely."
4023 (list 'save-excursion
4024 '(if (not (or (outline-goto-prefix)
4025 (outline-next-heading)))
4026 (error "outline-new-exposure: Can't find any outline topics."))
4027 (list 'outline-expose-topic
(list 'quote spec
))))
4028 ;;;_ > outline-exposure '()
4029 (defmacro outline-exposure
(&rest spec
)
4030 "Being deprecated - use more recent `outline-new-exposure' instead.
4032 Literal frontend for `outline-old-expose-topic', doesn't evaluate arguments
4033 and retains start position."
4034 (list 'save-excursion
4035 '(if (not (or (outline-goto-prefix)
4036 (outline-next-heading)))
4037 (error "Can't find any outline topics."))
4038 (cons 'outline-old-expose-topic
4039 (mapcar (function (lambda (x) (list 'quote x
))) spec
))))
4041 ;;;_ #7 Systematic outline presentation - copying, printing, flattening
4043 ;;;_ - Mapping and processing of topics
4044 ;;;_ ( See also Subtree Charting, in Navigation code.)
4045 ;;;_ > outline-stringify-flat-index (flat-index)
4046 (defun outline-stringify-flat-index (flat-index &optional context
)
4047 "Convert list representing section/subsection/... to document string.
4049 Optional arg CONTEXT indicates interior levels to include."
4053 (context-depth (or (and context
2) 1)))
4054 ;; Take care of the explicit context:
4055 (while (> context-depth
0)
4056 (setq numstr
(int-to-string (car flat-index
))
4057 flat-index
(cdr flat-index
)
4058 result
(if flat-index
4059 (cons delim
(cons numstr result
))
4060 (cons numstr result
))
4061 context-depth
(if flat-index
(1- context-depth
) 0)))
4063 ;; Take care of the indentation:
4070 (1+ (truncate (if (zerop (car flat-index
))
4072 (log10 (car flat-index
)))))
4075 (setq flat-index
(cdr flat-index
)))
4076 ;; Dispose of single extra delim:
4077 (setq result
(cdr result
))))
4078 (apply 'concat result
)))
4079 ;;;_ > outline-stringify-flat-index-plain (flat-index)
4080 (defun outline-stringify-flat-index-plain (flat-index)
4081 "Convert list representing section/subsection/... to document string."
4085 (setq result
(cons (int-to-string (car flat-index
))
4087 (cons delim result
))))
4088 (setq flat-index
(cdr flat-index
)))
4089 (apply 'concat result
)))
4090 ;;;_ > outline-stringify-flat-index-indented (flat-index)
4091 (defun outline-stringify-flat-index-indented (flat-index)
4092 "Convert list representing section/subsection/... to document string."
4096 ;; Take care of the explicit context:
4097 (setq numstr
(int-to-string (car flat-index
))
4098 flat-index
(cdr flat-index
)
4099 result
(if flat-index
4100 (cons delim
(cons numstr result
))
4101 (cons numstr result
)))
4103 ;; Take care of the indentation:
4110 (1+ (truncate (if (zerop (car flat-index
))
4112 (log10 (car flat-index
)))))
4115 (setq flat-index
(cdr flat-index
)))
4116 ;; Dispose of single extra delim:
4117 (setq result
(cdr result
))))
4118 (apply 'concat result
)))
4119 ;;;_ > outline-listify-exposed (&optional start end format)
4120 (defun outline-listify-exposed (&optional start end format
)
4122 "Produce a list representing exposed topics in current region.
4124 This list can then be used by `outline-process-exposed' to manipulate
4127 Optional START and END indicate bounds of region.
4129 optional arg, FORMAT, designates an alternate presentation form for
4132 list - Present prefix as numeric section.subsection..., starting with
4133 section indicated by the list, innermost nesting first.
4134 `indent' \(symbol) - Convert header prefixes to all white space,
4135 except for distinctive bullets.
4137 The elements of the list produced are lists that represents a topic
4138 header and body. The elements of that list are:
4140 - a number representing the depth of the topic,
4141 - a string representing the header-prefix, including trailing whitespace and
4143 - a string representing the bullet character,
4144 - and a series of strings, each containing one line of the exposed
4145 portion of the topic entry."
4151 (strings prefix pad result depth new-depth out gone-out bullet beg
4156 ;; Goto initial topic, and register preceeding stuff, if any:
4157 (if (> (outline-goto-prefix) start
)
4158 ;; First topic follows beginning point - register preliminary stuff:
4159 (setq result
(list (list 0 "" nil
4160 (buffer-substring start
(1- (point)))))))
4161 (while (and (not done
)
4162 (not (eobp)) ; Loop until we've covered the region.
4163 (not (> (point) end
)))
4164 (setq depth
(outline-recent-depth) ; Current topics depth,
4165 bullet
(outline-recent-bullet) ; ... bullet,
4166 prefix
(outline-recent-prefix)
4167 beg
(progn (outline-end-of-prefix t
) (point))) ; and beginning.
4168 (setq done
; The boundary for the current topic:
4169 (not (outline-next-visible-heading 1)))
4170 (setq new-depth
(outline-recent-depth))
4172 out
(< new-depth depth
))
4177 (while (> next
(point)) ; Get all the exposed text in
4179 (cons (buffer-substring
4181 ;To hidden text or end of line:
4183 (search-forward "\r"
4184 (save-excursion (end-of-line)
4187 (if (= (preceding-char) ?
\r)
4191 (if (< (point) next
) ; Resume from after hid text, if any.
4194 ;; Accumulate list for this topic:
4195 (setq strings
(nreverse strings
))
4199 (let ((special (if (string-match
4200 (regexp-quote bullet
)
4201 outline-distinctive-bullets-string
)
4203 (cond ((listp format
)
4205 (if outline-abbreviate-flattened-numbering
4206 (outline-stringify-flat-index format
4208 (outline-stringify-flat-index-plain
4212 ((eq format
'indent
)
4215 (concat (make-string (1+ depth
) ?
)
4216 (substring prefix -
1))
4219 (make-string depth ?
)
4221 (t (error "outline-listify-exposed: %s %s"
4222 "invalid format" format
))))
4223 (list depth prefix strings
))
4225 ;; Reasses format, if any:
4226 (if (and format
(listp format
))
4227 (cond ((= new-depth depth
)
4228 (setq format
(cons (1+ (car format
))
4230 ((> new-depth depth
) ; descending - assume by 1:
4231 (setq format
(cons 1 format
)))
4234 (while (< new-depth depth
)
4235 (setq format
(cdr format
))
4236 (setq depth
(1- depth
)))
4237 ; And increment the current one:
4239 (cons (1+ (or (car format
)
4242 ;; Put the list with first at front, to last at back:
4243 (nreverse result
))))
4244 ;;;_ > outline-process-exposed (&optional func from to frombuf
4246 (defun outline-process-exposed (&optional func from to frombuf tobuf
4247 format
&optional start-num
)
4248 "Map function on exposed parts of current topic; results to another buffer.
4250 All args are options; default values itemized below.
4252 Apply FUNCTION to exposed portions FROM position TO position in buffer
4253 FROMBUF to buffer TOBUF. Sixth optional arg, FORMAT, designates an
4254 alternate presentation form:
4256 `flat' - Present prefix as numeric section.subsection..., starting with
4257 section indicated by the start-num, innermost nesting first.
4258 X`flat-indented' - Prefix is like `flat' for first topic at each
4259 X level, but subsequent topics have only leaf topic
4260 X number, padded with blanks to line up with first.
4261 `indent' \(symbol) - Convert header prefixes to all white space,
4262 except for distinctive bullets.
4265 FUNCTION: `outline-insert-listified'
4266 FROM: region start, if region active, else start of buffer
4267 TO: region end, if region active, else end of buffer
4268 FROMBUF: current buffer
4269 TOBUF: buffer name derived: \"*current-buffer-name exposed*\"
4272 ; Resolve arguments,
4273 ; defaulting if necessary:
4274 (if (not func
) (setq func
'outline-insert-listified
))
4275 (if (not (and from to
))
4276 (if (my-region-active-p)
4277 (setq from
(region-beginning) to
(region-end))
4278 (setq from
(point-min) to
(point-max))))
4280 (if (not (bufferp frombuf
))
4281 ;; Specified but not a buffer - get it:
4282 (let ((got (get-buffer frombuf
)))
4284 (error (concat "outline-process-exposed: source buffer "
4287 (setq frombuf got
))))
4288 ;; not specified - default it:
4289 (setq frombuf
(current-buffer)))
4291 (if (not (bufferp tobuf
))
4292 (setq tobuf
(get-buffer-create tobuf
)))
4293 ;; not specified - default it:
4294 (setq tobuf
(concat "*" (buffer-name frombuf
) " exposed*")))
4299 (progn (set-buffer frombuf
)
4300 (outline-listify-exposed from to format
))))
4302 (mapcar func listified
)
4303 (pop-to-buffer tobuf
)))
4306 ;;;_ > outline-insert-listified (listified)
4307 (defun outline-insert-listified (listified)
4308 "Insert contents of listified outline portion in current buffer.
4310 Listified is a list representing each topic header and body:
4312 \`(depth prefix text)'
4314 or \`(depth prefix text bullet-plus)'
4316 If `bullet-plus' is specified, it is inserted just after the entire prefix."
4317 (setq listified
(cdr listified
))
4318 (let ((prefix (prog1
4320 (setq listified
(cdr listified
))))
4323 (setq listified
(cdr listified
))))
4324 (bullet-plus (car listified
)))
4325 (insert-string prefix
)
4326 (if bullet-plus
(insert-string (concat " " bullet-plus
)))
4328 (insert-string (car text
))
4329 (if (setq text
(cdr text
))
4330 (insert-string "\n")))
4331 (insert-string "\n")))
4332 ;;;_ > outline-copy-exposed-to-buffer (&optional arg tobuf format)
4333 (defun outline-copy-exposed-to-buffer (&optional arg tobuf format
)
4334 "Duplicate exposed portions of current outline to another buffer.
4336 Other buffer has current buffers name with \" exposed\" appended to it.
4338 With repeat count, copy the exposed parts of only the current topic.
4340 Optional second arg TOBUF is target buffer name.
4342 Optional third arg FORMAT, if non-nil, symbolically designates an
4343 alternate presentation format for the outline:
4345 `flat' - Convert topic header prefixes to numeric
4346 section.subsection... identifiers.
4347 `indent' - Convert header prefixes to all white space, except for
4348 distinctive bullets.
4349 `indent-flat' - The best of both - only the first of each level has
4350 the full path, the rest have only the section number
4351 of the leaf, preceded by the right amount of indentation."
4355 (setq tobuf
(get-buffer-create (concat "*" (buffer-name) " exposed*"))))
4356 (let* ((start-pt (point))
4357 (beg (if arg
(outline-back-to-current-heading) (point-min)))
4358 (end (if arg
(outline-end-of-current-subtree) (point-max)))
4359 (buf (current-buffer))
4361 (if (eq format
'flat
)
4362 (setq format
(if arg
(save-excursion
4364 (outline-topic-flat-index))
4366 (save-excursion (set-buffer tobuf
)(erase-buffer))
4367 (outline-process-exposed 'outline-insert-listified
4373 (goto-char (point-min))
4375 (goto-char start-pt
)))
4376 ;;;_ > outline-flatten-exposed-to-buffer (&optional arg tobuf)
4377 (defun outline-flatten-exposed-to-buffer (&optional arg tobuf
)
4378 "Present numeric outline of outline's exposed portions in another buffer.
4380 The resulting outline is not compatable with outline mode - use
4381 `outline-copy-exposed-to-buffer' if you want that.
4383 Use `outline-indented-exposed-to-buffer' for indented presentation.
4385 With repeat count, copy the exposed portions of only current topic.
4387 Other buffer has current buffers name with \" exposed\" appended to
4388 it, unless optional second arg TOBUF is specified, in which case it is
4391 (outline-copy-exposed-to-buffer arg tobuf
'flat
))
4392 ;;;_ > outline-indented-exposed-to-buffer (&optional arg tobuf)
4393 (defun outline-indented-exposed-to-buffer (&optional arg tobuf
)
4394 "Present indented outline of outline's exposed portions in another buffer.
4396 The resulting outline is not compatable with outline mode - use
4397 `outline-copy-exposed-to-buffer' if you want that.
4399 Use `outline-flatten-exposed-to-buffer' for numeric sectional presentation.
4401 With repeat count, copy the exposed portions of only current topic.
4403 Other buffer has current buffers name with \" exposed\" appended to
4404 it, unless optional second arg TOBUF is specified, in which case it is
4407 (outline-copy-exposed-to-buffer arg tobuf
'indent
))
4409 ;;;_ - LaTeX formatting
4410 ;;;_ > outline-latex-verb-quote (str &optional flow)
4411 (defun outline-latex-verb-quote (str &optional flow
)
4412 "Return copy of STRING for literal reproduction across latex processing.
4413 Expresses the original characters \(including carriage returns) of the
4414 string across latex processing."
4415 (mapconcat (function
4417 (cond ((memq char
'(?
\\ ?$ ?% ?
# ?
& ?
{ ?
} ?_ ?^ ?- ?
*))
4418 (concat "\\char" (number-to-string char
) "{}"))
4419 ((= char ?
\n) "\\\\")
4420 (t (char-to-string char
)))))
4423 ;;;_ > outline-latex-verbatim-quote-curr-line ()
4424 (defun outline-latex-verbatim-quote-curr-line ()
4425 "Express line for exact \(literal) representation across latex processing.
4427 Adjust line contents so it is unaltered \(from the original line)
4428 across latex processing, within the context of a `verbatim'
4429 environment. Leaves point at the end of the line."
4432 (end (progn (end-of-line)(point))))
4434 (while (re-search-forward "\\\\"
4435 ;;"\\\\\\|\\{\\|\\}\\|\\_\\|\\$\\|\\\"\\|\\&\\|\\^\\|\\-\\|\\*\\|#"
4436 end
; bounded by end-of-line
4437 1) ; no matches, move to end & return nil
4438 (goto-char (match-beginning 0))
4439 (insert-string "\\")
4441 (goto-char (1+ (match-end 0))))))
4442 ;;;_ > outline-insert-latex-header (buf)
4443 (defun outline-insert-latex-header (buf)
4444 "Insert initial latex commands at point in BUFFER."
4445 ;; Much of this is being derived from the stuff in appendix of E in
4446 ;; the TeXBook, pg 421.
4448 (let ((doc-style (format "\n\\documentstyle{%s}\n"
4450 (page-numbering (if outline-number-pages
4451 "\\pagestyle{empty}\n"
4453 (linesdef (concat "\\def\\beginlines{"
4454 "\\par\\begingroup\\nobreak\\medskip"
4456 " \\kern1pt\\nobreak \\obeylines \\obeyspaces "
4457 "\\everypar{\\strut}}\n"
4459 "\\kern1pt\\endgroup\\medbreak\\noindent}\n"))
4460 (titlecmd (format "\\newcommand{\\titlecmd}[1]{{%s #1}}\n"
4461 outline-title-style
))
4462 (labelcmd (format "\\newcommand{\\labelcmd}[1]{{%s #1}}\n"
4463 outline-label-style
))
4464 (headlinecmd (format "\\newcommand{\\headlinecmd}[1]{{%s #1}}\n"
4465 outline-head-line-style
))
4466 (bodylinecmd (format "\\newcommand{\\bodylinecmd}[1]{{%s #1}}\n"
4467 outline-body-line-style
))
4468 (setlength (format "%s%s%s%s"
4469 "\\newlength{\\stepsize}\n"
4470 "\\setlength{\\stepsize}{"
4473 (oneheadline (format "%s%s%s%s%s%s%s"
4474 "\\newcommand{\\OneHeadLine}[3]{%\n"
4476 "\\hspace*{#2\\stepsize}%\n"
4477 "\\labelcmd{#1}\\hspace*{.2cm}"
4478 "\\headlinecmd{#3}\\\\["
4481 (onebodyline (format "%s%s%s%s%s%s"
4482 "\\newcommand{\\OneBodyLine}[2]{%\n"
4484 "\\hspace*{#1\\stepsize}%\n"
4485 "\\bodylinecmd{#2}\\\\["
4488 (begindoc "\\begin{document}\n\\begin{center}\n")
4489 (title (format "%s%s%s%s"
4491 (outline-latex-verb-quote (if outline-title
4493 (eval outline-title
)
4494 ('error
"<unnamed buffer>"))
4497 "\\end{center}\n\n"))
4498 (hsize "\\hsize = 7.5 true in\n")
4499 (hoffset "\\hoffset = -1.5 true in\n")
4500 (vspace "\\vspace{.1cm}\n\n"))
4501 (insert (concat doc-style
4516 ;;;_ > outline-insert-latex-trailer (buf)
4517 (defun outline-insert-latex-trailer (buf)
4518 "Insert concluding latex commands at point in BUFFER."
4520 (insert "\n\\end{document}\n"))
4521 ;;;_ > outline-latexify-one-item (depth prefix bullet text)
4522 (defun outline-latexify-one-item (depth prefix bullet text
)
4523 "Insert LaTeX commands for formatting one outline item.
4525 Args are the topics numeric DEPTH, the header PREFIX lead string, the
4526 BULLET string, and a list of TEXT strings for the body."
4527 (let* ((head-line (if text
(car text
)))
4528 (body-lines (cdr text
))
4532 (insert-string (concat "\\OneHeadLine{\\verb\1 "
4533 (outline-latex-verb-quote bullet
)
4538 (outline-latex-verb-quote head-line
)
4541 (if (not body-lines
)
4543 ;;(insert-string "\\beginlines\n")
4544 (insert-string "\\begin{verbatim}\n")
4546 (setq curr-line
(car body-lines
))
4547 (if (and (not body-content
)
4548 (not (string-match "^\\s-*$" curr-line
)))
4549 (setq body-content t
))
4550 ; Mangle any occurrences of
4551 ; "\end{verbatim}" in text,
4553 (if (and body-content
4554 (setq bop
(string-match "\\end{verbatim}" curr-line
)))
4555 (setq curr-line
(concat (substring curr-line
0 bop
)
4557 (substring curr-line bop
))))
4558 ;;(insert-string "|" (car body-lines) "|")
4559 (insert-string curr-line
)
4560 (outline-latex-verbatim-quote-curr-line)
4561 (insert-string "\n")
4562 (setq body-lines
(cdr body-lines
)))
4564 (setq body-content nil
)
4566 (insert-string "\\ ")
4568 ;;(insert-string "\\endlines\n")
4569 (insert-string "\\end{verbatim}\n")
4571 ;;;_ > outline-latexify-exposed (arg &optional tobuf)
4572 (defun outline-latexify-exposed (arg &optional tobuf
)
4573 "Format current topics exposed portions to TOBUF for latex processing.
4574 TOBUF defaults to a buffer named the same as the current buffer, but
4575 with \"*\" prepended and \" latex-formed*\" appended.
4577 With repeat count, copy the exposed portions of entire buffer."
4582 (get-buffer-create (concat "*" (buffer-name) " latexified*"))))
4583 (let* ((start-pt (point))
4584 (beg (if arg
(point-min) (outline-back-to-current-heading)))
4585 (end (if arg
(point-max) (outline-end-of-current-subtree)))
4586 (buf (current-buffer)))
4589 (outline-insert-latex-header tobuf
)
4590 (goto-char (point-max))
4591 (outline-process-exposed 'outline-latexify-one-item
4596 (goto-char (point-max))
4597 (outline-insert-latex-trailer tobuf
)
4598 (goto-char (point-min))
4600 (goto-char start-pt
)))
4602 ;;;_ #8 miscellaneous
4603 ;;;_ > outline-mark-topic ()
4604 (defun outline-mark-topic ()
4605 "Put the region around topic currently containing point."
4608 (outline-goto-prefix)
4610 (outline-end-of-current-subtree)
4611 (exchange-point-and-mark))
4612 ;;;_ > outlineify-sticky ()
4613 ;; outlinify-sticky is correct spelling; provide this alias for sticklers:
4614 (defalias 'outlinify-sticky
'outlineify-sticky
)
4615 (defun outlineify-sticky (&optional arg
)
4616 "Activate outline mode and establish file var so it is started subsequently.
4618 See doc-string for `outline-layout' and `outline-init' for details on
4619 setup for auto-startup."
4626 (goto-char (point-min))
4627 (if (looking-at outline-regexp
)
4629 (outline-open-topic 2)
4630 (insert-string (concat "Dummy outline topic header - see"
4631 "`outline-mode' docstring: `^Hm'."))
4633 (goto-char (point-max))
4635 (outline-open-topic 0)
4636 (insert-string "Local emacs vars.\n")
4637 (outline-open-topic 1)
4638 (insert-string "(`outline-layout' is for allout.el outline-mode)\n")
4639 (outline-open-topic 0)
4640 (insert-string "Local variables:\n")
4641 (outline-open-topic 0)
4642 (insert-string (format "outline-layout: %s\n"
4645 (outline-open-topic 0)
4646 (insert-string "End:\n"))))
4647 ;;;_ > solicit-char-in-string (prompt string &optional do-defaulting)
4648 (defun solicit-char-in-string (prompt string
&optional do-defaulting
)
4649 "Solicit (with first arg PROMPT) choice of a character from string STRING.
4651 Optional arg DO-DEFAULTING indicates to accept empty input (CR)."
4653 (let ((new-prompt prompt
)
4657 (message "%s" new-prompt
)
4659 ;; We do our own reading here, so we can circumvent, eg, special
4660 ;; treatment for `?' character. (Oughta use minibuffer keymap instead.)
4662 (char-to-string (let ((cursor-in-echo-area nil
)) (read-char))))
4665 (cond ((string-match (regexp-quote got
) string
) got
)
4666 ((and do-defaulting
(string= got
"\r"))
4667 ;; Return empty string to default:
4669 ((string= got
"\C-g") (signal 'quit nil
))
4671 (setq new-prompt
(concat prompt
4677 ;; got something out of loop - return it:
4680 ;;;_ > regexp-sans-escapes (string)
4681 (defun regexp-sans-escapes (regexp &optional successive-backslashes
)
4682 "Return a copy of REGEXP with all character escapes stripped out.
4684 Representations of actual backslashes - '\\\\\\\\' - are left as a
4687 Optional arg SUCCESSIVE-BACKSLASHES is used internally for recursion."
4689 (if (string= regexp
"")
4691 ;; Set successive-backslashes to number if current char is
4692 ;; backslash, or else to nil:
4693 (setq successive-backslashes
4694 (if (= (aref regexp
0) ?
\\)
4695 (if successive-backslashes
(1+ successive-backslashes
) 1)
4697 (if (or (not successive-backslashes
) (= 2 successive-backslashes
))
4698 ;; Include first char:
4699 (concat (substring regexp
0 1)
4700 (regexp-sans-escapes (substring regexp
1)))
4701 ;; Exclude first char, but maintain count:
4702 (regexp-sans-escapes (substring regexp
1) successive-backslashes
))))
4703 ;;;_ > my-region-active-p ()
4704 (defmacro my-region-active-p
()
4705 (if (fboundp 'region-active-p
)
4708 ;;;_ - add-hook definition for divergent emacsen
4709 ;;;_ > add-hook (hook function &optional append)
4710 (if (not (fboundp 'add-hook
))
4711 (defun add-hook (hook function
&optional append
)
4712 "Add to the value of HOOK the function FUNCTION unless already present.
4713 \(It becomes the first hook on the list unless optional APPEND is non-nil, in
4714 which case it becomes the last). HOOK should be a symbol, and FUNCTION may be
4715 any valid function. HOOK's value should be a list of functions, not a single
4716 function. If HOOK is void, it is first set to nil."
4717 (or (boundp hook
) (set hook nil
))
4718 (or (if (consp function
)
4719 ;; Clever way to tell whether a given lambda-expression
4720 ;; is equal to anything in the hook.
4721 (let ((tail (assoc (cdr function
) (symbol-value hook
))))
4722 (equal function tail
))
4723 (memq function
(symbol-value hook
)))
4726 (nconc (symbol-value hook
) (list function
))
4727 (cons function
(symbol-value hook
)))))))
4728 ;;;_ : my-mark-marker to accomodate divergent emacsen:
4729 (defun my-mark-marker (&optional force buffer
)
4730 "Accomodate the different signature for mark-marker across emacsen.
4732 GNU XEmacs takes two optional args, while mainline GNU Emacs does not,
4733 so pass them along when appropriate."
4734 (if (string-match " XEmacs " emacs-version
)
4735 (mark-marker force buffer
)
4738 ;;;_ #9 Under development
4739 ;;;_ > outline-bullet-isearch (&optional bullet)
4740 (defun outline-bullet-isearch (&optional bullet
)
4741 "Isearch \(regexp) for topic with bullet BULLET."
4744 (setq bullet
(solicit-char-in-string
4745 "ISearch for topic with bullet: "
4746 (regexp-sans-escapes outline-bullets-string
))))
4748 (let ((isearch-regexp t
)
4749 (isearch-string (concat "^"
4750 outline-header-prefix
4753 (isearch-repeat 'forward
)
4755 ;;;_ ? Re hooking up with isearch - use isearch-op-fun rather than
4756 ;;; wrapping the isearch functions.
4758 ;;;_* Local emacs vars.
4759 ;;; The following `outline-layout' local variable setting:
4760 ;;; - closes all topics from the first topic to just before the third-to-last,
4761 ;;; - shows the children of the third to last (config vars)
4762 ;;; - and the second to last (code section),
4763 ;;; - and closes the last topic (this local-variables section).
4765 ;;;outline-layout: (0 : -1 -1 0)
4768 ;; allout.el ends here