summaryrefslogtreecommitdiff
path: root/lisp/progmodes/hideshow.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-04 23:18:48 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-04 23:18:48 +0000
commitebfa69444dce5d5d807aaf0b067cd01259b85e51 (patch)
tree997230987691faae1a35954e8a32d5943ba942f1 /lisp/progmodes/hideshow.el
parent0f668406bbd9fffd94c9fc13b4f2d4af64d00a1a (diff)
downloademacs-ebfa69444dce5d5d807aaf0b067cd01259b85e51.tar.gz
(hs-hide-block): Fix message spelling.
Diffstat (limited to 'lisp/progmodes/hideshow.el')
-rw-r--r--lisp/progmodes/hideshow.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/hideshow.el b/lisp/progmodes/hideshow.el
index 4842d06d5fa..0b932e06313 100644
--- a/lisp/progmodes/hideshow.el
+++ b/lisp/progmodes/hideshow.el
@@ -77,7 +77,7 @@
(defvar hs-unbalance-handler-method 'top-level
"*Symbol representing how \"unbalanced parentheses\" should be handled.
-This error is usually signalled by hs-show-block. One of four values:
+This error is usually signaled by hs-show-block. One of four values:
`top-level', `next-line', `signal' or `ignore'. Default is `top-level'.
- `top-level' -- Show top-level block containing the currently troublesome
@@ -345,7 +345,7 @@ hs-hide-hooks is called. See documentation for `run-hooks'."
(cond ((string= comment-end "")
(message "can't hide a single-line comment"))
((< (count-lines (car c-reg) (nth 1 c-reg)) 2)
- (message "not enougn comment lines to hide"))
+ (message "not enough comment lines to hide"))
(t
(goto-char (nth 1 c-reg))
(forward-line -1)
@@ -363,7 +363,7 @@ hs-hide-hooks is called. See documentation for `run-hooks'."
(defun hs-show-block (&optional end)
"Selects a block and shows it. With prefix arg, reposition at end.
Upon completion, point is repositioned hs-show-hooks are called. See
-documetation for `hs-hide-block' and `run-hooks'."
+documentation for `hs-hide-block' and `run-hooks'."
(interactive "P")
(hs-life-goes-on
(let ((c-reg (hs-inside-comment-p)))