diff options
Diffstat (limited to 'lisp/cedet/srecode')
-rw-r--r-- | lisp/cedet/srecode/document.el | 3 | ||||
-rw-r--r-- | lisp/cedet/srecode/extract.el | 2 | ||||
-rw-r--r-- | lisp/cedet/srecode/semantic.el | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/lisp/cedet/srecode/document.el b/lisp/cedet/srecode/document.el index a25d1441f1f..c264ebaa70a 100644 --- a/lisp/cedet/srecode/document.el +++ b/lisp/cedet/srecode/document.el @@ -29,7 +29,8 @@ ;; ;;; Origins: ;; -;; Document was first written w/ cparse, a custom regexp based c parser. +;; Document was first written with cparse, a custom regexp based c +;; parser. ;; ;; Document was then ported to cedet/semantic using sformat (super ;; format) as the templating engine. diff --git a/lisp/cedet/srecode/extract.el b/lisp/cedet/srecode/extract.el index 7d4539dcb42..f218f1c6e9d 100644 --- a/lisp/cedet/srecode/extract.el +++ b/lisp/cedet/srecode/extract.el @@ -219,7 +219,7 @@ Return nil if nothing was extracted." ;; With a name, do the insertion. (let ((subdict (srecode-dictionary-add-section-dictionary dict (oref ins object-name)))) - (error "Need to implement include w/ name extractor") + (error "Need to implement include with name extractor") ;; Recurse into the new template while no errors. (while (condition-case nil (progn diff --git a/lisp/cedet/srecode/semantic.el b/lisp/cedet/srecode/semantic.el index ea7fda004e7..c5ceb89d2dc 100644 --- a/lisp/cedet/srecode/semantic.el +++ b/lisp/cedet/srecode/semantic.el @@ -43,8 +43,8 @@ ;;; The SEMANTIC TAG inserter ;; -;; Put a tag into the dictionary that can be used w/ arbitrary -;; lisp expressions. +;; Put a tag into the dictionary that can be used with arbitrary +;; Lisp expressions. (defclass srecode-semantic-tag (srecode-dictionary-compound-value) ((prime :initarg :prime |