comparison lisp/cedet/semantic/complete.el @ 106860:4cf58c2379f4

Mario Lang <mlang@delysid.org>: Remove some duplicated words. * cedet/ede/cpp-root.el (ede-cpp-root-project): * cedet/ede/files.el (ede-expand-filename): * cedet/ede/simple.el (ede-simple-project): * cedet/semantic/complete.el (semantic-complete-read-tag-engine) (semantic-complete-inline-tag-engine): * cedet/semantic/db-el.el (semanticdb-equivalent-mode): * cedet/semantic/db-global.el (semanticdb-equivalent-mode): * cedet/semantic/db-javascript.el (semanticdb-equivalent-mode): * cedet/semantic/db.el (semanticdb-equivalent-mode): * cedet/semantic/decorate/include.el (semantic-decoration-unknown-include-describe): * cedet/semantic/idle.el (semantic-idle-work-for-one-buffer): * emacs-lisp/chart.el (chart-translate-namezone): * textmodes/artist.el (artist-compute-popup-menu-table): Remove duplicated words in doc-strings. * srecode/doc-cpp.srt, srecode/doc-default.srt: * srecode/doc-java.srt: Remove duplicated words. * ede.texi (ede-target): * org.texi (Refiling notes): Remove duplicated words.
author Glenn Morris <rgm@gnu.org>
date Fri, 15 Jan 2010 18:51:50 -0800
parents 1d1d5d9bd884
children 907ba0dc2be7
comparison
equal deleted inserted replaced
106859:1ee66866ef44 106860:4cf58c2379f4
190 190
191 (defun semantic-complete-read-tag-engine (collector displayor prompt 191 (defun semantic-complete-read-tag-engine (collector displayor prompt
192 default-tag initial-input 192 default-tag initial-input
193 history) 193 history)
194 "Read a semantic tag, and return a tag for the selection. 194 "Read a semantic tag, and return a tag for the selection.
195 Argument COLLECTOR is an object which can be used to to calculate 195 Argument COLLECTOR is an object which can be used to calculate
196 a list of possible hits. See `semantic-completion-collector-engine' 196 a list of possible hits. See `semantic-completion-collector-engine'
197 for details on COLLECTOR. 197 for details on COLLECTOR.
198 Argument DISPLAYOR is an object used to display a list of possible 198 Argument DISPLAYOR is an object used to display a list of possible
199 completions for a given prefix. See`semantic-completion-display-engine' 199 completions for a given prefix. See`semantic-completion-display-engine'
200 for details on DISPLAYOR. 200 for details on DISPLAYOR.
392 )) 392 ))
393 393
394 394
395 ;;; Keybindings 395 ;;; Keybindings
396 ;; 396 ;;
397 ;; Keys are bound to to perform completion using our mechanisms. 397 ;; Keys are bound to perform completion using our mechanisms.
398 ;; Do that work here. 398 ;; Do that work here.
399 (defun semantic-complete-done () 399 (defun semantic-complete-done ()
400 "Accept the current input." 400 "Accept the current input."
401 (interactive) 401 (interactive)
402 (let ((ans (semantic-complete-current-match))) 402 (let ((ans (semantic-complete-current-match)))
736 (error (message "Bug Showing Completions: %S" e)))) 736 (error (message "Bug Showing Completions: %S" e))))
737 737
738 (defun semantic-complete-inline-tag-engine 738 (defun semantic-complete-inline-tag-engine
739 (collector displayor buffer start end) 739 (collector displayor buffer start end)
740 "Perform completion based on semantic tags in a buffer. 740 "Perform completion based on semantic tags in a buffer.
741 Argument COLLECTOR is an object which can be used to to calculate 741 Argument COLLECTOR is an object which can be used to calculate
742 a list of possible hits. See `semantic-completion-collector-engine' 742 a list of possible hits. See `semantic-completion-collector-engine'
743 for details on COLLECTOR. 743 for details on COLLECTOR.
744 Argument DISPLAYOR is an object used to display a list of possible 744 Argument DISPLAYOR is an object used to display a list of possible
745 completions for a given prefix. See`semantic-completion-display-engine' 745 completions for a given prefix. See`semantic-completion-display-engine'
746 for details on DISPLAYOR. 746 for details on DISPLAYOR.