diff options
| author | Juanma Barranquero | 2010-04-02 04:25:19 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-04-02 04:25:19 +0200 |
| commit | e4b204d75ff161c1f4823eee5187fd0a64511f60 (patch) | |
| tree | ba69acd34d2ee02b21acd9f4e358a5dd3c35d0ba | |
| parent | 194d44e7178017800d7e1d45e2add2b708b60915 (diff) | |
| download | emacs-e4b204d75ff161c1f4823eee5187fd0a64511f60.tar.gz emacs-e4b204d75ff161c1f4823eee5187fd0a64511f60.zip | |
Fix typos in semantic/imenu.el.
* cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members)
(semantic-create-imenu-directory-index): Fix typos in docstrings.
(semantic-imenu-goto-function): Reflow docstring.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/cedet/semantic/imenu.el | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b30a89f8473..911e447129f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-04-02 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * cedet/semantic/imenu.el (semantic-imenu-bucketize-type-members) | ||
| 4 | (semantic-create-imenu-directory-index): Fix typos in docstrings. | ||
| 5 | (semantic-imenu-goto-function): Reflow docstring. | ||
| 6 | |||
| 1 | 2010-03-30 Tomas Abrahamsson <tab@lysator.liu.se> | 7 | 2010-03-30 Tomas Abrahamsson <tab@lysator.liu.se> |
| 2 | 8 | ||
| 3 | * textmodes/artist.el (artist-mode): Fix typo in docstring. | 9 | * textmodes/artist.el (artist-mode): Fix typo in docstring. |
diff --git a/lisp/cedet/semantic/imenu.el b/lisp/cedet/semantic/imenu.el index 3c73b893925..9ce986553aa 100644 --- a/lisp/cedet/semantic/imenu.el +++ b/lisp/cedet/semantic/imenu.el | |||
| @@ -95,7 +95,7 @@ This option is ignored if `semantic-imenu-bucketize-file' is nil." | |||
| 95 | 95 | ||
| 96 | (defcustom semantic-imenu-bucketize-type-members t | 96 | (defcustom semantic-imenu-bucketize-type-members t |
| 97 | "*Non-nil if members of a type should be grouped into buckets. | 97 | "*Non-nil if members of a type should be grouped into buckets. |
| 98 | nil means to keep them in the same order. | 98 | A nil value means to keep them in the same order. |
| 99 | Overriden to nil if `semantic-imenu-bucketize-file' is nil." | 99 | Overriden to nil if `semantic-imenu-bucketize-file' is nil." |
| 100 | :group 'semantic-imenu | 100 | :group 'semantic-imenu |
| 101 | :type 'boolean) | 101 | :type 'boolean) |
| @@ -167,8 +167,8 @@ concoct a combination of file name, and position." | |||
| 167 | 167 | ||
| 168 | (defun semantic-imenu-goto-function (name position &optional rest) | 168 | (defun semantic-imenu-goto-function (name position &optional rest) |
| 169 | "Move point associated with NAME to POSITION. | 169 | "Move point associated with NAME to POSITION. |
| 170 | Used to override function `imenu-default-goto-function' so that we can continue | 170 | Used to override function `imenu-default-goto-function' so that |
| 171 | to use overlays to maintain the current position. | 171 | we can continue to use overlays to maintain the current position. |
| 172 | Optional argument REST is some extra stuff." | 172 | Optional argument REST is some extra stuff." |
| 173 | (require 'pulse) | 173 | (require 'pulse) |
| 174 | (if (semantic-overlay-p position) | 174 | (if (semantic-overlay-p position) |
| @@ -249,7 +249,7 @@ Optional argument STREAM is an optional stream of tags used to create menus." | |||
| 249 | 'semantic-imenu-flush-fcn nil t))) | 249 | 'semantic-imenu-flush-fcn nil t))) |
| 250 | 250 | ||
| 251 | (defun semantic-create-imenu-directory-index (&optional stream) | 251 | (defun semantic-create-imenu-directory-index (&optional stream) |
| 252 | "Create an IMENU tag index based on all files active in semanticdb. | 252 | "Create an imenu tag index based on all files active in semanticdb. |
| 253 | Optional argument STREAM is the stream of tags for the current buffer." | 253 | Optional argument STREAM is the stream of tags for the current buffer." |
| 254 | (if (not semanticdb-current-database) | 254 | (if (not semanticdb-current-database) |
| 255 | (semantic-create-imenu-index-1 stream nil) | 255 | (semantic-create-imenu-index-1 stream nil) |