From 1e78d0abd4bc1d9475265c3b87718266fe5e9c92 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 30 Jun 2019 19:17:52 +0200 Subject: [PATCH] Make "M-x pdb" use "[:graph:]" to match file names * lisp/progmodes/gud.el (gud-pdb-marker-regexp): Use "[:graph:]" to match file name in prompt. (Bug#34489) --- lisp/progmodes/gud.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 4306f5daa0..6b152b7b90 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -1605,8 +1605,12 @@ gud-pdb-history ;; Last group is for return value, e.g. "> test.py(2)foo()->None" ;; Either file or function name may be omitted: "> (0)?()" +;; +;; We use [:graph:] to be very allowing with regards to which +;; characters we match in the file name shown in the prompt. +;; (Of course, this matches the "" case too.) (defvar gud-pdb-marker-regexp - "^> \\([-a-zA-Z0-9_/.:@ \\]*\\|\\)(\\([0-9]+\\))\\([a-zA-Z0-9_]*\\|\\?\\|\\)()\\(->[^\n\r]*\\)?[\n\r]") + "^> \\([[:graph:] \\]*\\)(\\([0-9]+\\))\\([a-zA-Z0-9_]*\\|\\?\\|\\)()\\(->[^\n\r]*\\)?[\n\r]") (defvar gud-pdb-marker-regexp-file-group 1) (defvar gud-pdb-marker-regexp-line-group 2) -- 2.11.0