]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/cedet/semantic/ia.el (semantic-ia-complete-symbol): Simplify
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 21 Mar 2021 00:39:01 +0000 (20:39 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 21 Mar 2021 00:39:01 +0000 (20:39 -0400)
Cut the `semantic-ia-get-completions-deprecated` middle man.

lisp/cedet/semantic/ia.el

index e75bc918e0b72b77f8f6508d9d7d28d6f7f71d1a..7186a7812350aa5c90c589279b3f94b350737e66 100644 (file)
           (insert "("))
          (t nil))))
 
-(defalias 'semantic-ia-get-completions #'semantic-ia-get-completions-deprecated)
-(make-obsolete 'semantic-ia-get-completions
-               #'semantic-analyze-possible-completions "28.1")
-
-(defun semantic-ia-get-completions-deprecated (context _point)
-  "A function to help transition away from `semantic-ia-get-completions'.
-Return completions based on CONTEXT at POINT."
+(defun semantic-ia-get-completions (context _point)
+  "Fetch the completion of CONTEXT at POINT."
   (declare (obsolete semantic-analyze-possible-completions "28.1"))
   (semantic-analyze-possible-completions context))