diff options
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/cedet-files.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/extract.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/cedet-files.el b/lisp/cedet/cedet-files.el index 5d149ee7560..9dacf062288 100644 --- a/lisp/cedet/cedet-files.el +++ b/lisp/cedet/cedet-files.el @@ -69,7 +69,7 @@ specific conversions during tests." (let ((file referencefile)) ;; Replace the ! with / (setq file (subst-char-in-string ?! ?/ file)) - ;; Occurances of // meant there was once a single !. + ;; Occurrences of // meant there was once a single !. (setq file (replace-regexp-in-string "//" "!" file)) ;; Handle Windows special cases diff --git a/lisp/cedet/srecode/extract.el b/lisp/cedet/srecode/extract.el index 8a324550c4d..90eda533335 100644 --- a/lisp/cedet/srecode/extract.el +++ b/lisp/cedet/srecode/extract.el @@ -216,7 +216,7 @@ Return nil if nothing was extracted." (srecode-insert-include-lookup ins dict) ;; There are two modes for includes. One is with no dict, ;; so it is inserted straight. If the dict has a name, then - ;; we need to run once per dictionary occurance. + ;; we need to run once per dictionary occurrence. (if (not (string= (oref ins :object-name) "")) ;; With a name, do the insertion. (let ((subdict (srecode-dictionary-add-section-dictionary |