; Fix typos

This commit is contained in:
Stefan Kangas 2022-12-03 15:31:07 +01:00
parent bd58dcedfb
commit f6e2f30f39
10 changed files with 13 additions and 12 deletions

View file

@ -1578,7 +1578,7 @@ Optional PARENT and COLOR as specified with
c-mode (token &optional parent color) c-mode (token &optional parent color)
"Return an UML string describing TOKEN for C and C++. "Return an UML string describing TOKEN for C and C++.
Optional PARENT and COLOR as specified with Optional PARENT and COLOR as specified with
`semantic-abbreviate-tag-default'." `semantic-format-tag-abbreviate-default'."
;; If we have special template things, append. ;; If we have special template things, append.
(concat (semantic-format-tag-uml-prototype-default token parent color) (concat (semantic-format-tag-uml-prototype-default token parent color)
(semantic-c-template-string token parent color))) (semantic-c-template-string token parent color)))

View file

@ -351,7 +351,7 @@ Note: This index will not be saved in a persistent file.")
;; the tables without using the accessor. ;; the tables without using the accessor.
:accessor semanticdb-get-database-tables :accessor semanticdb-get-database-tables
:protection :protected :protection :protected
:documentation "List of `semantic-db-table' objects.")) :documentation "List of `semanticdb-table' objects."))
"Database of file tables.") "Database of file tables.")
(cl-defmethod semanticdb-full-filename ((obj semanticdb-table)) (cl-defmethod semanticdb-full-filename ((obj semanticdb-table))

View file

@ -123,7 +123,7 @@ See that variable for details on adding new types."
(defun semantic--format-colorize-merge-text (precoloredtext face-class) (defun semantic--format-colorize-merge-text (precoloredtext face-class)
"Apply onto PRECOLOREDTEXT a color associated with FACE-CLASS. "Apply onto PRECOLOREDTEXT a color associated with FACE-CLASS.
FACE-CLASS is a tag type found in `semantic-formatface-alist'. FACE-CLASS is a tag type found in `semantic-format-face-alist'.
See that variable for details on adding new types." See that variable for details on adding new types."
(let ((face (cdr-safe (assoc face-class semantic-format-face-alist))) (let ((face (cdr-safe (assoc face-class semantic-format-face-alist)))
(newtext (concat precoloredtext))) (newtext (concat precoloredtext)))

View file

@ -457,7 +457,7 @@ parts of the parent classes are displayed."
;; it. The simple `semanticdb-find-tag-by-...' are simple, and ;; it. The simple `semanticdb-find-tag-by-...' are simple, and
;; you need to pass it the exact name you want. ;; you need to pass it the exact name you want.
;; ;;
;; The analyzer function `semantic-analyze-tag-name' will take ;; The analyzer function `semantic-analyze-find-tag' will take
;; more complex names, such as the cpp symbol foo::bar::baz, ;; more complex names, such as the cpp symbol foo::bar::baz,
;; and break it up, and dive through the namespaces. ;; and break it up, and dive through the namespaces.
(let ((class (semantic-analyze-find-tag typename))) (let ((class (semantic-analyze-find-tag typename)))

View file

@ -347,7 +347,7 @@ Returns t if all processing succeeded."
"Core handler for idle work processing of long running tasks. "Core handler for idle work processing of long running tasks.
Visits Semantic controlled buffers, and makes sure all needed Visits Semantic controlled buffers, and makes sure all needed
include files have been parsed, and that the typecache is up to date. include files have been parsed, and that the typecache is up to date.
Uses `semantic-idle-work-for-on-buffer' to do the work." Uses `semantic-idle-work-for-one-buffer' to do the work."
(let* (let*
((errbuf nil) ((errbuf nil)
(interrupted (interrupted

View file

@ -1256,7 +1256,7 @@ DOC is the documentation for the analyzer.
REGEXP is a regular expression for the analyzer to match. REGEXP is a regular expression for the analyzer to match.
See `define-lex-regex-analyzer' for more on regexp. See `define-lex-regex-analyzer' for more on regexp.
TOKIDX is an index into REGEXP for which a new lexical token TOKIDX is an index into REGEXP for which a new lexical token
of type `spp-macro-include' is to be created. of type `spp-system-include' is to be created.
VALFORM are forms that return the name of the thing being included, and the VALFORM are forms that return the name of the thing being included, and the
type of include. The return value should be of the form: type of include. The return value should be of the form:
(NAME . TYPE) (NAME . TYPE)

View file

@ -1436,9 +1436,9 @@ Return either a paren token or a semantic list token depending on
(define-lex semantic-comment-lexer (define-lex semantic-comment-lexer
"A simple lexical analyzer that handles comments. "A simple lexical analyzer that handles comments.
This lexer will only return comment tokens. It is the default lexer This lexer will only return comment tokens. It is the default
used by `semantic-find-doc-snarf-comment' to snarf up the comment at lexer used by `semantic-doc-snarf-comment-for-tag' to snarf up
point." the comment at point."
semantic-lex-ignore-whitespace semantic-lex-ignore-whitespace
semantic-lex-ignore-newline semantic-lex-ignore-newline
semantic-lex-comments semantic-lex-comments

View file

@ -474,7 +474,7 @@ The default behavior, if not overridden with
the name of TAG. the name of TAG.
If this function is overridden, use If this function is overridden, use
`semantic-tag-external-member-children-p-default' to also `semantic-tag-external-member-children-default' to also
include the default behavior, and merely extend your own." include the default behavior, and merely extend your own."
) )

View file

@ -388,7 +388,8 @@ Each element is a cons cell of the form (LINE . FILENAME).")
:type list :type list
:documentation :documentation
"The list of tags with hits in them. "The list of tags with hits in them.
Use the `semantic-symref-hit-tags' method to get this list.") Use the `semantic-symref-hit-to-tag-via-buffer' method to get
this list.")
) )
"The results from a symbol reference search.") "The results from a symbol reference search.")

View file

@ -349,7 +349,7 @@ determined automatically."
(defcustom speedbar-sort-tags nil (defcustom speedbar-sort-tags nil
"If non-nil, sort tags in the speedbar display. *Obsolete*. "If non-nil, sort tags in the speedbar display. *Obsolete*.
Use `semantic-tag-hierarchy-method' instead." Use `speedbar-tag-hierarchy-method' instead."
:group 'speedbar :group 'speedbar
:type 'boolean) :type 'boolean)