diff options
Diffstat (limited to 'lisp/cedet/semantic/symref')
-rw-r--r-- | lisp/cedet/semantic/symref/filter.el | 6 | ||||
-rw-r--r-- | lisp/cedet/semantic/symref/grep.el | 6 | ||||
-rw-r--r-- | lisp/cedet/semantic/symref/list.el | 18 |
3 files changed, 15 insertions, 15 deletions
diff --git a/lisp/cedet/semantic/symref/filter.el b/lisp/cedet/semantic/symref/filter.el index 97e5c92a6ab..2b12fd7253d 100644 --- a/lisp/cedet/semantic/symref/filter.el +++ b/lisp/cedet/semantic/symref/filter.el @@ -1,6 +1,6 @@ ;;; semantic/symref/filter.el --- Filter symbol reference hits for accuracy. -;;; Copyright (C) 2009 Free Software Foundation, Inc. +;; Copyright (C) 2009 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <eric@siege-engine.com> @@ -60,10 +60,10 @@ Return non-nil for a match." ;; a symref results object. (defun semantic-symref-hits-in-region (target hookfcn start end) - "Find all occurances of the symbol TARGET that match TARGET the tag. + "Find all occurrences of the symbol TARGET that match TARGET the tag. For each match, call HOOKFCN. HOOKFCN takes three arguments that match -`semantic-analyze-current-symbol's use of HOOKfCN. +`semantic-analyze-current-symbol's use of HOOKFCN. ( START END PREFIX ) Search occurs in the current buffer between START and END." diff --git a/lisp/cedet/semantic/symref/grep.el b/lisp/cedet/semantic/symref/grep.el index 3033a41faaf..bd9e731c722 100644 --- a/lisp/cedet/semantic/symref/grep.el +++ b/lisp/cedet/semantic/symref/grep.el @@ -1,6 +1,6 @@ ;;; semantic/symref/grep.el --- Symref implementation using find/grep -;;; Copyright (C) 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 2008, 2009 Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <eric@siege-engine.com> @@ -103,9 +103,9 @@ Optional argument MODE specifies the `major-mode' to test." (defun semantic-symref-grep-use-template (rootdir filepattern grepflags greppattern) "Use the grep template expand feature to create a grep command. ROOTDIR is the root location to run the `find' from. -FILEPATTERN is a string represeting find flags for searching file patterns. +FILEPATTERN is a string representing find flags for searching file patterns. GREPFLAGS are flags passed to grep, such as -n or -l. -GREPPATTERN is the pattren used by grep." +GREPPATTERN is the pattern used by grep." ;; We have grep-compute-defaults. Lets use it. (grep-compute-defaults) (let* ((grep-expand-keywords semantic-symref-grep-expand-keywords) diff --git a/lisp/cedet/semantic/symref/list.el b/lisp/cedet/semantic/symref/list.el index ad1d471d69e..7351c73adfc 100644 --- a/lisp/cedet/semantic/symref/list.el +++ b/lisp/cedet/semantic/symref/list.el @@ -23,11 +23,11 @@ ;; ;; Provide a simple user facing API to finding symbol references. ;; -;; This UI will is the base of some refactoring tools. For any -;; refactor, the user will execture `semantic-symref' in a tag. Once -;; that data is collected, the output will be listed in a buffer. In -;; the output buffer, the user can then initiate different refactoring -;; operations. +;; This UI is the base of some refactoring tools. For any refactor, +;; the user will execture [FIXME what?] `semantic-symref' in a tag. +;; Once that data is collected, the output will be listed in a buffer. +;; In the output buffer, the user can then initiate different +;; refactoring operations. ;; ;; NOTE: Need to add some refactoring tools. @@ -41,10 +41,10 @@ (defun semantic-symref () "Find references to the current tag. This command uses the currently configured references tool within the -current project to find references to the current tag. The +current project to find references to the current tag. The references are the organized by file and the name of the function they are used in. -Display the references in`semantic-symref-results-mode'" +Display the references in`semantic-symref-results-mode'." (interactive) (semantic-fetch-tags) (let ((ct (semantic-current-tag)) @@ -67,7 +67,7 @@ This command uses the currently configured references tool within the current project to find references to the input SYM. The references are the organized by file and the name of the function they are used in. -Display the references in`semantic-symref-results-mode'" +Display the references in`semantic-symref-results-mode'." (interactive (list (semantic-tag-name (semantic-complete-read-tag-buffer-deep "Symrefs for: ")))) (semantic-fetch-tags) @@ -141,7 +141,7 @@ RESULTS is an object of class `semantic-symref-results'." ) (defun semantic-symref-hide-buffer () - "Hide buffer with sematinc-symref results" + "Hide buffer with semantic-symref results." (interactive) (bury-buffer)) |