From: Eli Zaretskii Date: Fri, 22 Dec 2017 09:32:38 +0000 (+0200) Subject: Fix interactive spec of 'semantic-ia-show-variants' X-Git-Tag: emacs-26.0.91~89 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=689526b714c3b4182110dc1ee59ff207b98d2fb6;p=emacs.git 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) --- 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'." ;;;###autoload (defun semantic-ia-show-variants (point) "Display a list of all variants for the symbol under POINT." - (interactive "P") + (interactive "d") (let* ((ctxt (semantic-analyze-current-context point)) (comp nil))