comparison lisp/cedet/srecode/extract.el @ 106894:b3b9ebd930e1

Fix typos in comments.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 18 Jan 2010 04:58:35 +0100
parents 1d1d5d9bd884
children 376148b31b5e
comparison
equal deleted inserted replaced
106893:7fce83bc7acf 106894:b3b9ebd930e1
214 Return nil if nothing was extracted." 214 Return nil if nothing was extracted."
215 (goto-char start) 215 (goto-char start)
216 (srecode-insert-include-lookup ins dict) 216 (srecode-insert-include-lookup ins dict)
217 ;; There are two modes for includes. One is with no dict, 217 ;; There are two modes for includes. One is with no dict,
218 ;; so it is inserted straight. If the dict has a name, then 218 ;; so it is inserted straight. If the dict has a name, then
219 ;; we need to run once per dictionary occurance. 219 ;; we need to run once per dictionary occurrence.
220 (if (not (string= (oref ins :object-name) "")) 220 (if (not (string= (oref ins :object-name) ""))
221 ;; With a name, do the insertion. 221 ;; With a name, do the insertion.
222 (let ((subdict (srecode-dictionary-add-section-dictionary 222 (let ((subdict (srecode-dictionary-add-section-dictionary
223 dict (oref ins :object-name)))) 223 dict (oref ins :object-name))))
224 (error "Need to implement include w/ name extractor") 224 (error "Need to implement include w/ name extractor")