You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bt command output is correct (ie multiple lines are used) when lldb is run within linux console.
edebug returns such a result from THE LINE below:
(defun realgud:send-input ()
"Sends command buffer line either to comint or eshell"
(interactive)
(let ((mode (realgud:canonic-major-mode)))
(ignore-errors
(cond ((eq mode 'eshell)
(eshell-send-input))
((eq mode 'comint)
(comint-send-input)) ;; THE LINE
))))
The text was updated successfully, but these errors were encountered:
I'm running:
ubuntu.20.04
+emacs.29.4
+realgud-lldb-20230201.948
+realgud-20231113-1910
+lldb18.1.8
after 'F' is pressed in source code buffer, whole the backtrace is put to single very long line:
The
bt
command output is correct (ie multiple lines are used) whenlldb
is run withinlinux
console.edebug returns such a result from
THE LINE
below:The text was updated successfully, but these errors were encountered: