aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode/cpp.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cedet/srecode/cpp.el')
-rw-r--r--lisp/cedet/srecode/cpp.el6
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.
44A dictionary entry of the named PREFIX_NAMESPACE with the value 44A dictionary entry of the named PREFIX_NAMESPACE with the value
45NAMESPACE:: is created for each namespace unless the current 45NAMESPACE:: is created for each namespace unless the current
46buffer contains a using NAMESPACE; statement " 46buffer 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.
60Adds the following: 60Adds the following:
61FILENAME_SYMBOL - filename converted into a C compat symbol. 61FILENAME_SYMBOL - filename converted into a C compat symbol.
62HEADER - Shown section if in a header file." 62HEADER - 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.
113Calls `srecode-semantic-apply-tag-to-dict-default' first. Adds 113Calls `srecode-semantic-apply-tag-to-dict-default' first. Adds
114special behavior for tag of classes include, using and function. 114special behavior for tag of classes include, using and function.
115 115
116This function cannot be split into C and C++ specific variants, as 116This function cannot be split into C and C++ specific variants, as