emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/idlwave 15993e1fdd 270/360: Allow breakpoints in files


From: ELPA Syncer
Subject: [elpa] externals/idlwave 15993e1fdd 270/360: Allow breakpoints in files with spaces
Date: Sun, 28 Apr 2024 00:59:32 -0400 (EDT)

branch: externals/idlwave
commit 15993e1fdd9617e3d21ff333164e22e06acb4f77
Author: JD Smith <jdtsmith@gmail.com>
Commit: JD Smith <jdtsmith@gmail.com>

    Allow breakpoints in files with spaces
---
 idlw-shell.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idlw-shell.el b/idlw-shell.el
index 66fa007f8a..97318347ff 100644
--- a/idlw-shell.el
+++ b/idlw-shell.el
@@ -3549,7 +3549,7 @@ the breakpoint overlays."
     (let ((old-bp-alist idlwave-shell-bp-alist)
          ;; Searching the breakpoints
          ;; In IDL 5.5, the breakpoint reporting format changed.
-         (bp-re54 "^[ \t]*\\([0-9]+\\)[ \t]+\\(\\S-+\\)?[ \t]+\\([0-9]+\\)[ 
\t]+\\(\\S-+\\)")
+         (bp-re54 "^[ \t]*\\([0-9]+\\)[ \t]+\\(\\S-+\\)?[ \t]+\\([0-9]+\\)[ 
\t]+\\([^\t\n\r]*\\S-\\)\\s-*$")
          (bp-re55
           (concat
            "^\\s-*\\([0-9]+\\)"    ; 1 index
@@ -3560,7 +3560,7 @@ the breakpoint overlays."
            "\\(\\s-*,\\s-*\\(BreakOnce\\)\\)?"            ; 9-10 BreakOnce
            "\\(\\s-*,\\s-*\\(Condition='\\(.*\\)'\\)\n?\\)?" ; 11-13 Condition
            "\\(\\s-*,\\s-*\\(Disabled\\)\n?\\)?"          ; 14-15 Disabled
-           "\\s-+\\(\\S-+\\)"))                           ; 16 File name
+           "\\s-+\\([^\t\n\r]*\\S-\\)\\s-*$"))            ; 16 File name
          file line index module
          count condition disabled
          bp-re indmap)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]