Skip to content

Commit

Permalink
Fix issue #1035 and issue #1035.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Aug 25, 2017
1 parent 23a3eb2 commit 93b0063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rtags.el
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ to only call this when `rtags-socket-file' is defined.
(error (concat "RTags protocol version mismatch. This is usually caused by getting rtags.el from melpa\n"
"and installing a new rtags build that modified the protocol. They need to be in sync."))))
((= result rtags-exit-code-not-indexed)
(unless silent
(unless noerror
(message "%s not indexed" (or path "buffer")))
(erase-buffer)
(setq rtags-last-request-not-indexed t))
Expand Down Expand Up @@ -1409,7 +1409,7 @@ Uses `completing-read' to ask for the project."
(let* ((path (rtags-buffer-file-name))
(object (with-temp-buffer
(and location
(rtags-call-rc :path path :noerror t :silent-query silent :silent silent "-U" location "--elisp"
(rtags-call-rc :path path :noerror t :silent-query silent "-U" location "--elisp"
(unless relative-filenames "-K")
(when parents "--symbol-info-include-parents")
(when references "--symbol-info-include-references")
Expand Down

0 comments on commit 93b0063

Please sign in to comment.