Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions xcscope.el
Original file line number Diff line number Diff line change
Expand Up @@ -3035,6 +3035,13 @@ file."
(cscope-call "Finding functions calling:" 3 symbol)
)

(defun cscope-find-functions-calling-this-function-no-prompting ()
"Find a symbol's global definition without prompting."
(interactive)
(let ( (symbol (cscope-extract-symbol-at-cursor nil nil)))
(setq cscope-previous-user-search `(cscope-find-functions-calling-this-function-no-prompting ,symbol))
(cscope-call "Finding functions calling:" 3 symbol)
))

(defun cscope-find-this-text-string (symbol)
"Locate where a text string occurs."
Expand Down