aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/hideif.el
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-06-09 11:59:12 +0000
committerJim Blandy <[email protected]>1993-06-09 11:59:12 +0000
commiteb8c3be94e12644f506b8857e49ffef88046bb0b (patch)
tree505c4ea5ae59214e4d6e749047d160c98191c9d2 /lisp/progmodes/hideif.el
parent16a4a21d0117ef5ed346f340f244fe199d3c8a26 (diff)
Apply typo patches from Paul Eggert.
Diffstat (limited to 'lisp/progmodes/hideif.el')
-rw-r--r--lisp/progmodes/hideif.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index b408431e45..6394de36f7 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -568,7 +568,7 @@ NOT including one on this line."
((hif-looking-at-endif)
'done)
(t
- (error "Missmatched #ifdef #endif pair"))))
+ (error "Mismatched #ifdef #endif pair"))))
(defun hif-endif-to-ifdef ()
@@ -577,7 +577,7 @@ NOT including one on this line."
(let ((start (point)))
(hif-find-previous-relevant)
(if (= start (point))
- (error "Missmatched #ifdef #endif pair")))
+ (error "Mismatched #ifdef #endif pair")))
(cond ((hif-looking-at-endif)
(hif-endif-to-ifdef) ; find beginning of nested if
(hif-endif-to-ifdef)) ; find beginning of outer if or else
@@ -938,7 +938,7 @@ Turn off hiding by calling `show-ifdef'."
(defun hif-find-ifdef-block ()
- "Utilitiy for hide and show `ifdef-block'.
+ "Utility for hide and show `ifdef-block'.
Set top and bottom of ifdef block."
(let (max-bottom)
(save-excursion
@@ -997,7 +997,7 @@ Set top and bottom of ifdef block."
(if old-read-only (toggle-read-only))))
-;;; defininition alist support
+;;; definition alist support
(defvar hide-ifdef-define-alist nil
"A global assoc list of pre-defined symbol lists")