branch: externals/realgud commit 9af758d550fc845bf40f9e3d6c861ef03f74b186 Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Correct variable name in realgud:file-remove-ignore --- realgud/common/file.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realgud/common/file.el b/realgud/common/file.el index 9764414..c75c72d 100644 --- a/realgud/common/file.el +++ b/realgud/common/file.el @@ -199,10 +199,10 @@ are ignored in debugger location tracking. You might do this if you accidentllay added a a path for ignoring by mistake." (interactive (list (completing-read "File name to stop ignoring: " - (realgud-cmdbuf-ignore-re-path-list (current-buffer)) + (realgud-cmdbuf-ignore-re-file-list (current-buffer)) nil t))) (when (member path-to-stop-ignoring (realgud-cmdbuf-ignore-re-file-list (current-buffer))) - (realgud-cmdbuf-info-ignore-re-path-list= + (realgud-cmdbuf-info-ignore-re-file-list= (delete path-to-stop-ignoring (realgud-cmdbuf-ignore-re-file-list (current-buffer))))) )