diff options
| author | Paul Eggert | 2019-11-11 10:30:13 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-11-11 10:32:53 -0800 |
| commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
| tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/cedet/srecode/semantic.el | |
| parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
| download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip | |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/cedet/srecode/semantic.el')
| -rw-r--r-- | lisp/cedet/srecode/semantic.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/srecode/semantic.el b/lisp/cedet/srecode/semantic.el index 344b908da32..5195016e22a 100644 --- a/lisp/cedet/srecode/semantic.el +++ b/lisp/cedet/srecode/semantic.el | |||
| @@ -210,7 +210,7 @@ variable default values, and other things." | |||
| 210 | ;;; :tagtype ARGUMENT HANDLING | 210 | ;;; :tagtype ARGUMENT HANDLING |
| 211 | ;; | 211 | ;; |
| 212 | ;; When a :tagtype argument is required, identify the current tag, of | 212 | ;; When a :tagtype argument is required, identify the current tag, of |
| 213 | ;; cf class 'type. Apply those parameters to the dictionary. | 213 | ;; class 'type'. Apply those parameters to the dictionary. |
| 214 | 214 | ||
| 215 | (defun srecode-semantic-handle-:tagtype (dict) | 215 | (defun srecode-semantic-handle-:tagtype (dict) |
| 216 | "Add macros into the dictionary DICT based on a tag of class type at point. | 216 | "Add macros into the dictionary DICT based on a tag of class type at point. |
| @@ -218,7 +218,7 @@ Assumes the cursor is in a tag of class type. If not, throw an error." | |||
| 218 | (let ((typetag (or srecode-semantic-selected-tag | 218 | (let ((typetag (or srecode-semantic-selected-tag |
| 219 | (semantic-current-tag-of-class 'type)))) | 219 | (semantic-current-tag-of-class 'type)))) |
| 220 | (when (not typetag) | 220 | (when (not typetag) |
| 221 | (error "Cursor is not in a TAG of class 'type")) | 221 | (error "Cursor is not in a TAG of class `type'")) |
| 222 | (srecode-semantic-apply-tag-to-dict | 222 | (srecode-semantic-apply-tag-to-dict |
| 223 | typetag | 223 | typetag |
| 224 | dict))) | 224 | dict))) |
| @@ -285,8 +285,8 @@ CTXT is the pre-calculated context." | |||
| 285 | "Insert TAG into a buffer using srecode templates at point. | 285 | "Insert TAG into a buffer using srecode templates at point. |
| 286 | 286 | ||
| 287 | Optional STYLE-OPTION is a list of minor configuration of styles, | 287 | Optional STYLE-OPTION is a list of minor configuration of styles, |
| 288 | such as the symbol 'prototype for prototype functions, or | 288 | such as the symbol `prototype' for prototype functions, or |
| 289 | 'system for system includes, and 'doxygen, for a doxygen style | 289 | `system' for system includes, and `doxygen', for a doxygen style |
| 290 | comment. | 290 | comment. |
| 291 | 291 | ||
| 292 | Optional third argument POINT-INSERT-FCN is a hook that is run after | 292 | Optional third argument POINT-INSERT-FCN is a hook that is run after |