aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2017-12-22 11:32:38 +0200
committerEli Zaretskii2017-12-22 11:32:38 +0200
commit689526b714c3b4182110dc1ee59ff207b98d2fb6 (patch)
treeafa86f9b07f6a0568560a72a0d17702257c6258f
parent90ca37feed236a2eb9d61e412dc3805aa8ad8933 (diff)
downloademacs-689526b714c3b4182110dc1ee59ff207b98d2fb6.tar.gz
emacs-689526b714c3b4182110dc1ee59ff207b98d2fb6.zip
Fix interactive spec of 'semantic-ia-show-variants'
* lisp/cedet/semantic/ia.el (semantic-ia-show-variants): Fix the interactive spec to match the function's expectations. (Bug#29770)
-rw-r--r--lisp/cedet/semantic/ia.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/ia.el b/lisp/cedet/semantic/ia.el
index 625c3ae9757..7ca29bd24b9 100644
--- a/lisp/cedet/semantic/ia.el
+++ b/lisp/cedet/semantic/ia.el
@@ -252,7 +252,7 @@ Completion options are calculated with `semantic-analyze-possible-completions'."
252;;;###autoload 252;;;###autoload
253(defun semantic-ia-show-variants (point) 253(defun semantic-ia-show-variants (point)
254 "Display a list of all variants for the symbol under POINT." 254 "Display a list of all variants for the symbol under POINT."
255 (interactive "P") 255 (interactive "d")
256 (let* ((ctxt (semantic-analyze-current-context point)) 256 (let* ((ctxt (semantic-analyze-current-context point))
257 (comp nil)) 257 (comp nil))
258 258