Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign uprtags-rdm-includes crash rdm start #1353
Comments
This comment has been minimized.
This comment has been minimized.
The
|
This comment has been minimized.
This comment has been minimized.
@SimeonEhrig Fixed via ca131c1. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
I want to set the include path for the std C++ lib at start of rdm. So I added the following line to my init file
(setq rtags-rdm-includes "/usr/include/c++/5.5.0")
. I use thec++-mode-hook
that starts the rdm server when I open a.cpp
file. Withoutrtags-rdm-includes
the rdm server is starts and I can use rtags commands. If I set the variable, I get the error messageFile mode specification error: (wrong-type-argument sequencep 47)
in my minibuffer and rdm is not started.To Reproduce
Steps to reproduce the behavior:
.cpp
fileExpected behavior
The rdm server should start when I open a
.cpp
file and the include path should be set.Environment (please complete the following information):
Additional context
At the moment, I'm using
(setq rtags-process-flags "-I/usr/include/c++/5.5.0)
as workaround.