comparison lisp/progmodes/hideshow.el @ 105275:b78ceb253d15

* speedbar.el (speedbar-item-delete): * calc/calc-prog.el (calc-kbd-if): * language/hanja-util.el (hanja-init-load): Fix typos in messages. * epa.el (epa-key-list-mode-map): * hi-lock.el (hi-lock-menu): Fix typos in menus. * progmodes/hideshow.el (hs-allow-nesting): Reflow docstring. (hs-show-hook): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 29 Sep 2009 02:26:20 +0000
parents 7669aca277d5
children a0f778f4a995
comparison
equal deleted inserted replaced
105274:506031e65b65 105275:b78ceb253d15
302 (defvar hs-hide-all-non-comment-function nil 302 (defvar hs-hide-all-non-comment-function nil
303 "*Function called if non-nil when doing `hs-hide-all' for non-comments.") 303 "*Function called if non-nil when doing `hs-hide-all' for non-comments.")
304 304
305 (defvar hs-allow-nesting nil 305 (defvar hs-allow-nesting nil
306 "*If non-nil, hiding remembers internal blocks. 306 "*If non-nil, hiding remembers internal blocks.
307 This means that when the outer block is shown again, any 307 This means that when the outer block is shown again,
308 previously hidden internal blocks remain hidden.") 308 any previously hidden internal blocks remain hidden.")
309 309
310 (defvar hs-hide-hook nil 310 (defvar hs-hide-hook nil
311 "*Hook called (with `run-hooks') at the end of commands to hide text. 311 "*Hook called (with `run-hooks') at the end of commands to hide text.
312 These commands include the toggling commands (when the result is to hide 312 These commands include the toggling commands (when the result is to hide
313 a block), `hs-hide-all', `hs-hide-block' and `hs-hide-level'.") 313 a block), `hs-hide-all', `hs-hide-block' and `hs-hide-level'.")
314 314
315 (defvar hs-show-hook nil 315 (defvar hs-show-hook nil
316 "*Hook called (with `run-hooks') at the end of commands to show text. 316 "*Hook called (with `run-hooks') at the end of commands to show text.
317 These commands include the toggling commands (when the result is to show 317 These commands include the toggling commands (when the result is to show
318 a block), `hs-show-all' and `hs-show-block'..") 318 a block), `hs-show-all' and `hs-show-block'.")
319 319
320 (defvar hs-set-up-overlay nil 320 (defvar hs-set-up-overlay nil
321 "*Function called with one arg, OV, a newly initialized overlay. 321 "*Function called with one arg, OV, a newly initialized overlay.
322 Hideshow puts a unique overlay on each range of text to be hidden 322 Hideshow puts a unique overlay on each range of text to be hidden
323 in the buffer. Here is a simple example of how to use this variable: 323 in the buffer. Here is a simple example of how to use this variable: