diff options
Diffstat (limited to 'lisp/cedet/srecode/cpp.el')
| -rw-r--r-- | lisp/cedet/srecode/cpp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/srecode/cpp.el b/lisp/cedet/srecode/cpp.el index 306c60f1b61..9d30b163ee4 100644 --- a/lisp/cedet/srecode/cpp.el +++ b/lisp/cedet/srecode/cpp.el | |||
| @@ -43,7 +43,7 @@ | |||
| 43 | "List expansion candidates for the :using-namespaces argument. | 43 | "List expansion candidates for the :using-namespaces argument. |
| 44 | A dictionary entry of the named PREFIX_NAMESPACE with the value | 44 | A dictionary entry of the named PREFIX_NAMESPACE with the value |
| 45 | NAMESPACE:: is created for each namespace unless the current | 45 | NAMESPACE:: is created for each namespace unless the current |
| 46 | buffer contains a using NAMESPACE; statement " | 46 | buffer contains a using NAMESPACE; statement." |
| 47 | :group 'srecode-cpp | 47 | :group 'srecode-cpp |
| 48 | :type '(repeat string)) | 48 | :type '(repeat string)) |
| 49 | 49 | ||
| @@ -56,7 +56,7 @@ buffer contains a using NAMESPACE; statement " | |||
| 56 | 56 | ||
| 57 | ;;;###autoload | 57 | ;;;###autoload |
| 58 | (defun srecode-semantic-handle-:c (dict) | 58 | (defun srecode-semantic-handle-:c (dict) |
| 59 | "Add macros into the dictionary DICT based on the current c file. | 59 | "Add macros into the dictionary DICT based on the current C file. |
| 60 | Adds the following: | 60 | Adds the following: |
| 61 | FILENAME_SYMBOL - filename converted into a C compat symbol. | 61 | FILENAME_SYMBOL - filename converted into a C compat symbol. |
| 62 | HEADER - Shown section if in a header file." | 62 | HEADER - Shown section if in a header file." |
| @@ -110,7 +110,7 @@ PREFIX_NAMESPACE - for each NAMESPACE in `srecode-cpp-namespaces'." | |||
| 110 | (define-mode-local-override srecode-semantic-apply-tag-to-dict | 110 | (define-mode-local-override srecode-semantic-apply-tag-to-dict |
| 111 | c-mode (tag-wrapper dict) | 111 | c-mode (tag-wrapper dict) |
| 112 | "Apply C and C++ specific features from TAG-WRAPPER into DICT. | 112 | "Apply C and C++ specific features from TAG-WRAPPER into DICT. |
| 113 | Calls `srecode-semantic-apply-tag-to-dict-default' first. Adds | 113 | Calls `srecode-semantic-apply-tag-to-dict-default' first. Adds |
| 114 | special behavior for tag of classes include, using and function. | 114 | special behavior for tag of classes include, using and function. |
| 115 | 115 | ||
| 116 | This function cannot be split into C and C++ specific variants, as | 116 | This function cannot be split into C and C++ specific variants, as |