diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-11-15 18:37:37 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-11-15 18:37:37 +0100 |
commit | c7015153512a7d00aba390cc1f9a6b512a9c9ed7 (patch) | |
tree | 273167d1dbfc68a60ad4c195b9cd0bcfae9a302d /lisp/cedet/srecode | |
parent | dcecfb4cb41ffa672672f55df8ce20deb7af78c4 (diff) | |
download | emacs-c7015153512a7d00aba390cc1f9a6b512a9c9ed7.tar.gz emacs-c7015153512a7d00aba390cc1f9a6b512a9c9ed7.tar.bz2 emacs-c7015153512a7d00aba390cc1f9a6b512a9c9ed7.zip |
Fix typos.
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r-- | lisp/cedet/srecode/dictionary.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/fields.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/find.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/texi.el | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/srecode/dictionary.el b/lisp/cedet/srecode/dictionary.el index 272e7693ccd..5f6806a06b3 100644 --- a/lisp/cedet/srecode/dictionary.el +++ b/lisp/cedet/srecode/dictionary.el @@ -280,7 +280,7 @@ inserted dictionaries." (progn (srecode-dictionary-show-section new "FIRST") (srecode-dictionary-show-section new "LAST")) - ;; Not the very first one. Lets clean up CAR. + ;; Not the very first one. Let's clean up CAR. (let ((tail (car (last ov)))) (srecode-dictionary-hide-section tail "LAST") (srecode-dictionary-show-section tail "NOTLAST") diff --git a/lisp/cedet/srecode/fields.el b/lisp/cedet/srecode/fields.el index d7ca84c1f97..f13fb17ca8f 100644 --- a/lisp/cedet/srecode/fields.el +++ b/lisp/cedet/srecode/fields.el @@ -338,7 +338,7 @@ PRE-LEN is used in the after mode for the length of the changed text." (inhibit-modification-hooks t) ) ;; Sometimes a field is deleted, but we might still get a stray - ;; event. Lets just ignore those events. + ;; event. Let's just ignore those events. (when (slot-boundp field 'overlay) ;; First, fixup the two overlays, in case they got confused. (let ((main (oref field overlay)) diff --git a/lisp/cedet/srecode/find.el b/lisp/cedet/srecode/find.el index fdca64a7da1..d9765ebd449 100644 --- a/lisp/cedet/srecode/find.el +++ b/lisp/cedet/srecode/find.el @@ -103,7 +103,7 @@ If TAB is nil, then always return t." (let ((proj (oref tab :project))) ;; Return t if the project wasn't set. (if (not proj) t - ;; If the project directory was set, lets check it. + ;; If the project directory was set, let's check it. (let ((dd (expand-file-name default-directory)) (projexp (regexp-quote (directory-file-name proj)))) (if (string-match (concat "^" projexp) dd) diff --git a/lisp/cedet/srecode/texi.el b/lisp/cedet/srecode/texi.el index 33440d04432..acfc2486711 100644 --- a/lisp/cedet/srecode/texi.el +++ b/lisp/cedet/srecode/texi.el @@ -231,7 +231,7 @@ This is to take advantage of TeXinfo's markup symbols." (if buffer (progn (set-buffer buffer) (srecode-texi-texify-docstring string)) - ;; Else, no buffer, so lets do something else + ;; Else, no buffer, so let's do something else (with-mode-local texinfo-mode (srecode-texi-texify-docstring string))))) |