]> code.delx.au - gnu-emacs/commitdiff
(gud-jdb-marker-filter): Double quote `[' in regexp for Lisp syntax.
authorLuc Teirlinck <teirllm@auburn.edu>
Mon, 6 Mar 2006 01:28:54 +0000 (01:28 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Mon, 6 Mar 2006 01:28:54 +0000 (01:28 +0000)
lisp/progmodes/gud.el

index 31c8fe0e8a2398641ceab29ce57430e6e8652280..667b0462a366e2425ea65865f7319cb5ead1c229 100644 (file)
@@ -399,7 +399,7 @@ t means that there is no stack, and we are in display-file mode.")
                                 gud-speedbar-key-map
                                 gud-expansion-speedbar-buttons))
 
-  (add-to-list 
+  (add-to-list
    'speedbar-mode-functions-list
    '("GUD" (speedbar-item-info . gud-speedbar-item-info)
      (speedbar-line-directory . ignore))))
@@ -684,7 +684,7 @@ To run GDB in text command mode, set `gud-gdb-command-name' to
           (buffer-name gud-comint-buffer)
           (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)))
       (error "Multiple debugging is only supported with \"gdb --fullname\""))
-                               
+
   (gud-common-init command-line nil 'gud-gdb-marker-filter)
   (set (make-local-variable 'gud-minor-mode) 'gdb)
 
@@ -2152,7 +2152,7 @@ nil)
          ;; print line numbers using LOCALE, inserting a comma or a
          ;; period at the thousands positions (how ingenious!).
 
-        "\\(\[[0-9]+\] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \
+        "\\(\\[[0-9]+] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \
 \\(([a-zA-Z0-9.$_]+:\\|line=\\)\\([0-9.,]+\\)"
         gud-marker-acc)