From: Juanma Barranquero Date: Wed, 16 Oct 2002 06:29:03 +0000 (+0000) Subject: Fix typo. X-Git-Tag: emacs-pretest-21.2.92~42 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=796a8f27c11e44afa19a5622ddac20e31c4cfaa6;p=emacs.git Fix typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 273f051b4c1..abacf76e98f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2002-10-16 Juanma Barranquero + + * vc-hooks.el (vc-insert-file): Fix typo. + + * replace.el (occur): Likewise. + + * subr.el (remove, remq): Likewise. + 2002-10-15 Dave Love * man.el (Man-getpage-in-background): Set width in environment. diff --git a/lisp/info-look.el b/lisp/info-look.el index b76816d99aa..f80fb00ea57 100644 --- a/lisp/info-look.el +++ b/lisp/info-look.el @@ -368,7 +368,7 @@ If optional argument QUERY is non-nil, query for the help mode." (goto-char (match-beginning 0)) (and (display-color-p) info-lookup-highlight-face ;; Search again for ITEM so that the first - ;; occurence of ITEM will be highlighted. + ;; occurrence of ITEM will be highlighted. (re-search-forward (regexp-quote item)) (let ((start (match-beginning 0)) (end (match-end 0))) diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 415dfb3d4e8..f60ff83fd15 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -8193,7 +8193,7 @@ but not if inside a comment or quote)." (setq prompt (match-string 1)) (replace-match "") (setq string (vhdl-template-field prompt nil t)) - ;; replace occurences of same prompt + ;; replace occurrences of same prompt (while (re-search-forward (concat "<\\(" prompt "\\)>") end t) (replace-match (or string ""))) (goto-char position)))