diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-05-06 11:29:58 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-05-06 11:29:58 +0300 |
commit | 9b66a64d9c2c7ae2b155bf209ad735383070822e (patch) | |
tree | 5aec7a981f3cba1250ca6d61158885c021def930 /lisp/emacs-lisp | |
parent | f261226d9be4630572df322b2c4f48713c9c2fce (diff) | |
download | emacs-9b66a64d9c2c7ae2b155bf209ad735383070822e.tar.gz |
Fix interactive forms in some Lisp packages
* lisp/woman.el (woman-reset-emulation):
* lisp/treesit.el (treesit--explorer-jump):
* lisp/speedbar.el (speedbar-toggle-etags):
* lisp/filesets.el (filesets-convert-patterns):
* lisp/calculator.el (calculator-saved-move):
* lisp/progmodes/gud.el (gud-basic-call):
* lisp/progmodes/ebrowse.el (ebrowse-redraw-marks)
(ebrowse-view-file-other-frame):
* lisp/progmodes/dcl-mode.el (dcl-indent-to):
* lisp/net/socks.el (socks-open-connection):
* lisp/net/ntlm.el (ntlm-build-auth-request):
* lisp/emacs-lisp/backtrace.el (backtrace-expand-ellipsis):
* lisp/calc/calc-prog.el (calc-edit-macro-finish-edit):
* lisp/calc/calc-misc.el (calc-info-goto-node):
* lisp/net/dictionary.el (dictionary-new-search)
(dictionary-definition, dictionary-switch-tooltip-mode): Fix
interactive functions where the 'interactive' form did not supply
the mandatory arguments. (Bug#62864)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/backtrace.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/backtrace.el b/lisp/emacs-lisp/backtrace.el index 53e17693933..57912c854b0 100644 --- a/lisp/emacs-lisp/backtrace.el +++ b/lisp/emacs-lisp/backtrace.el @@ -499,7 +499,6 @@ Reprint the frame with the new view plist." (defun backtrace-expand-ellipsis (button) "Expand display of the elided form at BUTTON." - (interactive) (goto-char (button-start button)) (unless (get-text-property (point) 'cl-print-ellipsis) (if (and (> (point) (point-min)) |