diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-10-13 01:25:19 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-10-13 01:25:19 +0200 |
commit | c0943d3db2b2737d5092e887fd22d7088c3ca43d (patch) | |
tree | ee909e2f48e5315a883802b75866b7df861c60f5 /lisp/cedet | |
parent | 51e4f4a88de94846f6b44b3e11496c7b67aa2f5e (diff) | |
download | emacs-c0943d3db2b2737d5092e887fd22d7088c3ca43d.tar.gz |
Fix typos in docstrings, comments and ChangeLogs.
* etc/tutorials/TUTORIAL.es: Fix typos.
* lisp/cedet/semantic/symref/list.el (semantic-symref-list-rename-open-hits):
Fix typo in message.
(semantic-symref-list-map-open-hits): Fix typo in docstring.
* lisp/erc/erc-xdcc.el (erc-xdcc-help-text): Fix typo in docstring.
* lisp/gnus/nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
* lisp/international/mule.el (define-coding-system):
* lisp/international/titdic-cnv.el (quail-cxterm-package-ext-info):
* composite.el (compose-region): Fix typo in docstring.
* lisp/org/org-agenda.el (org-prefix-category-length)
(org-prefix-category-max-length): Fix typos in docstrings.
* src/font.c (Ffont_variation_glyphs):
* ccl.c (Fccl_execute_on_string): Fix typo in docstring.
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/ChangeLog | 10 | ||||
-rw-r--r-- | lisp/cedet/ede/base.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/symref/list.el | 4 |
3 files changed, 11 insertions, 5 deletions
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index c0d96e795cc..a9eaf9ded1e 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog @@ -1,3 +1,9 @@ +2010-10-12 Juanma Barranquero <lekktu@gmail.com> + + * semantic/symref/list.el (semantic-symref-list-rename-open-hits): + Fix typo in message. + (semantic-symref-list-map-open-hits): Fix typo in docstring. + 2010-09-30 Chong Yidong <cyd@stupidchicken.com> * semantic/bovine/el.el: @@ -11,8 +17,8 @@ * semantic/db-typecache.el (semanticdb-typecache-find-default): * semantic/imenu.el (semantic-create-imenu-index): * semantic/grammar.el (semantic--grammar-macro-function-tag): - * semantic/fw.el (semanticdb-without-unloaded-file-searches): Fix - require. Suggested by David Engster. + * semantic/fw.el (semanticdb-without-unloaded-file-searches): + Fix require. Suggested by David Engster. * semantic/bovine/c-by.el: Regenerate. diff --git a/lisp/cedet/ede/base.el b/lisp/cedet/ede/base.el index f1f24ed339f..4da210682f8 100644 --- a/lisp/cedet/ede/base.el +++ b/lisp/cedet/ede/base.el @@ -452,7 +452,7 @@ Do this by extracting the lowest directory name." ;; Targets and projects are often associated with other files, such as ;; header files, documentation files and the like. Have strong ;; associations can make useful user commands to quickly navigate -;; between the files base on their assocaitions. +;; between the files based on their associations. ;; (defun ede-header-file () "Return the header file for the current buffer. diff --git a/lisp/cedet/semantic/symref/list.el b/lisp/cedet/semantic/symref/list.el index 9e0ee2a1b5b..53044e278ac 100644 --- a/lisp/cedet/semantic/symref/list.el +++ b/lisp/cedet/semantic/symref/list.el @@ -492,7 +492,7 @@ Closed items will be skipped." (let ((count (semantic-symref-list-map-open-hits (lambda () (replace-match newname nil t))))) (semantic-symref-list-update-open-hits) - (message "Renamed %d occurances." count))) + (message "Renamed %d occurrences." count))) ;;; REFACTORING UTILITIES ;; @@ -501,7 +501,7 @@ Closed items will be skipped." (defun semantic-symref-list-map-open-hits (function) "For every open hit in the symref buffer, perform FUNCTION. The `match-data' will be set to a successful hit of the searched for symbol. -Return the number of occurances FUNCTION was operated upon." +Return the number of occurrences FUNCTION was operated upon." ;; First Pass in this function - a straight rename. ;; Second Pass - Allow context specification based on |