]> code.delx.au - gnu-emacs/blobdiff - lisp/progmodes/hideshow.el
(gdb-init-2): Set current filename using
[gnu-emacs] / lisp / progmodes / hideshow.el
index 92de8914fed516d41cb00f2f29847ea57d91c538..e7ed67ce61c7f652091479c2460b896e714bbe21 100644 (file)
@@ -1,11 +1,12 @@
-;;; hideshow.el --- minor mode cmds to selectively display blocks of code
+;;; hideshow.el --- minor mode cmds to selectively display code/comment blocks
 
-;; Copyright (C) 1994,1995,1996,1997 Free Software Foundation
+;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+;;               2004, 2005, 2006  Free Software Foundation, Inc.
 
-;; Author: Thien-Thi Nguyen <ttn@netcom.com>
-;; Maintainer: Dan Nicolaescu <done@ece.arizona.edu>
-;; Version: 4.0
+;; Author: Thien-Thi Nguyen <ttn@gnu.org>
+;;      Dan Nicolaescu <dann@ics.uci.edu>
 ;; Keywords: C C++ java lisp tools editing comments blocks hiding outlines
+;; Maintainer-Version: 5.65.2.2
 ;; Time-of-Day-Author-Most-Likely-to-be-Recalcitrant: early morning
 
 ;; This file is part of GNU Emacs.
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;; LCD Archive Entry:
-;; hideshow|Thien-Thi Nguyen|ttn@netcom.com|
-;; minor mode commands to selectively display blocks of code|
-;; 18-Oct-1994|3.4|~/modes/hideshow.el.Z|
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Commentary:
 
