diff options
Diffstat (limited to 'lisp/cedet/semantic/complete.el')
-rw-r--r-- | lisp/cedet/semantic/complete.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index a61bccbcb62..1c887672819 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el @@ -1,7 +1,7 @@ ;;; semantic/complete.el --- Routines for performing tag completion -;;; Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009 -;;; Free Software Foundation, Inc. +;; Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009 +;; Free Software Foundation, Inc. ;; Author: Eric M. Ludlam <zappo@gnu.org> ;; Keywords: syntax @@ -36,7 +36,7 @@ ;; quickly without resorting to "show me every possible option now". ;; ;; In addition, some symbol names will appear in multiple locations. -;; If it is important to distiguish, then a way to provide a choice +;; If it is important to distinguish, then a way to provide a choice ;; over these locations is important as well. ;; ;; Beyond brute force offers for completion of plain strings, @@ -55,7 +55,7 @@ ;; ;; Here, we will treat each section separately (excluding D) ;; They can then be strung together in user-visible commands to -;; fullfill specific needs. +;; fulfil specific needs. ;; ;; COLLECTORS: ;; @@ -194,7 +194,7 @@ Keeps STRINGS only in the history.") Argument COLLECTOR is an object which can be used to to calculate a list of possible hits. See `semantic-completion-collector-engine' for details on COLLECTOR. -Argumeng DISPLAYOR is an object used to display a list of possible +Argument DISPLAYOR is an object used to display a list of possible completions for a given prefix. See`semantic-completion-display-engine' for details on DISPLAYOR. PROMPT is a string to prompt with. @@ -736,7 +736,7 @@ DO NOT CALL THIS IF THE INLINE COMPLETION ENGINE IS NOT ACTIVE." Argument COLLECTOR is an object which can be used to to calculate a list of possible hits. See `semantic-completion-collector-engine' for details on COLLECTOR. -Argumeng DISPLAYOR is an object used to display a list of possible +Argument DISPLAYOR is an object used to display a list of possible completions for a given prefix. See`semantic-completion-display-engine' for details on DISPLAYOR. BUFFER is the buffer in which completion will take place. @@ -1766,7 +1766,7 @@ completion text in ghost text." C))) (eieio-build-class-alist semantic-displayor-abstract t)) ) - "Possible options for inlince completion displayors. + "Possible options for inline completion displayors. Use this to enable custom editing.") (defcustom semantic-complete-inline-analyzer-displayor-class @@ -1879,7 +1879,7 @@ to generate the list of possible completions. PROMPT is the first part of the prompt. Additional prompt is added based on the contexts full prefix. CONTEXT is the semantic analyzer context to start with. -HISTORY is a symbol representing a variable to stor the history in. +HISTORY is a symbol representing a variable to store the history in. usually a default-tag and initial-input are available for completion prompts. these are calculated from the CONTEXT variable passed in." (if (not context) (setq context (semantic-analyze-current-context (point)))) |