home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / lisp / outline.el < prev    next >
Lisp/Scheme  |  1996-09-28  |  20KB  |  555 lines

  1. ;;; outline.el --- outline mode commands for Emacs
  2. ;; Copyright (C) 1986, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. ;; Maintainer: FSF
  5.  
  6. ;; This file is part of GNU Emacs.
  7.  
  8. ;; GNU Emacs is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 2, or (at your option)
  11. ;; any later version.
  12.  
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ;; GNU General Public License for more details.
  17.  
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  20. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. ;;; Commentary:
  23.  
  24. ;; This package is a major mode for editing outline-format documents.
  25. ;; An outline can be `abstracted' to show headers at any given level,
  26. ;; with all stuff below hidden.  See the Emacs manual for details.
  27.  
  28. ;;; Code:
  29.  
  30. ;; Jan '86, Some new features added by Peter Desnoyers and rewritten by RMS.
  31.   
  32. (defvar outline-regexp nil
  33.   "*Regular expression to match the beginning of a heading.
  34. Any line whose beginning matches this regexp is considered to start a heading.
  35. The recommended way to set this is with a Local Variables: list
  36. in the file it applies to.  See also outline-heading-end-regexp.")
  37.  
  38. ;; Can't initialize this in the defvar above -- some major modes have
  39. ;; already assigned a local value to it.
  40. (or (default-value 'outline-regexp)
  41.     (setq-default outline-regexp "[*\^L]+"))
  42.   
  43. (defvar outline-heading-end-regexp "[\n\^M]"
  44.   "*Regular expression to match the end of a heading line.
  45. You can assume that point is at the beginning of a heading when this
  46. regexp is searched for.  The heading ends at the end of the match.
  47. The recommended way to set this is with a \"Local Variables:\" list
  48. in the file it applies to.")
  49.  
  50. (defvar outline-mode-prefix-map nil)
  51.  
  52. (if outline-mode-prefix-map
  53.     nil
  54.   (setq outline-mode-prefix-map (make-sparse-keymap))
  55.   (define-key outline-mode-prefix-map "\C-n" 'outline-next-visible-heading)
  56.   (define-key outline-mode-prefix-map "\C-p" 'outline-previous-visible-heading)
  57.   (define-key outline-mode-prefix-map "\C-i" 'show-children)
  58.   (define-key outline-mode-prefix-map "\C-s" 'show-subtree)
  59.   (define-key outline-mode-prefix-map "\C-d" 'hide-subtree)
  60.   (define-key outline-mode-prefix-map "\C-u" 'outline-up-heading)
  61.   (define-key outline-mode-prefix-map "\C-f" 'outline-forward-same-level)
  62.   (define-key outline-mode-prefix-map "\C-b" 'outline-backward-same-level)
  63.   (define-key outline-mode-prefix-map "\C-t" 'hide-body)
  64.   (define-key outline-mode-prefix-map "\C-a" 'show-all)
  65.   (define-key outline-mode-prefix-map "\C-c" 'hide-entry)
  66.   (define-key outline-mode-prefix-map "\C-e" 'show-entry)
  67.   (define-key outline-mode-prefix-map "\C-l" 'hide-leaves)
  68.   (define-key outline-mode-prefix-map "\C-k" 'show-branches)
  69.   (define-key outline-mode-prefix-map "\C-q" 'hide-sublevels)
  70.   (define-key outline-mode-prefix-map "\C-o" 'hide-other))
  71.  
  72. (defvar outline-mode-menu-bar-map nil)
  73. (if outline-mode-menu-bar-map
  74.     nil
  75.   (setq outline-mode-menu-bar-map (make-sparse-keymap))
  76.  
  77.   (define-key outline-mode-menu-bar-map [hide]
  78.     (cons "Hide" (make-sparse-keymap "Hide")))
  79.  
  80.   (define-key outline-mode-menu-bar-map [hide hide-other]
  81.     '("Hide Other" . hide-other))
  82.   (define-key outline-mode-menu-bar-map [hide hide-sublevels]
  83.     '("Hide Sublevels" . hide-sublevels))
  84.   (define-key outline-mode-menu-bar-map [hide hide-subtree]
  85.     '("Hide Subtree" . hide-subtree))
  86.   (define-key outline-mode-menu-bar-map [hide hide-entry]
  87.     '("Hide Entry" . hide-entry))
  88.   (define-key outline-mode-menu-bar-map [hide hide-body]
  89.     '("Hide Body" . hide-body))
  90.   (define-key outline-mode-menu-bar-map [hide hide-leaves]
  91.     '("Hide Leaves" . hide-leaves))
  92.  
  93.   (define-key outline-mode-menu-bar-map [show]
  94.     (cons "Show" (make-sparse-keymap "Show")))
  95.  
  96.   (define-key outline-mode-menu-bar-map [show show-subtree]
  97.     '("Show Subtree" . show-subtree))
  98.   (define-key outline-mode-menu-bar-map [show show-children]
  99.     '("Show Children" . show-children))
  100.   (define-key outline-mode-menu-bar-map [show show-branches]
  101.     '("Show Branches" . show-branches))
  102.   (define-key outline-mode-menu-bar-map [show show-entry]
  103.     '("Show Entry" . show-entry))
  104.   (define-key outline-mode-menu-bar-map [show show-all]
  105.     '("Show All" . show-all))
  106.  
  107.   (define-key outline-mode-menu-bar-map [headings]
  108.     (cons "Headings" (make-sparse-keymap "Headings")))
  109.  
  110.   (define-key outline-mode-menu-bar-map [headings outline-backward-same-level]
  111.     '("Previous Same Level" . outline-backward-same-level))
  112.   (define-key outline-mode-menu-bar-map [headings outline-forward-same-level]
  113.     '("Next Same Level" . outline-forward-same-level))
  114.   (define-key outline-mode-menu-bar-map [headings outline-previous-visible-heading]
  115.     '("Previous" . outline-previous-visible-heading))
  116.   (define-key outline-mode-menu-bar-map [headings outline-next-visible-heading]
  117.     '("Next" . outline-next-visible-heading))
  118.   (define-key outline-mode-menu-bar-map [headings outline-up-heading]
  119.     '("Up" . outline-up-heading)))
  120.  
  121. (defvar outline-mode-map nil "")
  122.  
  123. (if outline-mode-map
  124.     nil
  125.   (setq outline-mode-map (nconc (make-sparse-keymap) text-mode-map))
  126.   (define-key outline-mode-map "\C-c" outline-mode-prefix-map)
  127.   (define-key outline-mode-map [menu-bar] outline-mode-menu-bar-map))
  128.  
  129. (defvar outline-minor-mode nil
  130.   "Non-nil if using Outline mode as a minor mode of some other mode.")
  131. (make-variable-buffer-local 'outline-minor-mode)
  132. (put 'outline-minor-mode 'permanent-local t)
  133. (or (assq 'outline-minor-mode minor-mode-alist)
  134.     (setq minor-mode-alist (append minor-mode-alist
  135.                    (list '(outline-minor-mode " Outl")))))
  136.  
  137. ;;;###autoload
  138. (defun outline-mode ()
  139.   "Set major mode for editing outlines with selective display.
  140. Headings are lines which start with asterisks: one for major headings,
  141. two for subheadings, etc.  Lines not starting with asterisks are body lines. 
  142.  
  143. Body text or subheadings under a heading can be made temporarily
  144. invisible, or visible again.  Invisible lines are attached to the end 
  145. of the heading, so they move with it, if the line is killed and yanked
  146. back.  A heading with text hidden under it is marked with an ellipsis (...).
  147.  
  148. Commands:\\<outline-mode-map>
  149. \\[outline-next-visible-heading]   outline-next-visible-heading      move by visible headings
  150. \\[outline-previous-visible-heading]   outline-previous-visible-heading
  151. \\[outline-forward-same-level]   outline-forward-same-level        similar but skip subheadings
  152. \\[outline-backward-same-level]   outline-backward-same-level
  153. \\[outline-up-heading]   outline-up-heading            move from subheading to heading
  154.  
  155. \\[hide-body]    make all text invisible (not headings).
  156. \\[show-all]    make everything in buffer visible.
  157.  
  158. The remaining commands are used when point is on a heading line.
  159. They apply to some of the body or subheadings of that heading.
  160. \\[hide-subtree]   hide-subtree    make body and subheadings invisible.
  161. \\[show-subtree]   show-subtree    make body and subheadings visible.
  162. \\[show-children]   show-children    make direct subheadings visible.
  163.          No effect on body, or subheadings 2 or more levels down.
  164.          With arg N, affects subheadings N levels down.
  165. \\[hide-entry]       make immediately following body invisible.
  166. \\[show-entry]       make it visible.
  167. \\[hide-leaves]       make body under heading and under its subheadings invisible.
  168.              The subheadings remain visible.
  169. \\[show-branches]  make all subheadings at all levels visible.
  170.  
  171. The variable `outline-regexp' can be changed to control what is a heading.
  172. A line is a heading if `outline-regexp' matches something at the
  173. beginning of the line.  The longer the match, the deeper the level.
  174.  
  175. Turning on outline mode calls the value of `text-mode-hook' and then of
  176. `outline-mode-hook', if they are non-nil."
  177.   (interactive)
  178.   (kill-all-local-variables)
  179.   (setq selective-display t)
  180.   (use-local-map outline-mode-map)
  181.   (setq mode-name "Outline")
  182.   (setq major-mode 'outline-mode)
  183.   (define-abbrev-table 'text-mode-abbrev-table ())
  184.   (setq local-abbrev-table text-mode-abbrev-table)
  185.   (set-syntax-table text-mode-syntax-table)
  186.   (make-local-variable 'paragraph-start)
  187.   (setq paragraph-start (concat paragraph-start "\\|^\\("
  188.                 outline-regexp "\\)"))
  189.   ;; Inhibit auto-filling of header lines.
  190.   (make-local-variable 'auto-fill-inhibit-regexp)
  191.   (setq auto-fill-inhibit-regexp outline-regexp)
  192.   (make-local-variable 'paragraph-separate)
  193.   (setq paragraph-separate (concat paragraph-separate "\\|^\\("
  194.                    outline-regexp "\\)"))
  195.   (make-local-variable 'change-major-mode-hook)
  196.   (add-hook 'change-major-mode-hook 'show-all)
  197.   (run-hooks 'text-mode-hook 'outline-mode-hook))
  198.  
  199. (defvar outline-minor-mode-prefix "\C-c\C-o"
  200.   "*Prefix key to use for Outline commands in Outline minor mode.
  201. The value of this variable is checked as part of loading Outline mode.
  202. After that, changing the prefix key requires manipulating keymaps.")
  203.  
  204. (defvar outline-minor-mode-map nil)
  205. (if outline-minor-mode-map
  206.     nil
  207.   (setq outline-minor-mode-map (make-sparse-keymap))
  208.   (define-key outline-minor-mode-map [menu-bar]
  209.     outline-mode-menu-bar-map)
  210.   (define-key outline-minor-mode-map outline-minor-mode-prefix
  211.     outline-mode-prefix-map))
  212.  
  213. (or (assq 'outline-minor-mode minor-mode-map-alist)
  214.     (setq minor-mode-map-alist
  215.       (cons (cons 'outline-minor-mode outline-minor-mode-map)
  216.         minor-mode-map-alist)))
  217.  
  218. ;;;###autoload
  219. (defun outline-minor-mode (&optional arg)
  220.   "Toggle Outline minor mode.
  221. With arg, turn Outline minor mode on if arg is positive, off otherwise.
  222. See the command `outline-mode' for more information on this mode."
  223.   (interactive "P")
  224.   (setq outline-minor-mode
  225.     (if (null arg) (not outline-minor-mode)
  226.       (> (prefix-numeric-value arg) 0)))
  227.   (if outline-minor-mode
  228.       (progn
  229.     (setq selective-display t)
  230.     (run-hooks 'outline-minor-mode-hook))
  231.     (setq selective-display nil))
  232.   ;; When turning off outline mode, get rid of any ^M's.
  233.   (or outline-minor-mode
  234.       (outline-flag-region (point-min) (point-max) ?\n))
  235.   (set-buffer-modified-p (buffer-modified-p)))
  236.  
  237. (defvar outline-level 'outline-level
  238.   "Function of no args to compute a header's nesting level in an outline.
  239. It can assume point is at the beginning of a header line.")
  240.  
  241. ;; This used to count columns rather than characters, but that made ^L
  242. ;; appear to be at level 2 instead of 1.  Columns would be better for
  243. ;; tab handling, but the default regexp doesn't use tabs, and anyone
  244. ;; who changes the regexp can also redefine the outline-level variable
  245. ;; as appropriate.
  246. (defun outline-level ()
  247.   "Return the depth to which a statement is nested in the outline.
  248. Point must be at the beginning of a header line.  This is actually
  249. the number of characters that `outline-regexp' matches."
  250.   (save-excursion
  251.     (looking-at outline-regexp)
  252.     (- (match-end 0) (match-beginning 0))))
  253.  
  254. (defun outline-next-preface ()
  255.   "Skip forward to just before the next heading line.
  256. If there's no following heading line, stop before the newline
  257. at the end of the buffer."
  258.   (if (re-search-forward (concat "[\n\^M]\\(" outline-regexp "\\)")
  259.              nil 'move)
  260.       (goto-char (match-beginning 0)))
  261.   (if (memq (preceding-char) '(?\n ?\^M))
  262.       (forward-char -1)))
  263.  
  264. (defun outline-next-heading ()
  265.   "Move to the next (possibly invisible) heading line."
  266.   (interactive)
  267.   (if (re-search-forward (concat "[\n\^M]\\(" outline-regexp "\\)")
  268.              nil 'move)
  269.       (goto-char (1+ (match-beginning 0)))))
  270.  
  271. (defun outline-back-to-heading ()
  272.   "Move to previous heading line, or beg of this line if it's a heading.
  273. Only visible heading lines are considered."
  274.   (beginning-of-line)
  275.   (or (outline-on-heading-p)
  276.       (re-search-backward (concat "^\\(" outline-regexp "\\)") nil t)
  277.       (error "before first heading")))
  278.  
  279. (defun outline-on-heading-p ()
  280.   "Return t if point is on a (visible) heading line."
  281.   (save-excursion
  282.     (beginning-of-line)
  283.     (and (bolp)
  284.      (looking-at outline-regexp))))
  285.  
  286. (defun outline-end-of-heading ()
  287.   (if (re-search-forward outline-heading-end-regexp nil 'move)
  288.       (forward-char -1)))
  289.  
  290. (defun outline-next-visible-heading (arg)
  291.   "Move to the next visible heading line.
  292. With argument, repeats or can move backward if negative.
  293. A heading line is one that starts with a `*' (or that
  294. `outline-regexp' matches)."
  295.   (interactive "p")
  296.   (if (< arg 0)
  297.       (beginning-of-line)
  298.     (end-of-line))
  299.   (or (re-search-forward (concat "^\\(" outline-regexp "\\)") nil t arg)
  300.       (error ""))
  301.   (beginning-of-line))
  302.  
  303. (defun outline-previous-visible-heading (arg)
  304.   "Move to the previous heading line.
  305. With argument, repeats or can move forward if negative.
  306. A heading line is one that starts with a `*' (or that
  307. `outline-regexp' matches)."
  308.   (interactive "p")
  309.   (outline-next-visible-heading (- arg)))
  310.  
  311. (defun outline-flag-region (from to flag)
  312.   "Hides or shows lines from FROM to TO, according to FLAG.
  313. If FLAG is `\\n' (newline character) then text is shown,
  314. while if FLAG is `\\^M' (control-M) the text is hidden."
  315.   (let (buffer-read-only)
  316.     (subst-char-in-region from to
  317.               (if (= flag ?\n) ?\^M ?\n)
  318.               flag t)))
  319.  
  320. (defun hide-entry ()
  321.   "Hide the body directly following this heading."
  322.   (interactive)
  323.   (outline-back-to-heading)
  324.   (outline-end-of-heading)
  325.   (save-excursion
  326.    (outline-flag-region (point) (progn (outline-next-preface) (point)) ?\^M)))
  327.  
  328. (defun show-entry ()
  329.   "Show the body directly following this heading."
  330.   (interactive)
  331.   (save-excursion
  332.    (outline-flag-region (point) (progn (outline-next-preface) (point)) ?\n)))
  333.  
  334. (defun hide-body ()
  335.   "Hide all of buffer except headings."
  336.   (interactive)
  337.   (hide-region-body (point-min) (point-max)))
  338.  
  339. (defun hide-region-body (start end)
  340.   "Hide all body lines in the region, but not headings."
  341.   (save-excursion
  342.     (save-restriction
  343.       (narrow-to-region start end)
  344.       (goto-char (point-min))
  345.       (if (outline-on-heading-p)
  346.       (outline-end-of-heading))
  347.       (while (not (eobp))
  348.     (outline-flag-region (point)
  349.                  (progn (outline-next-preface) (point)) ?\^M)
  350.     (if (not (eobp))
  351.         (progn
  352.           (forward-char
  353.            (if (looking-at "[\n\^M][\n\^M]")
  354.            2 1))
  355.           (outline-end-of-heading)))))))
  356.  
  357. (defun show-all ()
  358.   "Show all of the text in the buffer."
  359.   (interactive)
  360.   (outline-flag-region (point-min) (point-max) ?\n))
  361.  
  362. (defun hide-subtree ()
  363.   "Hide everything after this heading at deeper levels."
  364.   (interactive)
  365.   (outline-flag-subtree ?\^M))
  366.  
  367. (defun hide-leaves ()
  368.   "Hide all body after this heading at deeper levels."
  369.   (interactive)
  370.   (outline-back-to-heading)
  371.   (outline-end-of-heading)
  372.   (hide-region-body (point) (progn (outline-end-of-subtree) (point))))
  373.  
  374. (defun show-subtree ()
  375.   "Show everything after this heading at deeper levels."
  376.   (interactive)
  377.   (outline-flag-subtree ?\n))
  378.  
  379. (defun hide-sublevels (levels)
  380.   "Hide everything but the top LEVELS levels of headers, in whole buffer."
  381.   (interactive "p")
  382.   (if (< levels 1)
  383.       (error "Must keep at least one level of headers"))
  384.   (setq levels (1- levels))
  385.   (save-excursion
  386.     (goto-char (point-min))
  387.     ;; Keep advancing to the next top-level heading.
  388.     (while (or (and (bobp) (outline-on-heading-p))
  389.            (outline-next-heading))
  390.       (let ((end (save-excursion (outline-end-of-subtree) (point))))
  391.     ;; Hide everything under that.
  392.     (outline-flag-region (point) end ?\^M)
  393.     ;; Show the first LEVELS levels under that.
  394.     (if (> levels 0)
  395.         (show-children levels))
  396.     ;; Move to the next, since we already found it.
  397.     (goto-char end)))))
  398.  
  399. (defun hide-other ()
  400.   "Hide everything except for the current body and the parent headings."
  401.   (interactive)
  402.   (hide-sublevels 1)
  403.   (let ((last (point))
  404.     (pos (point)))
  405.     (while (save-excursion
  406.          (and (re-search-backward "[\n\r]" nil t)
  407.           (eq (following-char) ?\r)))
  408.       (save-excursion
  409.     (beginning-of-line)
  410.     (if (eq last (point))
  411.         (progn
  412.           (outline-next-heading)
  413.           (outline-flag-region last (point) ?\n))
  414.       (show-children)
  415.       (setq last (point)))))))
  416.  
  417. (defun outline-flag-subtree (flag)
  418.   (save-excursion
  419.     (outline-back-to-heading)
  420.     (outline-end-of-heading)
  421.     (outline-flag-region (point)
  422.               (progn (outline-end-of-subtree) (point))
  423.               flag)))
  424.  
  425. (defun outline-end-of-subtree ()
  426.   (outline-back-to-heading)
  427.   (let ((opoint (point))
  428.     (first t)
  429.     (level (funcall outline-level)))
  430.     (while (and (not (eobp))
  431.         (or first (> (funcall outline-level) level)))
  432.       (setq first nil)
  433.       (outline-next-heading))
  434.     (if (memq (preceding-char) '(?\n ?\^M))
  435.     (progn
  436.       ;; Go to end of line before heading
  437.       (forward-char -1)
  438.       (if (memq (preceding-char) '(?\n ?\^M))
  439.           ;; leave blank line before heading
  440.           (forward-char -1))))))
  441.  
  442. (defun show-branches ()
  443.   "Show all subheadings of this heading, but not their bodies."
  444.   (interactive)
  445.   (show-children 1000))
  446.  
  447. (defun show-children (&optional level)
  448.   "Show all direct subheadings of this heading.
  449. Prefix arg LEVEL is how many levels below the current level should be shown.
  450. Default is enough to cause the following heading to appear."
  451.   (interactive "P")
  452.   (setq level
  453.     (if level (prefix-numeric-value level)
  454.       (save-excursion
  455.         (outline-back-to-heading)
  456.         (let ((start-level (funcall outline-level)))
  457.           (outline-next-heading)
  458.           (if (eobp)
  459.           1
  460.         (max 1 (- (funcall outline-level) start-level)))))))
  461.   (save-excursion
  462.     (save-restriction
  463.       (outline-back-to-heading)
  464.       (setq level (+ level (funcall outline-level)))
  465.       (narrow-to-region (point)
  466.             (progn (outline-end-of-subtree)
  467.                    (if (eobp) (point-max) (1+ (point)))))
  468.       (goto-char (point-min))
  469.       (while (and (not (eobp))
  470.           (progn
  471.             (outline-next-heading)
  472.             (not (eobp))))
  473.     (if (<= (funcall outline-level) level)
  474.         (save-excursion
  475.           (outline-flag-region (save-excursion
  476.                      (forward-char -1)
  477.                      (if (memq (preceding-char) '(?\n ?\^M))
  478.                      (forward-char -1))
  479.                      (point))
  480.                    (progn (outline-end-of-heading) (point))
  481.                    ?\n)))))))
  482.  
  483. (defun outline-up-heading (arg)
  484.   "Move to the heading line of which the present line is a subheading.
  485. With argument, move up ARG levels."
  486.   (interactive "p")
  487.   (outline-back-to-heading)
  488.   (if (eq (funcall outline-level) 1)
  489.       (error ""))
  490.   (while (and (> (funcall outline-level) 1)
  491.           (> arg 0)
  492.           (not (bobp)))
  493.     (let ((present-level (funcall outline-level)))
  494.       (while (not (< (funcall outline-level) present-level))
  495.     (outline-previous-visible-heading 1))
  496.       (setq arg (- arg 1)))))
  497.  
  498. (defun outline-forward-same-level (arg)
  499.   "Move forward to the ARG'th subheading at same level as this one.
  500. Stop at the first and last subheadings of a superior heading."
  501.   (interactive "p")
  502.   (outline-back-to-heading)
  503.   (while (> arg 0)
  504.     (let ((point-to-move-to (save-excursion
  505.                   (outline-get-next-sibling))))  
  506.       (if point-to-move-to
  507.       (progn
  508.         (goto-char point-to-move-to)
  509.         (setq arg (1- arg)))
  510.     (progn
  511.       (setq arg 0)
  512.       (error ""))))))
  513.  
  514. (defun outline-get-next-sibling ()
  515.   "Move to next heading of the same level, and return point or nil if none."
  516.   (let ((level (funcall outline-level)))
  517.     (outline-next-visible-heading 1)
  518.     (while (and (> (funcall outline-level) level)
  519.         (not (eobp)))
  520.       (outline-next-visible-heading 1))
  521.     (if (< (funcall outline-level) level)
  522.     nil
  523.       (point))))
  524.     
  525. (defun outline-backward-same-level (arg)
  526.   "Move backward to the ARG'th subheading at same level as this one.
  527. Stop at the first and last subheadings of a superior heading."
  528.   (interactive "p")
  529.   (outline-back-to-heading)
  530.   (while (> arg 0)
  531.     (let ((point-to-move-to (save-excursion
  532.                   (outline-get-last-sibling))))
  533.       (if point-to-move-to
  534.       (progn
  535.         (goto-char point-to-move-to)
  536.         (setq arg (1- arg)))
  537.     (progn
  538.       (setq arg 0)
  539.       (error ""))))))
  540.  
  541. (defun outline-get-last-sibling ()
  542.   "Move to next heading of the same level, and return point or nil if none."
  543.   (let ((level (funcall outline-level)))
  544.     (outline-previous-visible-heading 1)
  545.     (while (and (> (funcall outline-level) level)
  546.         (not (bobp)))
  547.       (outline-previous-visible-heading 1))
  548.     (if (< (funcall outline-level) level)
  549.     nil
  550.         (point))))
  551.  
  552. (provide 'outline)
  553.  
  554. ;;; outline.el ends here
  555.