-;; This file provides `hs-minor-mode'.  When active, six commands:
-;;   hs-{hide,show}-{all,block}, hs-show-region and hs-minor-mode
-;; are available.  They implement block hiding and showing.  Blocks are
-;; defined in mode-specific way.  In c-mode or c++-mode, they are simply
-;; curly braces, while in lisp-ish modes they are parens.  Multi-line
-;; comments (c-mode) can also be hidden.  The command M-x hs-minor-mode
-;; toggles the minor mode or sets it (similar to outline minor mode).
-;; See documentation for each command for more info.
+;; * Commands provided
 ;;
-;; The variable `hs-unbalance-handler-method' controls hideshow's behavior
-;; in the case of "unbalanced parentheses".  See doc for more info.
-
-;; Suggested usage:
+;; This file provides Hideshow Minor Mode.  When active, nine commands
+;; are available, implementing block hiding and showing.  They (and their
+;; keybindings) are:
+;;
+;;   hs-hide-block                      C-c @ C-h
+;;   hs-show-block                      C-c @ C-s
+;;   hs-hide-all                        C-c @ C-M-h
+;;   hs-show-all                        C-c @ C-M-s
+;;   hs-hide-level                      C-c @ C-l
+;;   hs-toggle-hiding                   C-c @ C-c
+;;   hs-mouse-toggle-hiding             [(shift mouse-2)]
+;;   hs-hide-initial-comment-block
+;;
+;; Blocks are defined per mode.  In c-mode, c++-mode and java-mode, they
+;; are simply text between curly braces, while in Lisp-ish modes parens
+;; are used.  Multi-line comment blocks can also be hidden.  Read-only
+;; buffers are not a problem, since hideshow doesn't modify the text.
+;;
+;; The command `M-x hs-minor-mode' toggles the minor mode or sets it
+;; (similar to other minor modes).
 
+;; * Suggested usage
+;;
+;; First make sure hideshow.el is in a directory in your `load-path'.
+;; You can optionally byte-compile it using `M-x byte-compile-file'.
+;; Then, add the following to your ~/.emacs:
+;;
 ;; (load-library "hideshow")
-;; (add-hook 'X-mode-hook 'hs-minor-mode)   ; other modes similarly
+;; (add-hook 'X-mode-hook               ; other modes similarly
+;;           (lambda () (hs-minor-mode 1)))
+;;
+;; where X = {emacs-lisp,c,c++,perl,...}.  You can also manually toggle
+;; hideshow minor mode by typing `M-x hs-minor-mode'.  After hideshow is
+;; activated or deactivated, `hs-minor-mode-hook' is run w/ `run-hooks'.
+;;
+;; Additionally, Joseph Eydelnant writes:
+;;   I enjoy your package hideshow.el Ver. 5.24 2001/02/13
+;;   a lot and I've been looking for the following functionality:
+;;   toggle hide/show all with a single key.
+;;   Here are a few lines of code that lets me do just that.
+;;
+;;   (defvar my-hs-hide nil "Current state of hideshow for toggling all.")
+;;   ;;;###autoload
+;;   (defun my-toggle-hideshow-all () "Toggle hideshow all."
+;;     (interactive)
+;;     (setq my-hs-hide (not my-hs-hide))
+;;     (if my-hs-hide
+;;         (hs-hide-all)
+;;       (hs-show-all)))
+;;
+;; [Your hideshow hacks here!]
+
+;; * Customization
+;;
+;; You can use `M-x customize-variable' on the following variables:
+;;
+;; - hs-hide-comments-when-hiding-all -- self-explanatory!
+;; - hs-hide-all-non-comment-function -- if non-nil, when doing a
+;;                                       `hs-hide-all', this function
+;;                                       is called w/ no arguments
+;; - hs-isearch-open                  -- what kind of hidden blocks to
+;;                                       open when doing isearch
+;;
+;; Some languages (e.g., Java) are deeply nested, so the normal behavior
+;; of `hs-hide-all' (hiding all but top-level blocks) results in very
+;; little information shown, which is not very useful.  You can use the
+;; variable `hs-hide-all-non-comment-function' to implement your idea of
+;; what is more useful.  For example, the following code shows the next
+;; nested level in addition to the top-level:
+;;
+;;   (defun ttn-hs-hide-level-1 ()
+;;     (hs-hide-level 1)
+;;     (forward-sexp 1))
+;;   (setq hs-hide-all-non-comment-function 'ttn-hs-hide-level-1)
+;;
+;; Hideshow works w/ incremental search (isearch) by setting the variable
+;; `hs-headline', which is the line of text at the beginning of a hidden
+;; block that contains a match for the search.  You can have this show up
+;; in the mode line by modifying the variable `mode-line-format'.  For
+;; example, the following code prepends this info to the mode line:
+;;
+;;   (unless (memq 'hs-headline mode-line-format)
+;;     (setq mode-line-format
+;;           (append '("-" hs-headline) mode-line-format)))
+;;
+;; See documentation for `mode-line-format' for more info.
+;;
+;; Hooks are run after some commands:
+;;
+;;   hs-hide-hook     in      hs-hide-block, hs-hide-all, hs-hide-level
+;;   hs-show-hook             hs-show-block, hs-show-all
 ;;
-;; where X = {emacs-lisp,c,c++,perl,...}.  See the doc for the variable
-;; `hs-special-modes-alist' if you'd like to use hideshow w/ other modes.
+;; One of `hs-hide-hook' or `hs-show-hook' is run for the toggling
+;; commands when the result of the toggle is to hide or show blocks,
+;; respectively.  All hooks are run w/ `run-hooks'.  See docs for each
+;; variable or hook for more info.
+;;
+;; Normally, hideshow tries to determine appropriate values for block
+;; and comment definitions by examining the buffer's major mode.  If
+;; there are problems, hideshow will not activate and in that case you
+;; may wish to override hideshow's heuristics by adding an entry to
+;; variable `hs-special-modes-alist'.  Packages that use hideshow should
+;; do something like:
+;;
+;;   (add-to-list 'hs-special-modes-alist '(my-mode "{{" "}}" ...))
+;;
+;; If you have an entry that works particularly well, consider
+;; submitting it for inclusion in hideshow.el.  See docstring for
+;; `hs-special-modes-alist' for more info on the entry format.
+;;
+;; See also variable `hs-set-up-overlay' for per-block customization of
+;; appearance or other effects associated with overlays.  For example:
+;;
+;; (setq hs-set-up-overlay
+;;       (defun my-display-code-line-counts (ov)
+;;         (when (eq 'code (overlay-get ov 'hs))
+;;           (overlay-put ov 'display
+;;                        (propertize
+;;                         (format " ... <%d>"
+;;                                 (count-lines (overlay-start ov)
+;;                                              (overlay-end ov)))
+;;                         'face 'font-lock-type-face)))))
+
+;; * Bugs
+;;
+;; (1) Hideshow does not work w/ emacs 18 because emacs 18 lacks the
+;;     function `forward-comment' (among other things).  If someone
+;;     writes this, please send me a copy.
+;;
+;; (2) Sometimes `hs-headline' can become out of sync.  To reset, type
+;;     `M-x hs-minor-mode' twice (that is, deactivate then re-activate
+;;     hideshow).
+;;
+;; (3) Hideshow 5.x is developed and tested on GNU Emacs 20.7.
+;;     XEmacs compatibility may have bitrotted since 4.29.
+;;
+;; (4) Some buffers can't be `byte-compile-file'd properly.  This is because
+;;     `byte-compile-file' inserts the file to be compiled in a temporary
+;;     buffer and switches `normal-mode' on.  In the case where you have
+;;     `hs-hide-initial-comment-block' in `hs-minor-mode-hook', the hiding of
+;;     the initial comment sometimes hides parts of the first statement (seems
+;;     to be only in `normal-mode'), so there are unbalanced "(" and ")".
+;;
+;;     The workaround is to clear `hs-minor-mode-hook' when byte-compiling:
+;;
+;;     (defadvice byte-compile-file (around
+;;                                   byte-compile-file-hideshow-off
+;;                                   act)
+;;       (let ((hs-minor-mode-hook nil))
+;;         ad-do-it))
+;;
+;; (5) Hideshow interacts badly with Ediff and `vc-diff'.  At the moment, the
+;;     suggested workaround is to turn off hideshow entirely, for example:
+;;
+;;     (defun turn-off-hideshow () (hs-minor-mode -1))
+;;     (add-hook 'ediff-prepare-buffer-hook 'turn-off-hideshow)
+;;     (add-hook 'vc-before-checkin-hook 'turn-off-hideshow)
+;;
+;;     In the case of `vc-diff', here is a less invasive workaround:
+;;
+;;     (add-hook 'vc-before-checkin-hook
+;;               (lambda ()
+;;                 (goto-char (point-min))
+;;                 (hs-show-block)))
+;;
+;;     Unfortunately, these workarounds do not restore hideshow state.
+;;     If someone figures out a better way, please let me know.
 
-;; Etc:
+;; * Correspondance
+;;
+;; Correspondance welcome; please indicate version number.  Send bug
+;; reports and inquiries to <ttn@gnu.org>.
 
-;; Bug reports and fixes welcome (comments, too).  Thanks go to
-;;     Dean Andrews <adahome@ix.netcom.com>
-;;     Preston F. Crow <preston.f.crow@dartmouth.edu>
-;;     Gael Marziou <gael@gnlab030.grenoble.hp.com>
-;;     Keith Sheffield <sheff@edcsgw2.cr.usgs.gov>
-;;     Jan Djarv <jan.djarv@sa.erisoft.se>
-;;     Lars Lindberg <qhslali@aom.ericsson.se>
-;;     Alf-Ivar Holm <alfh@ifi.uio.no>
-;; for valuable feedback, code and bug reports.
+;; * Thanks
+;;
+;; Thanks go to the following people for valuable ideas, code and
+;; bug reports.
+;;
+;;  Dean Andrews, Alf-Ivar Holm, Holger Bauer, Christoph Conrad, Dave Love,
+;;  Dirk Herrmann, Gael Marziou, Jan Djarv, Guillaume Leray, Moody Ahmad,
+;;  Preston F. Crow, Lars Lindberg, Reto Zimmermann, Keith Sheffield,
+;;  Chew Meng Kuan, Tony Lam, Pete Ware, François Pinard, Stefan Monnier,
+;;  Joseph Eydelnant, Michael Ernst, Peter Heslin
+;;
+;; Special thanks go to Dan Nicolaescu, who reimplemented hideshow using
+;; overlays (rather than selective display), added isearch magic, folded
+;; in custom.el compatibility, generalized comment handling, incorporated
+;; mouse support, and maintained the code in general.  Version 4.0 is
+;; largely due to his efforts.
+
+;; * History
+;;
+;; Hideshow was inspired when I learned about selective display.  It was
+;; reimplemented to use overlays for 4.0 (see above).  WRT older history,
+;; entries in the masterfile corresponding to versions 1.x and 2.x have
+;; been lost.  XEmacs support is reliable as of 4.29.  State save and
+;; restore was added in 3.5 (not widely distributed), and reliable as of
+;; 4.30.  Otherwise, the code seems stable.  Passes checkdoc as of 4.32.
+;; Version 5.x uses new algorithms for block selection and traversal,
+;; unbundles state save and restore, and includes more isearch support.
 
 ;;; Code:
 
+(require 'easymenu)
 
-;;;----------------------------------------------------------------------------
-;;; user-configurable variables
+;;---------------------------------------------------------------------------
+;; user-configurable variables
 
 (defgroup hideshow nil
   "Minor mode for hiding and showing program and comment blocks."
+  :prefix "hs-"
   :group 'languages)
 
-;;;#autoload
-(defcustom hs-hide-comments-when-hiding-all t 
-  "Hide the comments too when you do an `hs-hide-all'." 
+(defcustom hs-hide-comments-when-hiding-all t
+  "*Hide the comments too when you do an `hs-hide-all'."
   :type 'boolean
   :group 'hideshow)
 
-;;;#autoload
-(defcustom hs-show-hidden-short-form t
-  "Leave only the first line visible in a hidden block.
-If t only the first line is visible when a block is in the hidden state, 
-else both the first line and the last line are showed. Also if t and 
-`hs-adjust-block-beginning' is set, it is used also.
-
-An example of how this works: (in c-mode)
-original:
-                      
-/* My function main
-   some more stuff about main
-*/
-int
-main(void)
-{
-  int x=0;
-  return 0;
-}
-
-
-hidden and hs-show-hidden-short-form is nil
-/* My function main...
-*/                        
-int
-main(void)
-{...
-}
-
-hidden and hs-show-hidden-short-form is t
-/* My function main...
-int                   
-main(void)...
-
-For latest you have to be on the line containing the ellipsis when 
-you do `hs-show-block'."
-  :type 'boolean
+(defcustom hs-minor-mode-hook nil
+  "*Hook called when hideshow minor mode is activated or deactivated."
+  :type 'hook
+  :group 'hideshow
+  :version "21.1")
+
+(defcustom hs-isearch-open 'code
+  "*What kind of hidden blocks to open when doing `isearch'.
+One of the following symbols:
+
+  code    -- open only code blocks
+  comment -- open only comment blocks
+  t       -- open both code and comment blocks
+  nil     -- open neither code nor comment blocks
+
+This has effect iff `search-invisible' is set to `open'."
+  :type '(choice (const :tag "open only code blocks" code)
+                 (const :tag "open only comment blocks" comment)
+                 (const :tag "open both code and comment blocks" t)
+                 (const :tag "don't open any of them" nil))
   :group 'hideshow)
 
-(defcustom hs-minor-mode-hook 'hs-hide-initial-comment-block
-  "Hook called when `hs-minor-mode' is installed.
-A good value for this would be `hs-hide-initial-comment-block' to
-hide all the comments at the beginning of the file."
-  :type 'integer
-  :group 'hideshow)
+;;;###autoload
+(defvar hs-special-modes-alist
+  '((c-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning)
+    (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning)
+    (bibtex-mode ("^@\\S(*\\(\\s(\\)" 1))
+    (java-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning))
+  "*Alist for initializing the hideshow variables for different modes.
+Each element has the form
+  (MODE START END COMMENT-START FORWARD-SEXP-FUNC ADJUST-BEG-FUNC).
 
-(defvar hs-unbalance-handler-method 'top-level
-  "*Symbol representing how \"unbalanced parentheses\" should be handled.
-This error is usually signaled by `hs-show-block'.  One of four values:
-`top-level', `next-line', `signal' or `ignore'.  Default is `top-level'.
+If non-nil, hideshow will use these values as regexps to define blocks
+and comments, respectively for major mode MODE.
 
-- `top-level' -- Show top-level block containing the currently troublesome
-                 block.
-- `next-line' -- Use the fact that, for an already hidden block, its end
-                will be on the next line.  Attempt to show this block.
-- `signal' -- Pass the error through, stopping execution.
-- `ignore' -- Ignore the error, continuing execution.
+START, END and COMMENT-START are regular expressions.  A block is
+defined as text surrounded by START and END.
 
-Values other than these four will be interpreted as `signal'.") 
+As a special case, START may be a list of the form (COMPLEX-START
+MDATA-SELECTOR), where COMPLEX-START is a regexp w/ multiple parts and
+MDATA-SELECTOR an integer that specifies which sub-match is the proper
+place to adjust point, before calling `hs-forward-sexp-func'.  Point
+is adjusted to the beginning of the specified match.  For example,
+see the `hs-special-modes-alist' entry for `bibtex-mode'.
 
-;;;#autoload
-(defvar hs-special-modes-alist 
-  '((c-mode "{" "}" nil nil hs-c-like-adjust-block-beginning)
-    (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning)
-    (java-mode   "\\(\\(\\([ \t]*\\(\\(public\\|private\\|protected\\|abstract\\|static\\|\\final\\)[ \t\n]+\\)+\\(synchronized[ \t\n]*\\)?[a-zA-Z0-9_:]+[ \t\n]*\\(\\[[ \t\n]*\\][ \t\n]*\\)?\\([a-zA-Z0-9_:]+[ \t\n]*\\)([^)]*)\\([ \n\t]+throws[ \t\n][^{]+\\)?\\)\\|\\([ \t]*static[^{]*\\)\\)[ \t\n]*{\\)"  "}"  "/[*/]" java-hs-forward-sexp hs-c-like-adjust-block-beginning))
-; I tested the java regexp using the following:
-;(defvar hsj-public)
-;(defvar hsj-syncronised)
-;(defvar hsj-type)
-;(defvar hsj-fname)
-;(defvar hsj-par)
-;(defvar hsj-throws)
-;(defvar hsj-static)
-
-;(setq hsj-public "[ \t]*\\(\\(public\\|private\\|protected\\|abstract\\|static\\|\\final\\)[ \t\n]+\\)+")
-;(setq hsj-syncronised "\\(synchronized[ \t\n]*\\)?")
-;(setq hsj-type "[a-zA-Z0-9_:]+[ \t\n]*\\(\\[[ \t\n]*\\][ \t\n]*\\)?")
-;(setq hsj-fname "\\([a-zA-Z0-9_:]+[ \t\n]*\\)")
-;(setq hsj-par "([^)]*)")
-;(setq hsj-throws "\\([ \n\t]+throws[ \t\n][^{]+\\)?")
-
-;(setq hsj-static "[ \t]*static[^{]*")
-
-
-;(setq hs-block-start-regexp (concat
-;                           "\\("
-;                               "\\("
-;                                    "\\("
-;                                       hsj-public
-;                                       hsj-syncronised
-;                                       hsj-type
-;                                       hsj-fname
-;                                       hsj-par
-;                                       hsj-throws
-;                                    "\\)"
-;                                    "\\|"
-;                                    "\\("
-;                                       hsj-static
-;                                    "\\)"
-;                               "\\)"
-;                                  "[ \t\n]*{"
-;                            "\\)"  
-;                                  ))
+For some major modes, `forward-sexp' does not work properly.  In those
+cases, FORWARD-SEXP-FUNC specifies another function to use instead.
 
-  "*Alist for initializing the hideshow variables for different modes.
-It has the form 
-(MODE START-RE END-RE COMMENT-START-RE FORWARD-SEXP-FUNC ADJUST-BEG-FUNC).
-If present, hideshow will use these values for the start and end regexps,
-respectively.  Since Algol-ish languages do not have single-character
-block delimiters, the function `forward-sexp' which is used by hideshow
-doesn't work.  In this case, if a similar function is provided, you can
-register it and have hideshow use it instead of `forward-sexp'.  To add
-more values, use
+See the documentation for `hs-adjust-block-beginning' to see what is the
+use of ADJUST-BEG-FUNC.
 
-\t(pushnew '(new-mode st-re end-re function-name)
-\t     hs-special-modes-alist :test 'equal)
+If any of the elements is left nil or omitted, hideshow tries to guess
+appropriate values.  The regexps should not contain leading or trailing
+whitespace.  Case does not matter.")
 
-For example:
+(defvar hs-hide-all-non-comment-function nil
+  "*Function called if non-nil when doing `hs-hide-all' for non-comments.")
 
-\t(pushnew '(simula-mode \"begin\" \"end\" \"!\" simula-next-statement)
-\t     hs-special-modes-alist :test 'equal)
+(defvar hs-allow-nesting nil
+  "*If non-nil, hiding remembers internal blocks.
+This means that when the outer block is shown again, any
+previously hidden internal blocks remain hidden.")
 
-See the documentation for `hs-adjust-block-beginning' to see what
-is the use of ADJUST-BEG-FUNC.
+(defvar hs-hide-hook nil
+  "*Hook called (with `run-hooks') at the end of commands to hide text.
+These commands include the toggling commands (when the result is to hide
+a block), `hs-hide-all', `hs-hide-block' and `hs-hide-level'.")
 
-If any of those is left nil, hideshow will try to guess some values, see
-`hs-grok-mode-type' for this.
+(defvar hs-show-hook nil
+  "*Hook called (with `run-hooks') at the end of commands to show text.
+These commands include the toggling commands (when the result is to show
+a block), `hs-show-all' and `hs-show-block'..")
 
-Note that the regexps should not contain leading or trailing whitespace.")
+(defvar hs-set-up-overlay nil
+  "*Function called with one arg, OV, a newly initialized overlay.
+Hideshow puts a unique overlay on each range of text to be hidden
+in the buffer.  Here is a simple example of how to use this variable:
 
-(defvar hs-hide-hook nil
-  "*Hooks called at the end of `hs-hide-all' and `hs-hide-block'.")
+  (defun display-code-line-counts (ov)
+    (when (eq 'code (overlay-get ov 'hs))
+      (overlay-put ov 'display
+                   (format \"... / %d\"
+                           (count-lines (overlay-start ov)
+                                        (overlay-end ov))))))
 
-(defvar hs-show-hook nil
-  "*Hooks called at the end of commands to show text.
-These commands include `hs-show-all', `hs-show-block' and `hs-show-region'.")
+  (setq hs-set-up-overlay 'display-code-line-counts)
 
-(defvar hs-minor-mode-prefix "\C-c"
-  "*Prefix key to use for hideshow commands in hideshow minor mode.")
+This example shows how to get information from the overlay as well
+as how to set its `display' property.  See `hs-make-overlay' and
+info node `(elisp)Overlays'.")
 
-;;;----------------------------------------------------------------------------
-;;; internal variables
+;;---------------------------------------------------------------------------
+;; internal variables
 
 (defvar hs-minor-mode nil
   "Non-nil if using hideshow mode as a minor mode of some other mode.
-Use the command `hs-minor-mode' to toggle this variable.")
+Use the command `hs-minor-mode' to toggle or set this variable.")
 
 (defvar hs-minor-mode-map nil
-  "Mode map for hideshow minor mode.")
+  "Keymap for hideshow minor mode.")
 
-;(defvar hs-menu-bar nil
-;  "Menu bar for hideshow minor mode (Xemacs only).")
+(defvar hs-minor-mode-menu nil
+  "Menu for hideshow minor mode.")
 
 (defvar hs-c-start-regexp nil
-  "Regexp for beginning of comments.  
-Differs from mode-specific comment regexps in that 
+  "Regexp for beginning of comments.
+Differs from mode-specific comment regexps in that
 surrounding whitespace is stripped.")
 
 (defvar hs-block-start-regexp nil
   "Regexp for beginning of block.")
 
+(defvar hs-block-start-mdata-select nil
+  "Element in `hs-block-start-regexp' match data to consider as block start.
+The internal function `hs-forward-sexp' moves point to the beginning of this
+element (using `match-beginning') before calling `hs-forward-sexp-func'.")
+
 (defvar hs-block-end-regexp nil
   "Regexp for end of block.")
 
 (defvar hs-forward-sexp-func 'forward-sexp
-  "Function used to do a forward-sexp.
+  "Function used to do a `forward-sexp'.
 Should change for Algol-ish modes.  For single-character block
 delimiters -- ie, the syntax table regexp for the character is
-either `(' or `)' -- `hs-forward-sexp-func' would just be `forward-sexp'.
-For other modes such as simula, a more specialized function
-is necessary.")
+either `(' or `)' -- `hs-forward-sexp-func' would just be
+`forward-sexp'.  For other modes such as simula, a more specialized
+function is necessary.")
 
 (defvar hs-adjust-block-beginning nil
   "Function used to tweak the block beginning.
-It has effect only if `hs-show-hidden-short-form' is t. The block it
-is hidden from the point returned by this function, as opposed to
-hiding it from the point returned when searching
-`hs-block-start-regexp'.  In c-like modes, if we wish to also hide the
-curly braces (if you think they occupy too much space on the screen),
-this function should return the starting point (at the end of line) of
-the hidden region.  
-
-It is called with a single argument ARG which is the the position in
+The block is hidden from the position returned by this function,
+as opposed to hiding it from the position returned when searching
+for `hs-block-start-regexp'.
+
+For example, in c-like modes, if we wish to also hide the curly braces
+\(if you think they occupy too much space on the screen), this function
+should return the starting point (at the end of line) of the hidden
+region.
+
+It is called with a single argument ARG which is the position in
 buffer after the block beginning.
 
 It should return the position from where we should start hiding.
 
-It should not move the point.  
+It should not move the point.
 
 See `hs-c-like-adjust-block-beginning' for an example of using this.")
 
-;(defvar hs-emacs-type 'fsf
-;  "Used to support both Emacs and Xemacs.")
-
-;(eval-when-compile
-;  (if (string-match "xemacs\\|lucid" emacs-version)
-;      (progn
-;      (defvar current-menubar nil "")
-;      (defun set-buffer-menubar (arg1))
-;      (defun add-menu (arg1 arg2 arg3)))))
-
-;;;----------------------------------------------------------------------------
-;;; support funcs
-
-;; snarfed from outline.el;
-(defun hs-flag-region (from to flag)
-  "Hides or shows lines from FROM to TO, according to FLAG.
-If FLAG is nil then text is shown, while if FLAG is t the text is hidden."
-    (save-excursion
-      (goto-char from)
-      (end-of-line)
-      (hs-discard-overlays (point) to 'invisible 'hs)
-      (if flag
-         (let ((overlay (make-overlay (point) to)))
-           ;; Make overlay hidden and intangible.
-           (overlay-put overlay 'invisible 'hs)
-           (overlay-put overlay 'hs t)
-           (overlay-put overlay 'intangible t)))))
-
-;; Remove from the region BEG ... END all overlays
-;; with a PROP property equal to VALUE.
-;; Overlays with a PROP property different from VALUE are not touched.
-(defun hs-discard-overlays (beg end prop value)
-  (if (< end beg)
-      (setq beg (prog1 end (setq end beg))))
-  (save-excursion
-    (goto-char beg)
-    (while (< (point) end)
-      (let ((overlays (overlays-at (point))))
-       (while overlays
-         (let ((o (car overlays)))
-           (if (eq (overlay-get o prop) value)
-                   (delete-overlay o)))
-         (setq overlays (cdr overlays))))
-      (goto-char (next-overlay-change (point))))))
+(defvar hs-headline nil
+  "Text of the line where a hidden block begins, set during isearch.
+You can display this in the mode line by adding the symbol `hs-headline'
+to the variable `mode-line-format'.  For example,
+
+  (unless (memq 'hs-headline mode-line-format)
+    (setq mode-line-format
+          (append '(\"-\" hs-headline) mode-line-format)))
+
+Note that `mode-line-format' is buffer-local.")
+
+;;---------------------------------------------------------------------------
+;; system dependency
+
+(defalias 'hs-match-data 'match-data)
+
+;;---------------------------------------------------------------------------
+;; support functions
+
+(defun hs-discard-overlays (from to)
+  "Delete hideshow overlays in region defined by FROM and TO.
+Skip \"internal\" overlays if `hs-allow-nesting' is non-nil."
+  (when (< to from)
+    (setq from (prog1 to (setq to from))))
+  (if hs-allow-nesting
+      (let (ov)
+        (while (> to (setq from (next-overlay-change from)))
+          (when (setq ov (hs-overlay-at from))
+            (setq from (overlay-end ov))
+            (delete-overlay ov))))
+    (dolist (ov (overlays-in from to))
+      (when (overlay-get ov 'hs)
+        (delete-overlay ov)))))
+
+(defun hs-make-overlay (b e kind &optional b-offset e-offset)
+  "Return a new overlay in region defined by B and E with type KIND.
+KIND is either `code' or `comment'.  Optional fourth arg B-OFFSET
+when added to B specifies the actual buffer position where the block
+begins.  Likewise for optional fifth arg E-OFFSET.  If unspecified
+they are taken to be 0 (zero).  The following properties are set
+in the overlay: 'invisible 'hs 'hs-b-offset 'hs-e-offset.  Also,
+depending on variable `hs-isearch-open', the following properties may
+be present: 'isearch-open-invisible 'isearch-open-invisible-temporary.
+If variable `hs-set-up-overlay' is non-nil it should specify a function
+to call with the newly initialized overlay."
+  (unless b-offset (setq b-offset 0))
+  (unless e-offset (setq e-offset 0))
+  (let ((ov (make-overlay b e))
+        (io (if (eq 'block hs-isearch-open)
+                ;; backward compatibility -- `block'<=>`code'
+                'code
+              hs-isearch-open)))
+    (overlay-put ov 'invisible 'hs)
+    (overlay-put ov 'hs kind)
+    (overlay-put ov 'hs-b-offset b-offset)
+    (overlay-put ov 'hs-e-offset e-offset)
+    (when (or (eq io t) (eq io kind))
+      (overlay-put ov 'isearch-open-invisible 'hs-isearch-show)
+      (overlay-put ov 'isearch-open-invisible-temporary
+                   'hs-isearch-show-temporary))
+    (when hs-set-up-overlay (funcall hs-set-up-overlay ov))
+    ov))
+
+(defun hs-isearch-show (ov)
+  "Delete overlay OV, and set `hs-headline' to nil.
+
+This function is meant to be used as the `isearch-open-invisible'
+property of an overlay."
+  (setq hs-headline nil)
+  (delete-overlay ov))
+
+(defun hs-isearch-show-temporary (ov hide-p)
+  "Hide or show overlay OV, and set `hs-headline', all depending on HIDE-P.
+If HIDE-P is non-nil, `hs-headline' is set to nil and overlay OV is hidden.
+Otherwise, `hs-headline' is set to the line of text at the head of OV, and
+OV is shown.
+
+This function is meant to be used as the `isearch-open-invisible-temporary'
+property of an overlay."
+  (setq hs-headline
+        (if hide-p
+            nil
+          (or hs-headline
+              (let ((start (overlay-start ov)))
+                (buffer-substring
+                 (save-excursion (goto-char start)
+                                 (beginning-of-line)
+                                 (skip-chars-forward " \t")
+                                 (point))
+                 start)))))
+  (force-mode-line-update)
+  ;; handle `display' property specially
+  (let (value)
+    (if hide-p
+        (when (setq value (overlay-get ov 'hs-isearch-display))
+          (overlay-put ov 'display value)
+          (overlay-put ov 'hs-isearch-display nil))
+      (when (setq value (overlay-get ov 'display))
+        (overlay-put ov 'hs-isearch-display value)
+        (overlay-put ov 'display nil))))
+  (overlay-put ov 'invisible (and hide-p 'hs)))
+
+(defun hs-forward-sexp (match-data arg)
+  "Adjust point based on MATCH-DATA and call `hs-forward-sexp-func' w/ ARG.
+Original match data is restored upon return."
+  (save-match-data
+    (set-match-data match-data)
+    (goto-char (match-beginning hs-block-start-mdata-select))
+    (funcall hs-forward-sexp-func arg)))
+
+(defun hs-hide-comment-region (beg end &optional repos-end)
+  "Hide a region from BEG to END, marking it as a comment.
+Optional arg REPOS-END means reposition at end."
+  (let ((beg-eol (progn (goto-char beg) (end-of-line) (point)))
+        (end-eol (progn (goto-char end) (end-of-line) (point))))
+    (hs-discard-overlays beg-eol end-eol)
+    (hs-make-overlay beg-eol end-eol 'comment beg end))
+  (goto-char (if repos-end end beg)))
 
 (defun hs-hide-block-at-point (&optional end comment-reg)
-  "Hide block iff on block beginning, optional END means reposition at end.
-COMMENT-REG is a list of the form (BEGIN . END) and specifies the limits 
-of the comment, or nil if the block is not a comment." 
+  "Hide block iff on block beginning.
+Optional arg END means reposition at end.
+Optional arg COMMENT-REG is a list of the form (BEGIN END) and
+specifies the limits of the comment, or nil if the block is not
+a comment.
+
+The block beginning is adjusted by `hs-adjust-block-beginning'
+and then further adjusted to be at the end of the line."
   (if comment-reg
-      (progn 
-       ;; goto the end of line at the end of the comment
-       (goto-char (nth 1 comment-reg))
-       (unless hs-show-hidden-short-form (forward-line -1))
-       (end-of-line)
-       (hs-flag-region (car comment-reg)  (point) t) 
-       (goto-char (if end (nth 1 comment-reg) (car comment-reg))))
-      (if (looking-at hs-block-start-regexp)
-         (let* ((p ;; p is the point at the end of the block beginning
-                 (if (and  hs-show-hidden-short-form 
-                           hs-adjust-block-beginning)
-                     ;; we need to adjust the block beginning
-                     (funcall hs-adjust-block-beginning (match-end 0)) 
-                   (match-end 0)))
-                ;; q is the point at the end of the block
-                (q (progn (funcall hs-forward-sexp-func 1) (point))))
-           ;; position the point so we can call `hs-flag-region'
-           (unless hs-show-hidden-short-form (forward-line -1))
-           (end-of-line)
-           (if (and (< p (point)) (> (count-lines p q) 
-                                     (if hs-show-hidden-short-form 1 2)))
-               (hs-flag-region p (point) t))
-           (goto-char (if end q p))))))
-
-(defun hs-show-block-at-point (&optional end comment-reg)
-  "Show block iff on block beginning.  Optional END means reposition at end.
-COMMENT-REG is a list of the forme (BEGIN . END) and specifies the limits 
-of the comment. It should be nil when hiding a block." 
-  (if comment-reg
-      (when (car comment-reg)
-       (hs-flag-region (car comment-reg) (nth 1 comment-reg) nil)
-       (goto-char (if end (nth 1 comment-reg) (car comment-reg))))
-    (if (looking-at hs-block-start-regexp)
-       (let* ((p (point))
-              (q
-               (condition-case error   ; probably unbalanced paren
-                   (progn
-                     (funcall hs-forward-sexp-func 1)
-                     (point))
-                 (error
-                  (cond
-                   ((eq hs-unbalance-handler-method 'ignore)
-                    ;; just ignore this block
-                    (point))
-                   ((eq hs-unbalance-handler-method 'top-level)
-                    ;; try to get out of rat's nest and expose the whole func
-                    (if (/= (current-column) 0) (beginning-of-defun))
-                    (setq p (point))
-                    (re-search-forward (concat "^" hs-block-start-regexp)
-                                       (point-max) t 2)
-                    (point))
-                   ((eq hs-unbalance-handler-method 'next-line)
-                    ;; assumption is that user knows what s/he's doing
-                    (beginning-of-line) (setq p (point))
-                    (end-of-line 2) (point))
-                   (t
-                    ;; pass error through -- this applies to `signal', too
-                    (signal (car error) (cdr error))))))))
-         (hs-flag-region p q nil)
-         (goto-char (if end (1+ (point)) p))))))
-
-(defun hs-safety-is-job-n ()
-  "Warn `buffer-invisibility-spec' does not contain hs."
-    (if (or buffer-invisibility-spec (assq 'hs buffer-invisibility-spec) )
-       nil
-      (message "Warning: `buffer-invisibility-spec' does not contain hs!!")
-      (sit-for 2)))
-
-(defun hs-hide-initial-comment-block ()
-  (interactive)
-  "Hides the first block of comments in a file.
-The best usage is in `hs-minor-mode-hook', it hides all the comments at the
-file beginning, so if you have huge RCS logs you won't see them!"
-      (let ((p (point))
-           c-reg)
-       (goto-char (point-min))
-       (skip-chars-forward " \t\n^L")
-       (setq c-reg (hs-inside-comment-p))
-       ;; see if we have enough comment lines to hide
-       (if (and c-reg (> (count-lines (car c-reg) (nth 1 c-reg)) 
-                         (if hs-show-hidden-short-form 1 2)))
-           (hs-hide-block)
-         (goto-char p))))
+      (hs-hide-comment-region (car comment-reg) (cadr comment-reg) end)
+    (when (looking-at hs-block-start-regexp)
+      (let* ((mdata (hs-match-data t))
+             (pure-p (match-end 0))
+             (p
+              ;; `p' is the point at the end of the block beginning,
+              ;; which may need to be adjusted
+              (save-excursion
+                (goto-char (funcall (or hs-adjust-block-beginning
+                                        'identity)
+                                    pure-p))
+                ;; whatever the adjustment, we move to eol
+                (end-of-line)
+                (point)))
+             (q
+              ;; `q' is the point at the end of the block
+              (progn (hs-forward-sexp mdata 1)
+                     (end-of-line)
+                     (point)))
+             ov)
+        (when (and (< p (point)) (> (count-lines p q) 1))
+          (cond ((and hs-allow-nesting (setq ov (hs-overlay-at p)))
+                 (delete-overlay ov))
+                ((not hs-allow-nesting)
+                 (hs-discard-overlays p q)))
+          (hs-make-overlay p q 'code (- pure-p p)))
+        (goto-char (if end q (min p pure-p)))))))
 
 (defun hs-inside-comment-p ()
-  "Returns non-nil if point is inside a comment, otherwise nil.
-Actually, returns a list containing the buffer position of the start 
-and the end of the comment. A comment block can be hided only if on its 
-starting line there are only white spaces preceding the actual comment 
-beginning, if we are inside of a comment but this condition is not 
+  "Return non-nil if point is inside a comment, otherwise nil.
+Actually, return a list containing the buffer position of the start
+and the end of the comment.  A comment block can be hidden only if on
+its starting line there is only whitespace preceding the actual comment
+beginning.  If we are inside of a comment but this condition is not met,
 we return a list having a nil as its car and the end of comment position
 as cdr."
-  (save-excursion 
+  (save-excursion
     ;; the idea is to look backwards for a comment start regexp, do a
     ;; forward comment, and see if we are inside, then extend extend
     ;; forward and backward as long as we have comments
     (let ((q (point)))
       (when (or (looking-at hs-c-start-regexp)
-             (re-search-backward hs-c-start-regexp (point-min) t))
-       (forward-comment (- (buffer-size)))
-       (skip-chars-forward " \t\n\f")
-       (let ((p (point))
-             (not-hidable nil))
-         (beginning-of-line)
-         (unless (looking-at (concat "[ \t]*" hs-c-start-regexp))
-           ;; we are in this situation: (example)
-           ;; (defun bar ()
-           ;;      (foo)
-           ;;                ) ; comment
-           ;;                 ^
-           ;;   the point was here before doing (beginning-of-line)
-           ;; here we should advance till the next comment which 
-           ;; eventually has only white spaces preceding it on the same
-           ;; line 
-           (goto-char p)
-           (forward-comment 1)
-           (skip-chars-forward " \t\n\f")
-           (setq p (point))
-           (while (and (< (point) q) 
-                       (> (point) p) 
-                       (not (looking-at hs-c-start-regexp)))
-             (setq p (point))  ;; use this to avoid an infinit cycle.
-             (forward-comment 1)
-             (skip-chars-forward " \t\n\f"))
-           (if (or (not (looking-at hs-c-start-regexp)) 
-                   (> (point) q))
-               ;; we cannot hide this comment block
-               (setq not-hidable t)))
-         ;; goto the end of the comment
-         (forward-comment (buffer-size))
-         (skip-chars-backward " \t\n\f")
-         (end-of-line)
-         (if (>= (point) q)
-             (list (if not-hidable nil p) (point))))))))
+                (re-search-backward hs-c-start-regexp (point-min) t))
+        ;; first get to the beginning of this comment...
+        (while (and (not (bobp))
+                    (= (point) (progn (forward-comment -1) (point))))
+          (forward-char -1))
+        ;; ...then extend backwards
+        (forward-comment (- (buffer-size)))
+        (skip-chars-forward " \t\n\f")
+        (let ((p (point))
+              (hidable t))
+          (beginning-of-line)
+          (unless (looking-at (concat "[ \t]*" hs-c-start-regexp))
+            ;; we are in this situation: (example)
+            ;; (defun bar ()
+            ;;      (foo)
+            ;;                ) ; comment
+            ;;                 ^
+            ;;   the point was here before doing (beginning-of-line)
+            ;; here we should advance till the next comment which
+            ;; eventually has only white spaces preceding it on the same
+            ;; line
+            (goto-char p)
+            (forward-comment 1)
+            (skip-chars-forward " \t\n\f")
+            (setq p (point))
+            (while (and (< (point) q)
+                        (> (point) p)
+                        (not (looking-at hs-c-start-regexp)))
+              ;; avoid an infinite cycle
+              (setq p (point))
+              (forward-comment 1)
+              (skip-chars-forward " \t\n\f"))
+            (when (or (not (looking-at hs-c-start-regexp))
+                      (> (point) q))
+              ;; we cannot hide this comment block
+              (setq hidable nil)))
+          ;; goto the end of the comment
+          (forward-comment (buffer-size))
+          (skip-chars-backward " \t\n\f")
+          (end-of-line)
+          (when (>= (point) q)
+            (list (and hidable p) (point))))))))
 
 (defun hs-grok-mode-type ()
-  "Setup variables for new buffers where applicable."
-  (when (and (boundp 'comment-start)
-            (boundp 'comment-end))
-    (let ((lookup (assoc major-mode hs-special-modes-alist)))
-      (setq hs-block-start-regexp (or (nth 1 lookup) "\\s\(")
-           hs-block-end-regexp (or (nth 2 lookup) "\\s\)")
-           hs-c-start-regexp (or (nth 3 lookup)
-                                 (let ((c-start-regexp 
-                                        (regexp-quote comment-start)))
-                                   (if (string-match " +$" c-start-regexp)
-                                        (substring c-start-regexp 0 (1- (match-end 0)))
-                                     c-start-regexp)))
-           hs-forward-sexp-func (or (nth 4 lookup) 'forward-sexp)
-           hs-adjust-block-beginning (nth 5 lookup)))))
+  "Set up hideshow variables for new buffers.
+If `hs-special-modes-alist' has information associated with the
+current buffer's major mode, use that.
+Otherwise, guess start, end and `comment-start' regexps; `forward-sexp'
+function; and adjust-block-beginning function."
+  (if (and (boundp 'comment-start)
+           (boundp 'comment-end)
+           comment-start comment-end)
+      (let* ((lookup (assoc major-mode hs-special-modes-alist))
+             (start-elem (or (nth 1 lookup) "\\s(")))
+        (if (listp start-elem)
+            ;; handle (START-REGEXP MDATA-SELECT)
+            (setq hs-block-start-regexp (car start-elem)
+                  hs-block-start-mdata-select (cadr start-elem))
+          ;; backwards compatibility: handle simple START-REGEXP
+          (setq hs-block-start-regexp start-elem
+                hs-block-start-mdata-select 0))
+        (setq hs-block-end-regexp (or (nth 2 lookup) "\\s)")
+              hs-c-start-regexp (or (nth 3 lookup)
+                                    (let ((c-start-regexp
+                                           (regexp-quote comment-start)))
+                                      (if (string-match " +$" c-start-regexp)
+                                          (substring c-start-regexp
+                                                     0 (1- (match-end 0)))
+                                        c-start-regexp)))
+              hs-forward-sexp-func (or (nth 4 lookup) 'forward-sexp)
+              hs-adjust-block-beginning (nth 5 lookup)))
+    (setq hs-minor-mode nil)
+    (error "%s Mode doesn't support Hideshow Minor Mode" mode-name)))
 
 (defun hs-find-block-beginning ()
-  "Repositions point at block-start.
-Return point, or nil if top-level."
-  (let (done
-       (try-again t)
-       (here (point))
-       (both-regexps (concat "\\(" hs-block-start-regexp "\\)\\|\\("
-                             hs-block-end-regexp "\\)"))
-       (buf-size (buffer-size)))
-    (beginning-of-line)
-    ;; A block beginning can span on multiple lines, if the point
-    ;; is on one of those lines, trying a regexp search from
-    ;; that point would fail to find the block beginning, so we look
-    ;; backwards for the block beginning, or a block end.
-    (while try-again
-      (setq try-again nil)
-      (if (and (re-search-backward both-regexps (point-min) t)
-              (match-beginning 1)) ; found a block beginning
-         (if (save-match-data (hs-inside-comment-p)) 
-             ;;but it was inside a comment, so we have to look for
-             ;;it again
-             (setq try-again t)
-           ;; that's what we were looking for
-           (setq done (match-beginning 0)))
-       ;; we found a block end, or we reached the beginning of the
-       ;; buffer look to see if we were on a block beginning when we
-       ;; started
-       (if (and 
-            (re-search-forward hs-block-start-regexp (point-max) t)
-            (or 
-             (and (>= here (match-beginning 0)) (< here (match-end 0)))
-             (and hs-show-hidden-short-form hs-adjust-block-beginning
-                  (save-match-data 
-                    (= 1 (count-lines 
-                          (funcall hs-adjust-block-beginning
-                                   (match-end 0)) here))))))
-             (setq done (match-beginning 0)))))
-    (goto-char here)
-    (while (and (not done)
-               ;; This had problems because the regexp can match something
-               ;; inside of a comment!
-               ;; Since inside a comment we can have incomplete sexps
-               ;; this would have signaled an error.
-               (or (forward-comment (- buf-size)) t); `or' is a hack to
-                                                        ; make it return t
-               (re-search-backward both-regexps (point-min) t))
-      (if (match-beginning 1)          ; start of start-regexp
-         (setq done (match-beginning 0))
-       (goto-char (match-end 0))       ; end of end-regexp
-       (funcall hs-forward-sexp-func -1)))
-    (goto-char (or done here))
-    done))
+  "Reposition point at block-start.
+Return point, or nil if original point was not in a block."
+  (let ((done nil)
+        (here (point)))
+    ;; look if current line is block start
+    (if (looking-at hs-block-start-regexp)
+        (point)
+      ;; look backward for the start of a block that contains the cursor
+      (while (and (re-search-backward hs-block-start-regexp nil t)
+                  (not (setq done
+                             (< here (save-excursion
+                                       (hs-forward-sexp (hs-match-data t) 1)
+                                       (point)))))))
+      (if done
+          (point)
+        (goto-char here)
+        nil))))
+
+(defun hs-hide-level-recursive (arg minp maxp)
+  "Recursively hide blocks ARG levels below point in region (MINP MAXP)."
+  (when (hs-find-block-beginning)
+    (setq minp (1+ (point)))
+    (funcall hs-forward-sexp-func 1)
+    (setq maxp (1- (point))))
+  (unless hs-allow-nesting
+    (hs-discard-overlays minp maxp))
+  (goto-char minp)
+  (while (progn
+           (forward-comment (buffer-size))
+           (and (< (point) maxp)
+                (re-search-forward hs-block-start-regexp maxp t)))
+    (if (> arg 1)
+        (hs-hide-level-recursive (1- arg) minp maxp)
+      (goto-char (match-beginning hs-block-start-mdata-select))
+      (hs-hide-block-at-point t)))
+  (goto-char maxp))
 
 (defmacro hs-life-goes-on (&rest body)
-  "Executes optional BODY iff variable `hs-minor-mode' is non-nil."
-  (list 'if 'hs-minor-mode (cons 'progn body)))
+  "Evaluate BODY forms iff variable `hs-minor-mode' is non-nil.
+In the dynamic context of this macro, `inhibit-point-motion-hooks'
+and `case-fold-search' are both t."
+  `(when hs-minor-mode
+     (let ((inhibit-point-motion-hooks t)
+           (case-fold-search t))
+       ,@body)))
+
+(put 'hs-life-goes-on 'edebug-form-spec '(&rest form))
+
+(defun hs-overlay-at (position)
+  "Return hideshow overlay at POSITION, or nil if none to be found."
+  (let ((overlays (overlays-at position))
+        ov found)
+    (while (and (not found) (setq ov (car overlays)))
+      (setq found (and (overlay-get ov 'hs) ov)
+            overlays (cdr overlays)))
+    found))
 
 (defun hs-already-hidden-p ()
   "Return non-nil if point is in an already-hidden block, otherwise nil."
   (save-excursion
     (let ((c-reg (hs-inside-comment-p)))
       (if (and c-reg (nth 0 c-reg))
-         ;; point is inside a comment, and that comment is hidable
-         (goto-char (nth 0 c-reg))
-       (if (and (not c-reg) (hs-find-block-beginning)
-                (looking-at hs-block-start-regexp))
-           ;; point is inside a block
-           (goto-char (match-end 0)))))
+          ;; point is inside a comment, and that comment is hidable
+          (goto-char (nth 0 c-reg))
+        (when (and (not c-reg)
+                   (hs-find-block-beginning)
+                   (looking-at hs-block-start-regexp))
+          ;; point is inside a block
+          (goto-char (match-end 0)))))
     (end-of-line)
-    (let ((overlays (overlays-at (point)))
-         (found nil))
-      (while (and (not found) (overlayp (car overlays)))
-          (setq found (overlay-get (car overlays) 'hs)
-                overlays (cdr overlays)))
-      found)))
-
-(defun java-hs-forward-sexp (arg)
-  "Function used by `hs-minor-mode' for `forward-sexp' in Java mode."
-  (if (< arg 0)
-      (backward-sexp 1)
-    (if (looking-at hs-block-start-regexp)
-       (progn
-         (goto-char (match-end 0))
-         (forward-char -1)
-         (forward-sexp 1))
-      (forward-sexp 1))))
-
-(defun hs-c-like-adjust-block-beginning (arg)
-  "Function to be assigned to `hs-adjust-block-beginning' for C like modes.
-Arg is a position in buffer just after {. This goes back to the end of
-the function header. The purpose is to save some space on the screen
-when displaying hidden blocks."
+    (hs-overlay-at (point))))
+
+(defun hs-c-like-adjust-block-beginning (initial)
+  "Adjust INITIAL, the buffer position after `hs-block-start-regexp'.
+Actually, point is never moved; a new position is returned that is
+the end of the C-function header.  This adjustment function is meant
+to be assigned to `hs-adjust-block-beginning' for C-like modes."
   (save-excursion
-    (goto-char arg)
-    (forward-char -1)
+    (goto-char (1- initial))
     (forward-comment (- (buffer-size)))
     (point)))
 
-;;;----------------------------------------------------------------------------
-;;; commands
+;;---------------------------------------------------------------------------
+;; commands
 
-;;;###autoload
 (defun hs-hide-all ()
-  "Hides all top-level blocks, displaying only first and last lines.
-It moves point to the beginning of the line, and it runs the normal hook
-`hs-hide-hook'.  See documentation for `run-hooks'. 
-If `hs-hide-comments-when-hiding-all' is t also hides the comments."
+  "Hide all top level blocks, displaying only first and last lines.
+Move point to the beginning of the line, and run the normal hook
+`hs-hide-hook'.  See documentation for `run-hooks'.
+If `hs-hide-comments-when-hiding-all' is non-nil, also hide the comments."
   (interactive)
   (hs-life-goes-on
    (message "Hiding all blocks ...")
    (save-excursion
-     (hs-flag-region (point-min) (point-max) nil) ; eliminate weirdness
+     (unless hs-allow-nesting
+       (hs-discard-overlays (point-min) (point-max)))
      (goto-char (point-min))
-     (if hs-hide-comments-when-hiding-all 
-        (let (c-reg
-              (count 0)
-              (block-and-comment-re  ;; this should match 
-               (concat "\\(^"        ;; the block beginning and comment start
-                       hs-block-start-regexp  
-                       "\\)\\|\\(" hs-c-start-regexp "\\)")))
-          (while (re-search-forward block-and-comment-re (point-max) t)
-            (if (match-beginning 1) ;; we have found a block beginning
-                (progn
-                  (goto-char (match-beginning 1))
-                  (hs-hide-block-at-point t)
-                  (message "Hiding ... %d" (setq count (1+ count))))
-              ;;found a comment
-              (setq c-reg (hs-inside-comment-p))
-              (if (and c-reg (car c-reg))
-                  (if (> (count-lines (car c-reg) (nth 1 c-reg)) 
-                         (if hs-show-hidden-short-form 1 2))
-                      (progn
-                        (hs-hide-block-at-point t c-reg)
-                        (message "Hiding ... %d" (setq count (1+ count))))
-                    (goto-char (nth 1 c-reg)))))))
-       (let ((count 0)
-            (top-level-re (concat "^" hs-block-start-regexp))
-            (buf-size (buffer-size)))
-        (while 
-            (progn
-              (forward-comment buf-size)
-              (re-search-forward top-level-re (point-max) t))
-          (goto-char (match-beginning 0))
-          (hs-hide-block-at-point t)
-          (message "Hiding ... %d" (setq count (1+ count))))))
-   (hs-safety-is-job-n))
+     (let ((count 0)
+           (re (concat "\\("
+                       hs-block-start-regexp
+                       "\\)"
+                       (if hs-hide-comments-when-hiding-all
+                           (concat "\\|\\("
+                                   hs-c-start-regexp
+                                   "\\)")
+                         ""))))
+       (while (progn
+                (unless hs-hide-comments-when-hiding-all
+                  (forward-comment (point-max)))
+                (re-search-forward re (point-max) t))
+         (if (match-beginning 1)
+             ;; we have found a block beginning
+             (progn
+               (goto-char (match-beginning 1))
+               (if hs-hide-all-non-comment-function
+                   (funcall hs-hide-all-non-comment-function)
+                 (hs-hide-block-at-point t)))
+           ;; found a comment, probably
+           (let ((c-reg (hs-inside-comment-p)))
+             (when (and c-reg (car c-reg))
+               (if (> (count-lines (car c-reg) (nth 1 c-reg)) 1)
+                   (hs-hide-block-at-point t c-reg)
+                 (goto-char (nth 1 c-reg))))))
+         (message "Hiding ... %d" (setq count (1+ count))))))
    (beginning-of-line)
    (message "Hiding all blocks ... done")
    (run-hooks 'hs-hide-hook)))
 
 (defun hs-show-all ()
-  "Shows all top-level blocks.
-This does not change point; it runs the normal hook `hs-show-hook'.
-See documentation for `run-hooks'."
+  "Show everything then run `hs-show-hook'.  See `run-hooks'."
   (interactive)
   (hs-life-goes-on
    (message "Showing all blocks ...")
-   (hs-flag-region (point-min) (point-max) nil)
+   (let ((hs-allow-nesting nil))
+     (hs-discard-overlays (point-min) (point-max)))
    (message "Showing all blocks ... done")
    (run-hooks 'hs-show-hook)))
 
 (defun hs-hide-block (&optional end)
-  "Selects a block and hides it.  
-With prefix arg, reposition at end. Block is defined as a sexp for
-lispish modes, mode-specific otherwise. Comments are blocks, too.
-Upon completion, point is at repositioned and the normal hook
+  "Select a block and hide it.  With prefix arg, reposition at END.
+Upon completion, point is repositioned and the normal hook
 `hs-hide-hook' is run.  See documentation for `run-hooks'."
   (interactive "P")
   (hs-life-goes-on
    (let ((c-reg (hs-inside-comment-p)))
      (cond
-      ((and c-reg (or (null (nth 0 c-reg)) 
-                     (<= (count-lines (car c-reg) (nth 1 c-reg)) 
-                         (if hs-show-hidden-short-form 1 2))))
-          (message "Not enough comment lines to hide!"))
-      ((or c-reg (looking-at hs-block-start-regexp)
-              (hs-find-block-beginning))
+      ((and c-reg (or (null (nth 0 c-reg))
+                      (<= (count-lines (car c-reg) (nth 1 c-reg)) 1)))
+       (message "(not enough comment lines to hide)"))
+      ((or c-reg
+           (looking-at hs-block-start-regexp)
+           (hs-find-block-beginning))
        (hs-hide-block-at-point end c-reg)
-       (hs-safety-is-job-n)
        (run-hooks 'hs-hide-hook))))))
 
 (defun hs-show-block (&optional end)
-  "Selects a block and shows it.
-With prefix arg, reposition at end. Upon completion, point is
-repositioned and the normal hook `hs-show-hook' is run.  
-See documentation for `hs-hide-block' and `run-hooks'."
+  "Select a block and show it.
+With prefix arg, reposition at END.  Upon completion, point is
+repositioned and the normal hook `hs-show-hook' is run.
+See documentation for functions `hs-hide-block' and `run-hooks'."
   (interactive "P")
   (hs-life-goes-on
-   (let ((c-reg (hs-inside-comment-p)))
-     (if (or c-reg
-            (looking-at hs-block-start-regexp)
-            (hs-find-block-beginning))
-          (progn
-            (hs-show-block-at-point end c-reg)
-            (hs-safety-is-job-n)
-            (run-hooks 'hs-show-hook))))))
-
-(defun hs-show-region (beg end)
-  "Shows all lines from BEG to END, without doing any block analysis.
-Note:`hs-show-region' is intended for use when `hs-show-block' signals
-`unbalanced parentheses' and so is an emergency measure only.  You may
-become very confused if you use this command indiscriminately."
-  (interactive "r")
+   (or
+    ;; first see if we have something at the end of the line
+    (let ((ov (hs-overlay-at (save-excursion (end-of-line) (point))))
+          (here (point)))
+      (when ov
+        (goto-char
+         (cond (end (overlay-end ov))
+               ((eq 'comment (overlay-get ov 'hs)) here)
+               (t (+ (overlay-start ov) (overlay-get ov 'hs-b-offset)))))
+        (delete-overlay ov)
+        t))
+    ;; not immediately obvious, look for a suitable block
+    (let ((c-reg (hs-inside-comment-p))
+          p q)
+      (cond (c-reg
+             (when (car c-reg)
+               (setq p (car c-reg)
+                     q (cadr c-reg))))
+            ((and (hs-find-block-beginning)
+                  ;; ugh, fresh match-data
+                  (looking-at hs-block-start-regexp))
+             (setq p (point)
+                   q (progn (hs-forward-sexp (hs-match-data t) 1) (point)))))
+      (when (and p q)
+        (hs-discard-overlays p q)
+        (goto-char (if end q (1+ p)))))
+    (run-hooks 'hs-show-hook))))
+
+(defun hs-hide-level (arg)
+  "Hide all blocks ARG levels below this block.
+The hook `hs-hide-hook' is run; see `run-hooks'."
+  (interactive "p")
   (hs-life-goes-on
-   (hs-flag-region beg end nil)
-   (hs-safety-is-job-n)
-   (run-hooks 'hs-show-hook)))
+   (save-excursion
+     (message "Hiding blocks ...")
+     (hs-hide-level-recursive arg (point-min) (point-max))
+     (message "Hiding blocks ... done"))
+   (run-hooks 'hs-hide-hook)))
+
+(defun hs-toggle-hiding ()
+  "Toggle hiding/showing of a block.
+See `hs-hide-block' and `hs-show-block'."
+  (interactive)
+  (hs-life-goes-on
+   (if (hs-already-hidden-p)
+       (hs-show-block)
+     (hs-hide-block))))
 
-;;;###autoload
 (defun hs-mouse-toggle-hiding (e)
-  "Toggles hiding/showing of a block. 
-Should be bound to a mouse key."
+  "Toggle hiding/showing of a block.
+This command should be bound to a mouse key.
+Argument E is a mouse event used by `mouse-set-point'.
+See `hs-hide-block' and `hs-show-block'."
   (interactive "@e")
-  (mouse-set-point e)
-  (if (hs-already-hidden-p)
-      (hs-show-block)
-    (hs-hide-block)))
+  (hs-life-goes-on
+   (mouse-set-point e)
+   (hs-toggle-hiding)))
+
+(defun hs-hide-initial-comment-block ()
+  "Hide the first block of comments in a file.
+This can be useful if you have huge RCS logs in those comments."
+  (interactive)
+  (hs-life-goes-on
+   (let ((c-reg (save-excursion
+                  (goto-char (point-min))
+                  (skip-chars-forward " \t\n\f")
+                  (hs-inside-comment-p))))
+     (when c-reg
+       (let ((beg (car c-reg)) (end (cadr c-reg)))
+         ;; see if we have enough comment lines to hide
+         (when (> (count-lines beg end) 1)
+           (hs-hide-comment-region beg end)))))))
 
 ;;;###autoload
 (defun hs-minor-mode (&optional arg)
   "Toggle hideshow minor mode.
 With ARG, turn hideshow minor mode on if ARG is positive, off otherwise.
 When hideshow minor mode is on, the menu bar is augmented with hideshow
-commands and the hideshow commands are enabled.  
+commands and the hideshow commands are enabled.
 The value '(hs . t) is added to `buffer-invisibility-spec'.
-Last, the normal hook `hs-minor-mode-hook' is run; see the doc 
-for `run-hooks'.
 
-The main commands are: `hs-hide-all', `hs-show-all', `hs-hide-block'
-and `hs-show-block'. 
-Also see the documentation for the variable `hs-show-hidden-short-form'.
+The main commands are: `hs-hide-all', `hs-show-all', `hs-hide-block',
+`hs-show-block', `hs-hide-level' and `hs-toggle-hiding'.  There is also
+`hs-hide-initial-comment-block' and `hs-mouse-toggle-hiding'.
 
 Turning hideshow minor mode off reverts the menu bar and the
 variables to default values and disables the hideshow commands.
 
+Lastly, the normal hook `hs-minor-mode-hook' is run using `run-hooks'.
+
 Key bindings:
 \\{hs-minor-mode-map}"
 
   (interactive "P")
-  (setq hs-minor-mode
-        (if (null arg)
-           (not hs-minor-mode)
-          (> (prefix-numeric-value arg) 0)))
+  (setq hs-headline nil
+        hs-minor-mode (if (null arg)
+                          (not hs-minor-mode)
+                        (> (prefix-numeric-value arg) 0)))
   (if hs-minor-mode
       (progn
-;      (if (eq hs-emacs-type 'lucid)
-;          (progn
-;            (set-buffer-menubar (copy-sequence current-menubar))
-;            (add-menu nil (car hs-menu-bar) (cdr hs-menu-bar))))
-       (make-variable-buffer-local 'line-move-ignore-invisible)
-       (setq  line-move-ignore-invisible t)
-       (add-to-invisibility-spec '(hs . t)) ;;hs invisible
-       (hs-grok-mode-type)
-       (run-hooks 'hs-minor-mode-hook))
-;    (if (eq hs-emacs-type 'lucid)
-;      (set-buffer-menubar (delete hs-menu-bar current-menubar)))
-    (remove-from-invisibility-spec '(hs . t))))
-
-
-;;;----------------------------------------------------------------------------
-;;; load-time setup routines
-
-;; which emacs being used?
-;(setq hs-emacs-type
-;      (if (string-match "xemacs\\|lucid" emacs-version)
-;        'lucid
-;      'fsf))
+        (hs-grok-mode-type)
+        (easy-menu-add hs-minor-mode-menu)
+        (set (make-local-variable 'line-move-ignore-invisible) t)
+        (add-to-invisibility-spec '(hs . t)))
+    (easy-menu-remove hs-minor-mode-menu)
+    (remove-from-invisibility-spec '(hs . t)))
+  (run-hooks 'hs-minor-mode-hook))
+
+;;---------------------------------------------------------------------------
+;; load-time actions
 
 ;; keymaps and menus
-(if hs-minor-mode-map
-    nil
+(unless hs-minor-mode-map
   (setq hs-minor-mode-map (make-sparse-keymap))
-  ;; I beleive there is nothing bound on this keys
-  (define-key hs-minor-mode-map "\C-ch" 'hs-hide-block)
-  (define-key hs-minor-mode-map "\C-cs" 'hs-show-block)
-  (define-key hs-minor-mode-map "\C-cH" 'hs-hide-all)
-  (define-key hs-minor-mode-map "\C-cS" 'hs-show-all)
-  (define-key hs-minor-mode-map "\C-cR" 'hs-show-region)
-  
-  (define-key hs-minor-mode-map [S-mouse-2] 'hs-mouse-toggle-hiding)
-
-  ;; should we use easymenu here?
-  (define-key hs-minor-mode-map [menu-bar Hide/Show]
-    (cons "Hide/Show" (make-sparse-keymap "Hide/Show")))
-  (define-key hs-minor-mode-map [menu-bar Hide/Show  hs-show-region]
-    '("Show Region" . hs-show-region))
-  (define-key hs-minor-mode-map [menu-bar Hide/Show hs-show-all]
-    '("Show All" . hs-show-all))
-  (define-key hs-minor-mode-map [menu-bar Hide/Show hs-hide-all]
-    '("Hide All" . hs-hide-all))
-  (define-key hs-minor-mode-map [menu-bar Hide/Show hs-show-block]
-    '("Show Block" . hs-show-block))
-  (define-key hs-minor-mode-map [menu-bar Hide/Show hs-hide-block]
-    '("Hide Block" . hs-hide-block)))
+  (easy-menu-define hs-minor-mode-menu
+    hs-minor-mode-map
+    "Menu used when hideshow minor mode is active."
+    (cons "Hide/Show"
+          (mapcar
+           ;; Interpret each table entry as follows: first, populate keymap
+           ;; with elements 2 and 1; then, for easymenu, use entry directly
+           ;; unless element 0 is nil, in which case the entry is "omitted".
+           (lambda (ent)
+             (define-key hs-minor-mode-map (aref ent 2) (aref ent 1))
+             (if (aref ent 0) ent "-----"))
+           ;; These bindings roughly imitate those used by Outline mode.
+           ;; menu entry      command                key
+           '(["Hide Block"    hs-hide-block          "\C-c@\C-h"]
+             ["Show Block"    hs-show-block          "\C-c@\C-s"]
+             ["Hide All"      hs-hide-all            "\C-c@\C-\M-h"]
+             ["Show All"      hs-show-all            "\C-c@\C-\M-s"]
+             ["Hide Level"    hs-hide-level          "\C-c@\C-l"]
+             ["Toggle Hiding" hs-toggle-hiding       "\C-c@\C-c"]
+             [nil             hs-mouse-toggle-hiding [(shift mouse-2)]]
+             )))))
 
 ;; some housekeeping
-(or (assq 'hs-minor-mode minor-mode-map-alist)
-    (setq minor-mode-map-alist
-          (cons (cons 'hs-minor-mode hs-minor-mode-map)
-                minor-mode-map-alist)))
-(or (assq 'hs-minor-mode minor-mode-alist)
-    (setq minor-mode-alist (append minor-mode-alist
-                                   (list '(hs-minor-mode " hs")))))
-
-;; make some variables buffer-local
-(make-variable-buffer-local 'hs-minor-mode)
-(make-variable-buffer-local 'hs-c-start-regexp)
-(make-variable-buffer-local 'hs-block-start-regexp)
-(make-variable-buffer-local 'hs-block-end-regexp)
-(make-variable-buffer-local 'hs-forward-sexp-func)
-(make-variable-buffer-local 'hs-adjust-block-beginning)
-(put 'hs-minor-mode 'permanent-local t)
-(put 'hs-c-start-regexp 'permanent-local t)
-(put 'hs-block-start-regexp 'permanent-local t)
-(put 'hs-block-end-regexp 'permanent-local t)
-(put 'hs-forward-sexp-func 'permanent-local t)
-(put 'hs-adjust-block-beginning 'permanent-local t)
-
-
-;;;----------------------------------------------------------------------------
-;;; that's it
+(add-to-list 'minor-mode-map-alist (cons 'hs-minor-mode hs-minor-mode-map))
+(add-to-list 'minor-mode-alist '(hs-minor-mode " hs") t)
+
+;; make some variables permanently buffer-local
+(dolist (var '(hs-minor-mode
+               hs-c-start-regexp
+               hs-block-start-regexp
+               hs-block-start-mdata-select
+               hs-block-end-regexp
+               hs-forward-sexp-func
+               hs-adjust-block-beginning))
+  (make-variable-buffer-local var)
+  (put var 'permanent-local t))
+
+;;---------------------------------------------------------------------------
+;; that's it
 
 (provide 'hideshow)
 
+;;; arch-tag: 378b6852-e82a-466a-aee8-d9c73859a65e
 ;;; hideshow.el ends here